diff options
author | Andrey Kiselev <dron@ak4719.spb.edu> | 2006-08-03 17:51:32 +0000 |
---|---|---|
committer | Andrey Kiselev <dron@ak4719.spb.edu> | 2006-08-03 17:51:32 +0000 |
commit | 01e076865e05bd0090c3e9b1dbd201f668ac506f (patch) | |
tree | 77d0a7676456fdcf08b11cc1d5a7592bd0a80c1d /man | |
parent | d4640743e85517b19ed338fcb119240d5b0d9a2f (diff) | |
download | libtiff-git-01e076865e05bd0090c3e9b1dbd201f668ac506f.tar.gz |
Add explanation about trailing comma in image indicies.
Diffstat (limited to 'man')
-rw-r--r-- | man/tiffcp.1 | 21 |
1 files changed, 14 insertions, 7 deletions
diff --git a/man/tiffcp.1 b/man/tiffcp.1 index a3767db5..5ffe344a 100644 --- a/man/tiffcp.1 +++ b/man/tiffcp.1 @@ -1,4 +1,4 @@ -.\" $Id: tiffcp.1,v 1.7 2006-04-20 12:17:19 dron Exp $ +.\" $Id: tiffcp.1,v 1.8 2006-08-03 17:51:32 dron Exp $ .\" .\" Copyright (c) 1988-1997 Sam Leffler .\" Copyright (c) 1991-1997 Silicon Graphics, Inc. @@ -23,7 +23,7 @@ .\" OF THIS SOFTWARE. .\" .if n .po 0 -.TH TIFFCP 1 "September 20, 2005" "libtiff" +.TH TIFFCP 1 "August 03, 2006" "libtiff" .SH NAME tiffcp \- copy (and possibly convert) a .SM TIFF @@ -238,17 +238,24 @@ tiffcp \-c g4 \-r 10000 g3.tif g4.tif (1000 is just a number that is larger than the number of rows in the source file.) -To extract a selected set of images from a multi-image -TIFF file, the file name may be immediately followed by a `,' -separated list of image directory indices. The first image -is always in directory 0. Thus, to copy the 1st and 3rd -images of image file ``album.tif'' to ``result.tif'': +To extract a selected set of images from a multi-image TIFF file, the file +name may be immediately followed by a `,' separated list of image directory +indices. The first image is always in directory 0. Thus, to copy the 1st and +3rd images of image file ``album.tif'' to ``result.tif'': .RS .nf tiffcp album.tif,0,2 result.tif .fi .RE +A trailing comma denotes remaining images in sequence. The following command +will copy all image with except the first one: +.RS +.nf +tiffcp album.tif,1, result.tif +.fi +.RE + Given file ``CCD.tif'' whose first image is a noise bias followed by images which include that bias, subtract the noise from all those images following it |