diff options
author | Andrey Kiselev <dron@ak4719.spb.edu> | 2010-12-14 12:52:59 +0000 |
---|---|---|
committer | Andrey Kiselev <dron@ak4719.spb.edu> | 2010-12-14 12:52:59 +0000 |
commit | a2d72c2dd4e01572edbef92014b9324e48c0f782 (patch) | |
tree | caee4ac485f572059b92a5a1f9e9a1a1c0f4acde /man | |
parent | f7aebc264761adc41142e98e2285700dc51d384e (diff) | |
download | libtiff-git-a2d72c2dd4e01572edbef92014b9324e48c0f782.tar.gz |
Implement a new TIFF compression scheme LZMA reserving a new value 34925 for
Compression tag. As per bug http://bugzilla.maptools.org/show_bug.cgi?id=2221
Diffstat (limited to 'man')
-rw-r--r-- | man/tiffcp.1 | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/man/tiffcp.1 b/man/tiffcp.1 index e2f03d9f..b351f5fd 100644 --- a/man/tiffcp.1 +++ b/man/tiffcp.1 @@ -1,4 +1,4 @@ -.\" $Id: tiffcp.1,v 1.10 2010-06-03 17:01:02 fwarmerdam Exp $ +.\" $Id: tiffcp.1,v 1.11 2010-12-14 12:53:00 dron Exp $ .\" .\" Copyright (c) 1988-1997 Sam Leffler .\" Copyright (c) 1991-1997 Silicon Graphics, Inc. @@ -83,10 +83,12 @@ for no compression, for PackBits compression, .B lzw for Lempel-Ziv & Welch compression, -.B jpeg -for baseline JPEG compression, .B zip for Deflate compression, +.B lzma +for LZMA compression, +.B jpeg +for baseline JPEG compression, .B g3 for CCITT Group 3 (T.4) compression, and @@ -118,16 +120,16 @@ list to the ``g3'' option; e.g. .B "\-c g3:2d:fill" to get 2D-encoded data with byte-aligned EOL codes. .IP -.SM LZW +.SM LZW, Deflate +and +.SM LZMA compression can be specified together with a .I predictor value. -A predictor value of 2 causes -each scanline of the output image to undergo horizontal -differencing before it is encoded; a value -of 1 forces each scanline to be encoded without differencing. -LZW-specific options are specified by appending a ``:''-separated -list to the ``lzw'' option; e.g. +A predictor value of 2 causes each scanline of the output image to undergo +horizontal differencing before it is encoded; a value of 1 forces each +scanline to be encoded without differencing. LZW-specific options are +specified by appending a ``:''-separated list to the ``lzw'' option; e.g. .B "\-c lzw:2" for .SM LZW |