Blame SOURCES/libtiff-manpage-update.patch

bddd17
diff --git a/man/tiff2ps.1 b/man/tiff2ps.1
bddd17
index c3a9bac..a826ad7 100644
bddd17
--- a/man/tiff2ps.1
bddd17
+++ b/man/tiff2ps.1
bddd17
@@ -100,6 +100,9 @@ Generate \*(Ps Level 2.
bddd17
 Generate \*(Ps Level 3. It basically allows one to use the /flateDecode
bddd17
 filter for ZIP compressed TIFF images.
bddd17
 .TP
bddd17
+.B \-8
bddd17
+Disable use of ASCII85 encoding with PostScript Level 2/3
bddd17
+.TP
bddd17
 .B \-a
bddd17
 Generate output for all IFDs (pages) in the input file.
bddd17
 .TP
bddd17
@@ -123,6 +126,9 @@ directory to the specified directory number.
bddd17
 This option is useful for selecting individual pages in a
bddd17
 multi-page (e.g. facsimile) file.
bddd17
 .TP
bddd17
+.B \-D
bddd17
+Enable duplex printing (two pages per sheet of paper)
bddd17
+.TP
bddd17
 .B \-e
bddd17
 Force the generation of Encapsulated \*(Ps (implies
bddd17
 .BR \-z ).
bddd17
@@ -185,6 +191,10 @@ like which are hidden using the
bddd17
 .I SubIFD
bddd17
 tag.
bddd17
 .TP
bddd17
+.B \-O
bddd17
+Write PostScript to specified file instead of standard output
bddd17
+Set the initial
bddd17
+.TP
bddd17
 .B \-p
bddd17
 Force the generation of (non-Encapsulated) \*(Ps.
bddd17
 .TP
bddd17
@@ -188,6 +188,9 @@ Set the initial
bddd17
 .B \-p
bddd17
 Force the generation of (non-Encapsulated) \*(Ps.
bddd17
 .TP
bddd17
+.B \-P
bddd17
+Set optional PageOrientation DSC comment to Landscape or Portrait.
bddd17
+.TP
bddd17
 .B \-r 90|180|270|auto
bddd17
 Rotate image by 90, 180, 270 degrees or auto.  Auto picks the best
bddd17
 fit for the image on the specified paper size (eg portrait
bddd17
@@ -197,6 +207,12 @@ counterclockwise. Auto rotates 90 degrees ccw to produce landscape.
bddd17
 .B \-s
bddd17
 Generate output for a single IFD (page) in the input file.
bddd17
 .TP
bddd17
+.B \-t
bddd17
+Specify the document title string
bddd17
+.TP
bddd17
+.B \-T
bddd17
+Print pages for top edge binding
bddd17
+.TP
bddd17
 .B \-w
bddd17
 Specify the horizontal size of the printed area (in inches).
bddd17
 .TP
bddd17
diff --git a/man/tiffcp.1 b/man/tiffcp.1
bddd17
index 5fdcc47..bf50130 100644
bddd17
--- a/man/tiffcp.1
bddd17
+++ b/man/tiffcp.1
bddd17
@@ -60,6 +60,9 @@ in a file, but it is explicitly intended to not alter or convert
bddd17
 the image data content in any way.
bddd17
 .SH OPTIONS
bddd17
 .TP
bddd17
+.BI \-a
bddd17
+Append to an existing output file instead of overwriting it
bddd17
+.TP
bddd17
 .BI \-b " image"
bddd17
 subtract the following monochrome image from all others
bddd17
 processed.  This can be used to remove a noise bias
bddd17
@@ -179,6 +182,9 @@ overwritten and not when it is appended to.
bddd17
 .B \-M
bddd17
 Suppress the use of memory-mapped files when reading images.
bddd17
 .TP
bddd17
+.BI \-o " offset"
bddd17
+Set initial directory offset
bddd17
+.TP
bddd17
 .B \-p
bddd17
 Specify the planar configuration to use in writing image data
bddd17
 that has one 8-bit sample per pixel.
bddd17
@@ -228,6 +228,9 @@ appear in a tile.
bddd17
 .B \-x
bddd17
 Force the output file to be written with PAGENUMBER value in sequence.
bddd17
 .TP
bddd17
+.B \-8
bddd17
+Write BigTIFF instead of classic TIFF format.
bddd17
+.TP
bddd17
 .BI \-,= character
bddd17
 substitute
bddd17
 .I character
bddd17
diff --git a/tools/tiffcp.c b/tools/tiffcp.c
bddd17
index 0f81b19..8c696db 100644
bddd17
--- a/tools/tiffcp.c
bddd17
+++ b/tools/tiffcp.c
bddd17
@@ -409,6 +409,10 @@ char* stuff[] = {
bddd17
 " -s              write output in strips",
bddd17
 " -t              write output in tiles",
bddd17
 " -8              write BigTIFF instead of default ClassicTIFF",
bddd17
+" -B              write big-endian instead of native byte order",
bddd17
+" -L              write little-endian instead of native byte order",
bddd17
+" -M              disable use of memory-mapped files",
bddd17
+" -C              disable strip chopping",
bddd17
 " -i              ignore read errors",
bddd17
 " -b file[,#]     bias (dark) monochrome image to be subtracted from all others",
bddd17
 " -,=%            use % rather than , to separate image #'s (per Note below)",