summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfaxguy <faxguy>2015-06-14 20:54:32 +0000
committerfaxguy <faxguy>2015-06-14 20:54:32 +0000
commitfd750294bd910a54f3f6bb6798c1f9bcbb6ab8c0 (patch)
treef68f37a63e5bb5ac7453267455e650a74c262466
parent8ea44ee44a53152c359fe0f043000319c0813091 (diff)
downloadlibtiff-fd750294bd910a54f3f6bb6798c1f9bcbb6ab8c0.tar.gz
change ColorTransform from "0" to "1" following Bugzilla Bug #2150.
-rw-r--r--ChangeLog5
-rw-r--r--tools/tiff2pdf.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 2344e216..f1218268 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2015-06-14 Lee Howard <faxguy@howardsilvan.com>
+
+ * tools/tiff2pdf.c: change ColorTransform from "0" to "1"
+ following Bugzilla Bug #2150.
+
2015-06-13 Lee Howard <faxguy@howardsilvan.com>
* libtiff/tif_lzw.c: contribution from Andy Cave - decode
diff --git a/tools/tiff2pdf.c b/tools/tiff2pdf.c
index 42730276..d506a5cc 100644
--- a/tools/tiff2pdf.c
+++ b/tools/tiff2pdf.c
@@ -1,4 +1,4 @@
-/* $Id: tiff2pdf.c,v 1.87 2015-06-13 05:32:13 faxguy Exp $
+/* $Id: tiff2pdf.c,v 1.88 2015-06-14 20:54:32 faxguy Exp $
*
* tiff2pdf - converts a TIFF image to a PDF document
*
@@ -5220,7 +5220,7 @@ tsize_t t2p_write_pdf_xobject_stream_filter(ttile_t tile, T2P* t2p, TIFF* output
if(t2p->tiff_photometric != PHOTOMETRIC_YCBCR) {
written += t2pWriteFile(output, (tdata_t) "/DecodeParms ", 13);
- written += t2pWriteFile(output, (tdata_t) "<< /ColorTransform 0 >>\n", 24);
+ written += t2pWriteFile(output, (tdata_t) "<< /ColorTransform 1 >>\n", 24);
}
break;
#endif