From 05f6519dbaffb20ff08a6094031a25e0059570da Mon Sep 17 00:00:00 2001 From: Frank Warmerdam Date: Sat, 4 Dec 1999 20:48:27 +0000 Subject: [PATCH] Made PACKBITS the default compression instead of LZW. --- tools/tiff2rgba.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/tiff2rgba.c b/tools/tiff2rgba.c index 39413999..c03dfe0d 100644 --- a/tools/tiff2rgba.c +++ b/tools/tiff2rgba.c @@ -1,4 +1,4 @@ -/* $Header: /cvs/maptools/cvsroot/libtiff/tools/tiff2rgba.c,v 1.1 1999-08-16 17:46:08 warmerda Exp $ */ +/* $Header: /cvs/maptools/cvsroot/libtiff/tools/tiff2rgba.c,v 1.2 1999-12-04 20:48:27 warmerda Exp $ */ /* * Copyright (c) 1991-1997 Sam Leffler @@ -39,7 +39,7 @@ #endif #define roundup(x, y) (howmany(x,y)*((uint32)(y))) -uint16 compression = COMPRESSION_LZW; +uint16 compression = COMPRESSION_PACKBITS; uint32 rowsperstrip = (uint32) -1; int process_by_block = 0; /* default is whole image at once */