2003-11-26 10:04:51 -05:00
|
|
|
.\"
|
|
|
|
.\" Copyright (c) 2003 Ross Finlayson
|
|
|
|
.\"
|
|
|
|
.\" 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 name of
|
|
|
|
.\" Ross Finlayson may not be used in any advertising or
|
|
|
|
.\" publicity relating to the software without the specific, prior written
|
|
|
|
.\" permission of Ross Finlayson.
|
|
|
|
.\"
|
|
|
|
.\" 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 ROSS FINLAYSON 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.
|
|
|
|
.\"
|
|
|
|
.\" Process this file with
|
|
|
|
.\" groff -man -Tascii tiff2pdf.1
|
|
|
|
.\"
|
2006-04-20 08:17:19 -04:00
|
|
|
.TH TIFF2PDF 1 "April 20, 2006" "libtiff"
|
2003-11-26 10:04:51 -05:00
|
|
|
.SH NAME
|
2006-04-20 08:17:19 -04:00
|
|
|
tiff2pdf \- convert a TIFF image to a PDF document
|
2003-11-26 10:04:51 -05:00
|
|
|
.SH SYNOPSIS
|
2006-04-20 08:17:19 -04:00
|
|
|
.B tiff2pdf
|
|
|
|
[
|
2003-11-26 10:04:51 -05:00
|
|
|
.I options
|
2006-04-20 08:17:19 -04:00
|
|
|
]
|
2003-11-26 10:04:51 -05:00
|
|
|
.I input.tiff
|
|
|
|
.SH DESCRIPTION
|
2006-04-20 08:17:19 -04:00
|
|
|
.I tiff2pdf
|
2003-11-26 10:04:51 -05:00
|
|
|
opens a TIFF image and writes a PDF document to standard output.
|
|
|
|
.PP
|
|
|
|
The program converts one TIFF file to one PDF file, including multiple page
|
|
|
|
TIFF files, tiled TIFF files, black and white. grayscale, and color TIFF
|
|
|
|
files that contain data of TIFF photometric interpretations of bilevel,
|
|
|
|
grayscale, RGB, YCbCr, CMYK separation, and ICC L*a*b* as supported by
|
2003-11-27 10:07:29 -05:00
|
|
|
.I libtiff
|
2003-11-26 10:04:51 -05:00
|
|
|
and PDF.
|
|
|
|
.PP
|
|
|
|
If you have multiple TIFF files to convert into one PDF file then use
|
2003-11-27 10:07:29 -05:00
|
|
|
.I tiffcp
|
2003-11-26 10:04:51 -05:00
|
|
|
or other program to concatenate the files into a multiple page TIFF file.
|
|
|
|
If the input TIFF file is of huge dimensions (greater than 10000 pixels height
|
|
|
|
or width) convert the input image to a tiled TIFF if it is not already.
|
|
|
|
.PP
|
|
|
|
The standard output is standard output. Set the output file name with the
|
2006-04-20 08:17:19 -04:00
|
|
|
.BI \-o " output.pdf"
|
2003-11-27 10:07:29 -05:00
|
|
|
option.
|
2003-11-26 10:04:51 -05:00
|
|
|
.PP
|
2003-11-27 10:07:29 -05:00
|
|
|
All black and white files are compressed into a single strip CCITT G4 Fax
|
|
|
|
compressed PDF, unless tiled, where tiled black and white images are
|
2003-11-26 10:04:51 -05:00
|
|
|
compressed into tiled CCITT G4 Fax compressed PDF,
|
2003-11-27 10:07:29 -05:00
|
|
|
.I libtiff
|
2003-11-26 10:04:51 -05:00
|
|
|
CCITT support is assumed.
|
|
|
|
.PP
|
2003-11-27 10:07:29 -05:00
|
|
|
Color and grayscale data can be compressed using either JPEG compression,
|
|
|
|
ITU-T T.81, or Zip/Deflate LZ77 compression. Set the compression type using
|
|
|
|
the
|
|
|
|
.B \-j
|
|
|
|
or
|
|
|
|
.B \-z
|
|
|
|
options. JPEG compression support
|
2003-11-26 10:04:51 -05:00
|
|
|
requires that
|
2003-11-27 10:07:29 -05:00
|
|
|
.I libtiff
|
|
|
|
be configured with JPEG support, and Zip/Deflate compression support requires
|
|
|
|
that
|
|
|
|
.I libtiff
|
|
|
|
be configured with Zip support, in tiffconf.h. Use only one or the other of
|
|
|
|
.B \-j
|
|
|
|
and
|
|
|
|
.B \-z.
|
2003-11-26 10:04:51 -05:00
|
|
|
.PP
|
|
|
|
If the input TIFF contains single strip CCITT G4 Fax compressed information,
|
|
|
|
then that is written to the PDF file without transcoding, unless the options
|
2003-11-27 10:07:29 -05:00
|
|
|
of no compression and no passthrough are set,
|
|
|
|
.B \-d
|
|
|
|
and
|
|
|
|
.B \-n.
|
2003-11-26 10:04:51 -05:00
|
|
|
.PP
|
|
|
|
If the input TIFF contains JPEG or single strip Zip/Deflate compressed
|
|
|
|
information, and they are configured, then that is written to the PDF file
|
|
|
|
without transcoding, unless the options of no compression and no passthrough
|
|
|
|
are set.
|
|
|
|
.PP
|
|
|
|
The default page size upon which the TIFF image is placed is determined by
|
|
|
|
the resolution and extent of the image data. Default values for the TIFF
|
2003-11-27 10:07:29 -05:00
|
|
|
image resolution can be set using the
|
|
|
|
.B \-x
|
|
|
|
and
|
|
|
|
.B \-y
|
|
|
|
options. The page size can be set using the
|
|
|
|
.B \-p
|
|
|
|
option for paper size, or
|
|
|
|
.B \-w
|
|
|
|
and
|
|
|
|
.B \-l
|
|
|
|
for paper width and length, then each page of the TIFF image is centered on
|
|
|
|
its page. The distance unit for default resolution and page width and
|
|
|
|
length can be set by the
|
|
|
|
.B \-u
|
|
|
|
option, the default unit is inch.
|
2003-11-26 10:04:51 -05:00
|
|
|
.PP
|
2003-11-27 10:07:29 -05:00
|
|
|
Various items of the output document information can be set with the
|
2006-04-20 08:17:19 -04:00
|
|
|
.BR \-e ,
|
|
|
|
.BR \-c ,
|
|
|
|
.BR \-a ,
|
|
|
|
.BR \-t ,
|
|
|
|
.BR \-s ,
|
2003-11-27 10:07:29 -05:00
|
|
|
and
|
|
|
|
.B \-k
|
|
|
|
options. Setting the argument of the option to "" for these
|
2003-11-26 10:04:51 -05:00
|
|
|
tags causes the relevant document information field to be not written. Some
|
|
|
|
of the document information values otherwise get their information from the
|
|
|
|
input TIFF image, the software, author, document name, and image description.
|
|
|
|
.PP
|
|
|
|
The Portable Document Format (PDF) specification is copyrighted by Adobe
|
|
|
|
Systems, Incorporated.
|
|
|
|
.SH OPTIONS
|
2003-11-27 10:07:29 -05:00
|
|
|
.TP
|
2006-04-20 08:17:19 -04:00
|
|
|
.BI \-o " output-file"
|
|
|
|
Set the output to go to file.
|
2003-11-27 10:07:29 -05:00
|
|
|
.I output-file
|
|
|
|
.TP
|
|
|
|
.B \-j
|
2006-04-20 08:17:19 -04:00
|
|
|
Compress with JPEG (requires
|
|
|
|
.I libjpeg
|
|
|
|
configured with
|
|
|
|
.IR libtiff ).
|
2003-11-27 10:07:29 -05:00
|
|
|
.TP
|
|
|
|
.B \-z
|
2006-04-20 08:17:19 -04:00
|
|
|
Compress with Zip/Deflate (requires
|
|
|
|
.I zlib
|
|
|
|
configured with
|
|
|
|
.IR libtiff ).
|
2003-11-27 10:07:29 -05:00
|
|
|
.TP
|
2006-04-20 08:17:19 -04:00
|
|
|
.BI \-q " quality"
|
2003-11-26 10:04:51 -05:00
|
|
|
Set the compression quality, 1-100 for JPEG.
|
2003-11-27 10:07:29 -05:00
|
|
|
.TP
|
|
|
|
.B \-n
|
|
|
|
Do not allow data to be converted without uncompressing, no compressed
|
|
|
|
data passthrough.
|
|
|
|
.TP
|
2005-05-05 16:52:24 -04:00
|
|
|
.BI \-b
|
2006-04-20 08:17:19 -04:00
|
|
|
Set PDF ``Interpolate'' user preference.
|
2005-05-05 16:52:24 -04:00
|
|
|
.TP
|
2003-11-27 10:07:29 -05:00
|
|
|
.B \-d
|
2003-11-26 10:04:51 -05:00
|
|
|
Do not compress (decompress).
|
2003-11-27 10:07:29 -05:00
|
|
|
.TP
|
|
|
|
.B \-i
|
2003-11-26 10:04:51 -05:00
|
|
|
Invert colors.
|
2003-11-27 10:07:29 -05:00
|
|
|
.TP
|
2006-04-20 08:17:19 -04:00
|
|
|
.BI \-p " paper-size"
|
|
|
|
Set paper size, e.g.,
|
|
|
|
.BR letter ,
|
|
|
|
.BR legal ,
|
|
|
|
.BR A4 .
|
2003-11-27 10:07:29 -05:00
|
|
|
.TP
|
2010-12-11 17:47:49 -05:00
|
|
|
.B \-F
|
|
|
|
Cause the tiff to fill the PDF page.
|
|
|
|
.TP
|
2006-04-20 08:17:19 -04:00
|
|
|
.BR \-u " [" i | m ]
|
2003-11-27 10:07:29 -05:00
|
|
|
Set distance unit,
|
2006-04-20 08:17:19 -04:00
|
|
|
.B i
|
2003-11-27 10:07:29 -05:00
|
|
|
for inch,
|
2006-04-20 08:17:19 -04:00
|
|
|
.B m
|
2003-11-27 10:07:29 -05:00
|
|
|
for centimeter.
|
|
|
|
.TP
|
2006-04-20 08:17:19 -04:00
|
|
|
.BI \-w " width"
|
2003-11-26 10:04:51 -05:00
|
|
|
Set width in units.
|
2003-11-27 10:07:29 -05:00
|
|
|
.TP
|
2006-04-20 08:17:19 -04:00
|
|
|
.BI \-l " length"
|
2003-11-26 10:04:51 -05:00
|
|
|
Set length in units.
|
2003-11-27 10:07:29 -05:00
|
|
|
.TP
|
2006-04-20 08:17:19 -04:00
|
|
|
.BI \-x " xres"
|
2003-11-26 10:04:51 -05:00
|
|
|
Set x/width resolution default.
|
2003-11-27 10:07:29 -05:00
|
|
|
.TP
|
2006-04-20 08:17:19 -04:00
|
|
|
.BI \-y " yres"
|
2003-11-26 10:04:51 -05:00
|
|
|
Set y/length resolution default.
|
2003-11-27 10:07:29 -05:00
|
|
|
.TP
|
2006-04-20 08:17:19 -04:00
|
|
|
.BR \-r " [" d | o ]
|
2003-11-27 10:07:29 -05:00
|
|
|
Set
|
2006-04-20 08:17:19 -04:00
|
|
|
.B d
|
2003-11-27 10:07:29 -05:00
|
|
|
for resolution default for images without resolution,
|
2006-04-20 08:17:19 -04:00
|
|
|
.B o
|
|
|
|
for resolution override for all images.
|
2003-11-27 10:07:29 -05:00
|
|
|
.TP
|
2005-05-05 16:52:24 -04:00
|
|
|
.BI \-f
|
2006-04-20 08:17:19 -04:00
|
|
|
Set PDF ``Fit Window'' user preference.
|
2003-11-27 10:07:29 -05:00
|
|
|
.TP
|
2006-04-20 08:17:19 -04:00
|
|
|
.BI \-e " YYYYMMDDHHMMSS"
|
2003-11-27 10:07:29 -05:00
|
|
|
Set document information date, overrides image or current date/time default,
|
|
|
|
.I YYYYMMDDHHMMSS.
|
|
|
|
.TP
|
2006-04-20 08:17:19 -04:00
|
|
|
.BI \-c " creator"
|
2003-11-26 10:04:51 -05:00
|
|
|
Set document information creator, overrides image software default.
|
2003-11-27 10:07:29 -05:00
|
|
|
.TP
|
2006-04-20 08:17:19 -04:00
|
|
|
.BI \-a " author"
|
|
|
|
Set document information author, overrides image artist default.
|
2003-11-27 10:07:29 -05:00
|
|
|
.TP
|
2006-04-20 08:17:19 -04:00
|
|
|
.BI \-t " title"
|
|
|
|
Set document information title, overrides image document name default.
|
2003-11-27 10:07:29 -05:00
|
|
|
.TP
|
2006-04-20 08:17:19 -04:00
|
|
|
.BI \-s " subject"
|
|
|
|
Set document information subject, overrides image image description default.
|
2003-11-27 10:07:29 -05:00
|
|
|
.TP
|
2006-04-20 08:17:19 -04:00
|
|
|
.BI \-k " keywords"
|
2003-11-26 10:04:51 -05:00
|
|
|
Set document information keywords.
|
2003-11-27 10:07:29 -05:00
|
|
|
.TP
|
|
|
|
.B \-h
|
2003-11-26 10:04:51 -05:00
|
|
|
List usage reminder to stderr and exit.
|
|
|
|
.SH EXAMPLES
|
2003-11-27 10:07:29 -05:00
|
|
|
.TP
|
2003-11-26 10:04:51 -05:00
|
|
|
The following example would generate the file output.pdf from input.tiff.
|
|
|
|
.RS
|
2006-04-20 08:17:19 -04:00
|
|
|
.nf
|
|
|
|
tiff2pdf \-o output.pdf input.tiff
|
|
|
|
.fi
|
2003-11-26 10:04:51 -05:00
|
|
|
.RE
|
|
|
|
.PP
|
|
|
|
The following example would generate PDF output from input.tiff and write it
|
|
|
|
to standard output.
|
|
|
|
.RS
|
2006-04-20 08:17:19 -04:00
|
|
|
.nf
|
2003-11-26 10:04:51 -05:00
|
|
|
tiff2pdf input.tiff
|
2006-04-20 08:17:19 -04:00
|
|
|
.fi
|
2003-11-26 10:04:51 -05:00
|
|
|
.RE
|
|
|
|
.PP
|
|
|
|
The following example would generate the file output.pdf from input.tiff,
|
|
|
|
putting the image pages on a letter sized page, compressing the output
|
2006-04-20 08:17:19 -04:00
|
|
|
with JPEG, with JPEG quality 75, setting the title to ``Document'', and setting
|
|
|
|
the ``Fit Window'' option.
|
2003-11-26 10:04:51 -05:00
|
|
|
.RS
|
2006-04-20 08:17:19 -04:00
|
|
|
.nf
|
|
|
|
tiff2pdf \-p letter \-j \-q 75 \-t "Document" \-f \-o output.pdf input.tiff
|
|
|
|
.fi
|
2003-11-26 10:04:51 -05:00
|
|
|
.RE
|
|
|
|
.SH BUGS
|
|
|
|
Please report bugs via the web interface at
|
2003-11-27 10:07:29 -05:00
|
|
|
.IP
|
|
|
|
\%http://bugzilla.remotesensing.org/enter_bug.cgi?product=libtiff
|
2003-11-26 10:04:51 -05:00
|
|
|
.SH "SEE ALSO"
|
2006-04-20 08:17:19 -04:00
|
|
|
.BR libtiff (3),
|
|
|
|
.BR tiffcp (1),
|
2003-11-26 10:04:51 -05:00
|
|
|
.BR tiff2ps (1)
|
2005-11-02 06:07:18 -05:00
|
|
|
.PP
|
|
|
|
Libtiff library home page:
|
2016-09-25 16:05:44 -04:00
|
|
|
.BR http://www.simplesystems.org/libtiff/
|