1999-07-27 17:50:26 -04:00
|
|
|
.\"
|
|
|
|
.\" Copyright (c) 1988-1997 Sam Leffler
|
|
|
|
.\" Copyright (c) 1991-1997 Silicon Graphics, Inc.
|
|
|
|
.\"
|
|
|
|
.\" Permission to use, copy, modify, distribute, and sell this software and
|
|
|
|
.\" its documentation for any purpose is hereby granted without fee, provided
|
|
|
|
.\" that (i) the above copyright notices and this permission notice appear in
|
|
|
|
.\" all copies of the software and related documentation, and (ii) the names of
|
|
|
|
.\" Sam Leffler and Silicon Graphics may not be used in any advertising or
|
|
|
|
.\" publicity relating to the software without the specific, prior written
|
|
|
|
.\" permission of Sam Leffler and Silicon Graphics.
|
|
|
|
.\"
|
|
|
|
.\" THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
.\" EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
|
|
|
|
.\" WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
.\"
|
|
|
|
.\" IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
|
|
|
|
.\" ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
|
|
|
|
.\" OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
|
|
|
|
.\" WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
|
|
|
|
.\" LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
|
|
|
.\" OF THIS SOFTWARE.
|
|
|
|
.\"
|
|
|
|
.if n .po 0
|
2007-02-24 06:19:33 -05:00
|
|
|
.TH TIFFCP 1 "February 24, 2007" "libtiff"
|
1999-07-27 17:50:26 -04:00
|
|
|
.SH NAME
|
|
|
|
tiffcp \- copy (and possibly convert) a
|
|
|
|
.SM TIFF
|
|
|
|
file
|
|
|
|
.SH SYNOPSIS
|
|
|
|
.B tiffcp
|
|
|
|
[
|
|
|
|
.I options
|
|
|
|
]
|
|
|
|
.I "src1.tif ... srcN.tif dst.tif"
|
|
|
|
.SH DESCRIPTION
|
|
|
|
.I tiffcp
|
|
|
|
combines one or more files created according
|
|
|
|
to the Tag Image File Format, Revision 6.0
|
|
|
|
into a single
|
|
|
|
.SM TIFF
|
|
|
|
file.
|
|
|
|
Because the output file may be compressed using a different
|
|
|
|
algorithm than the input files,
|
|
|
|
.I tiffcp
|
|
|
|
is most often used to convert between different compression
|
|
|
|
schemes.
|
|
|
|
.PP
|
|
|
|
By default,
|
|
|
|
.I tiffcp
|
|
|
|
will copy all the understood tags in a
|
|
|
|
.SM TIFF
|
|
|
|
directory of an input
|
|
|
|
file to the associated directory in the output file.
|
|
|
|
.PP
|
|
|
|
.I tiffcp
|
|
|
|
can be used to reorganize the storage characteristics of data
|
|
|
|
in a file, but it is explicitly intended to not alter or convert
|
|
|
|
the image data content in any way.
|
|
|
|
.SH OPTIONS
|
|
|
|
.TP
|
2013-03-05 22:35:09 -05:00
|
|
|
.B \-a
|
|
|
|
Append to an existing output file instead of overwriting it.
|
|
|
|
.TP
|
2006-04-20 08:17:19 -04:00
|
|
|
.BI \-b " image"
|
2001-02-19 10:20:54 -05:00
|
|
|
subtract the following monochrome image from all others
|
|
|
|
processed. This can be used to remove a noise bias
|
2005-09-20 06:25:56 -04:00
|
|
|
from a set of images. This bias image is typically an
|
2001-02-19 10:20:54 -05:00
|
|
|
image of noise the camera saw with its shutter closed.
|
|
|
|
.TP
|
1999-07-27 17:50:26 -04:00
|
|
|
.B \-B
|
|
|
|
Force output to be written with Big-Endian byte order.
|
|
|
|
This option only has an effect when the output file is created or
|
|
|
|
overwritten and not when it is appended to.
|
|
|
|
.TP
|
|
|
|
.B \-C
|
|
|
|
Suppress the use of ``strip chopping'' when reading images
|
|
|
|
that have a single strip/tile of uncompressed data.
|
|
|
|
.TP
|
|
|
|
.B \-c
|
|
|
|
Specify the compression to use for data written to the output file:
|
|
|
|
.B none
|
|
|
|
for no compression,
|
|
|
|
.B packbits
|
|
|
|
for PackBits compression,
|
|
|
|
.B lzw
|
|
|
|
for Lempel-Ziv & Welch compression,
|
|
|
|
.B zip
|
|
|
|
for Deflate compression,
|
2010-12-14 07:52:59 -05:00
|
|
|
.B lzma
|
2010-12-23 08:38:47 -05:00
|
|
|
for LZMA2 compression,
|
2010-12-14 07:52:59 -05:00
|
|
|
.B jpeg
|
|
|
|
for baseline JPEG compression,
|
1999-07-27 17:50:26 -04:00
|
|
|
.B g3
|
|
|
|
for CCITT Group 3 (T.4) compression,
|
|
|
|
.B g4
|
2013-03-05 22:35:09 -05:00
|
|
|
for CCITT Group 4 (T.6) compression,
|
|
|
|
or
|
|
|
|
.B sgilog
|
|
|
|
for SGILOG compression.
|
1999-07-27 17:50:26 -04:00
|
|
|
By default
|
|
|
|
.I tiffcp
|
|
|
|
will compress data according to the value of the
|
|
|
|
.I Compression
|
|
|
|
tag found in the source file.
|
|
|
|
.IP
|
|
|
|
The
|
|
|
|
.SM CCITT
|
|
|
|
Group 3 and Group 4 compression algorithms can only
|
|
|
|
be used with bilevel data.
|
|
|
|
.IP
|
|
|
|
Group 3 compression can be specified together with several
|
|
|
|
T.4-specific options:
|
|
|
|
.B 1d
|
|
|
|
for 1-dimensional encoding,
|
|
|
|
.B 2d
|
|
|
|
for 2-dimensional encoding,
|
|
|
|
and
|
|
|
|
.B fill
|
|
|
|
to force each encoded scanline to be zero-filled so that the
|
|
|
|
terminating EOL code lies on a byte boundary.
|
|
|
|
Group 3-specific options are specified by appending a ``:''-separated
|
|
|
|
list to the ``g3'' option; e.g.
|
|
|
|
.B "\-c g3:2d:fill"
|
|
|
|
to get 2D-encoded data with byte-aligned EOL codes.
|
|
|
|
.IP
|
2010-12-14 07:52:59 -05:00
|
|
|
.SM LZW, Deflate
|
|
|
|
and
|
2010-12-23 08:38:47 -05:00
|
|
|
.SM LZMA2
|
1999-07-27 17:50:26 -04:00
|
|
|
compression can be specified together with a
|
|
|
|
.I predictor
|
2010-12-23 08:38:47 -05:00
|
|
|
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. A value 3 is for floating point
|
|
|
|
predictor which you can use if the encoded data are in floating point format.
|
|
|
|
LZW-specific options are specified by appending a ``:''-separated list to the
|
|
|
|
``lzw'' option; e.g.
|
1999-07-27 17:50:26 -04:00
|
|
|
.B "\-c lzw:2"
|
|
|
|
for
|
|
|
|
.SM LZW
|
|
|
|
compression with horizontal differencing.
|
2010-12-23 08:38:47 -05:00
|
|
|
.IP
|
|
|
|
.SM Deflate
|
|
|
|
and
|
|
|
|
.SM LZMA2
|
|
|
|
encoders support various compression levels (or encoder presets) set as
|
|
|
|
character ``p'' and a preset number. ``p1'' is the fastest one with the worst
|
|
|
|
compression ratio and ``p9'' is the slowest but with the best possible ratio;
|
|
|
|
e.g.
|
|
|
|
.B "\-c zip:3:p9"
|
|
|
|
for
|
|
|
|
.SM Deflate
|
|
|
|
encoding with maximum compression level and floating point predictor.
|
2020-10-03 12:56:46 -04:00
|
|
|
.IP
|
|
|
|
For the
|
|
|
|
.SM Deflate
|
|
|
|
codec, and in a libtiff build with libdeflate enabled, ``p12`` is
|
|
|
|
actually the maximum level.
|
|
|
|
.IP
|
|
|
|
For the
|
|
|
|
.SM Deflate
|
|
|
|
codec, and in a libtiff build with libdeflate enabled, ``s0`` can be used to
|
|
|
|
require zlib to be used, and ``s1`` for libdeflate (defaults to libdeflate when
|
|
|
|
it is available).
|
1999-07-27 17:50:26 -04:00
|
|
|
.TP
|
|
|
|
.B \-f
|
|
|
|
Specify the bit fill order to use in writing output data.
|
|
|
|
By default,
|
|
|
|
.I tiffcp
|
|
|
|
will create a new file with the same fill order as the original.
|
|
|
|
Specifying
|
|
|
|
.B "\-f lsb2msb"
|
|
|
|
will force data to be written with the FillOrder tag set to
|
|
|
|
.SM LSB2MSB,
|
|
|
|
while
|
|
|
|
.B "\-f msb2lsb"
|
|
|
|
will force data to be written with the FillOrder tag set to
|
|
|
|
.SM MSB2LSB.
|
|
|
|
.TP
|
2007-02-24 06:19:33 -05:00
|
|
|
.B \-i
|
|
|
|
Ignore non-fatal read errors and continue processing of the input file.
|
|
|
|
.TP
|
1999-07-27 17:50:26 -04:00
|
|
|
.B \-l
|
|
|
|
Specify the length of a tile (in pixels).
|
|
|
|
.I tiffcp
|
|
|
|
attempts to set the tile dimensions so
|
|
|
|
that no more than 8 kilobytes of data appear in a tile.
|
|
|
|
.TP
|
|
|
|
.B \-L
|
|
|
|
Force output to be written with Little-Endian byte order.
|
|
|
|
This option only has an effect when the output file is created or
|
|
|
|
overwritten and not when it is appended to.
|
|
|
|
.TP
|
|
|
|
.B \-M
|
|
|
|
Suppress the use of memory-mapped files when reading images.
|
|
|
|
.TP
|
2013-03-05 22:35:09 -05:00
|
|
|
.BI \-o " offset"
|
|
|
|
Set initial directory offset.
|
|
|
|
.TP
|
1999-07-27 17:50:26 -04:00
|
|
|
.B \-p
|
|
|
|
Specify the planar configuration to use in writing image data
|
|
|
|
that has one 8-bit sample per pixel.
|
|
|
|
By default,
|
|
|
|
.I tiffcp
|
|
|
|
will create a new file with the same planar configuration as
|
|
|
|
the original.
|
|
|
|
Specifying
|
|
|
|
.B "\-p contig"
|
|
|
|
will force data to be written with multi-sample data packed
|
|
|
|
together, while
|
|
|
|
.B "\-p separate"
|
|
|
|
will force samples to be written in separate planes.
|
|
|
|
.TP
|
|
|
|
.B \-r
|
|
|
|
Specify the number of rows (scanlines) in each strip of data
|
|
|
|
written to the output file.
|
2003-06-10 02:15:36 -04:00
|
|
|
By default (or when value
|
|
|
|
.B 0
|
|
|
|
is specified),
|
1999-07-27 17:50:26 -04:00
|
|
|
.I tiffcp
|
|
|
|
attempts to set the rows/strip
|
2003-06-10 02:15:36 -04:00
|
|
|
that no more than 8 kilobytes of data appear in a strip. If you specify
|
|
|
|
special value
|
2006-04-20 08:17:19 -04:00
|
|
|
.B \-1
|
2003-06-10 02:15:36 -04:00
|
|
|
it will results in infinite number of the rows per strip. The entire image
|
|
|
|
will be the one strip in that case.
|
1999-07-27 17:50:26 -04:00
|
|
|
.TP
|
|
|
|
.B \-s
|
|
|
|
Force the output file to be written with data organized in strips
|
|
|
|
(rather than tiles).
|
|
|
|
.TP
|
|
|
|
.B \-t
|
2007-02-24 06:19:33 -05:00
|
|
|
Force the output file to be written with data organized in tiles (rather than
|
|
|
|
strips). options can be used to force the resultant image to be written as
|
|
|
|
strips or tiles of data, respectively.
|
1999-07-27 17:50:26 -04:00
|
|
|
.TP
|
|
|
|
.B \-w
|
|
|
|
Specify the width of a tile (in pixels).
|
|
|
|
.I tiffcp
|
2007-02-24 06:19:33 -05:00
|
|
|
attempts to set the tile dimensions so that no more than 8 kilobytes of data
|
|
|
|
appear in a tile.
|
2001-02-19 10:18:19 -05:00
|
|
|
.I tiffcp
|
2007-02-24 06:19:33 -05:00
|
|
|
attempts to set the tile dimensions so that no more than 8 kilobytes of data
|
|
|
|
appear in a tile.
|
2001-02-19 10:18:19 -05:00
|
|
|
.TP
|
2010-06-03 13:01:01 -04:00
|
|
|
.B \-x
|
|
|
|
Force the output file to be written with PAGENUMBER value in sequence.
|
|
|
|
.TP
|
2013-03-05 22:35:09 -05:00
|
|
|
.B \-8
|
|
|
|
Write BigTIFF instead of classic TIFF format.
|
|
|
|
.TP
|
2006-04-20 08:17:19 -04:00
|
|
|
.BI \-,= character
|
|
|
|
substitute
|
|
|
|
.I character
|
|
|
|
for `,' in parsing image directory indices
|
2001-02-19 10:18:19 -05:00
|
|
|
in files. This is necessary if filenames contain commas.
|
2006-04-20 08:17:19 -04:00
|
|
|
Note that
|
|
|
|
.B \-,=
|
|
|
|
with whitespace immediately following will disable
|
|
|
|
the special meaning of the `,' entirely. See examples.
|
2020-03-21 10:00:43 -04:00
|
|
|
.TP
|
|
|
|
.BI \-m " size"
|
|
|
|
Set maximum memory allocation size (in MiB). The default is 256MiB.
|
|
|
|
Set to 0 to disable the limit.
|
1999-07-27 17:50:26 -04:00
|
|
|
.SH EXAMPLES
|
|
|
|
The following concatenates two files and writes the result using
|
|
|
|
.SM LZW
|
|
|
|
encoding:
|
|
|
|
.RS
|
|
|
|
.nf
|
2006-04-20 08:17:19 -04:00
|
|
|
tiffcp \-c lzw a.tif b.tif result.tif
|
1999-07-27 17:50:26 -04:00
|
|
|
.fi
|
|
|
|
.RE
|
|
|
|
.PP
|
|
|
|
To convert a G3 1d-encoded
|
|
|
|
.SM TIFF
|
|
|
|
to a single strip of G4-encoded data the following might be used:
|
|
|
|
.RS
|
|
|
|
.nf
|
2006-04-20 08:17:19 -04:00
|
|
|
tiffcp \-c g4 \-r 10000 g3.tif g4.tif
|
1999-07-27 17:50:26 -04:00
|
|
|
.fi
|
|
|
|
.RE
|
|
|
|
(1000 is just a number that is larger than the number of rows in
|
|
|
|
the source file.)
|
2001-02-19 10:18:19 -05:00
|
|
|
|
2006-08-03 13:51:32 -04:00
|
|
|
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'':
|
2001-02-19 10:18:19 -05:00
|
|
|
.RS
|
|
|
|
.nf
|
|
|
|
tiffcp album.tif,0,2 result.tif
|
|
|
|
.fi
|
|
|
|
.RE
|
|
|
|
|
2006-08-03 13:51:32 -04:00
|
|
|
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
|
|
|
|
|
2006-04-20 08:17:19 -04:00
|
|
|
Given file ``CCD.tif'' whose first image is a noise bias
|
2001-02-19 10:18:19 -05:00
|
|
|
followed by images which include that bias,
|
|
|
|
subtract the noise from all those images following it
|
|
|
|
(while decompressing) with the command:
|
|
|
|
.RS
|
|
|
|
.nf
|
2006-04-20 08:17:19 -04:00
|
|
|
tiffcp \-c none \-b CCD.tif CCD.tif,1, result.tif
|
2001-02-19 10:18:19 -05:00
|
|
|
.fi
|
|
|
|
.RE
|
|
|
|
|
2006-04-20 08:17:19 -04:00
|
|
|
If the file above were named ``CCD,X.tif'', the
|
|
|
|
.B \-,=
|
|
|
|
option would
|
2001-02-19 10:18:19 -05:00
|
|
|
be required to correctly parse this filename with image numbers,
|
|
|
|
as follows:
|
|
|
|
.RS
|
|
|
|
.nf
|
2006-04-20 08:17:19 -04:00
|
|
|
tiffcp \-c none \-,=% \-b CCD,X.tif CCD,X%1%.tif result.tif
|
1999-07-27 17:50:26 -04:00
|
|
|
.SH "SEE ALSO"
|
2005-11-02 06:07:18 -05:00
|
|
|
.BR pal2rgb (1),
|
|
|
|
.BR tiffinfo (1),
|
|
|
|
.BR tiffcmp (1),
|
|
|
|
.BR tiffmedian (1),
|
|
|
|
.BR tiffsplit (1),
|
|
|
|
.BR libtiff (3TIFF)
|
|
|
|
.PP
|
|
|
|
Libtiff library home page:
|
2016-09-25 16:05:44 -04:00
|
|
|
.BR http://www.simplesystems.org/libtiff/
|