v3.5.6-beta.html 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  2. <HTML>
  3. <HEAD>
  4. <TITLE>
  5. Changes in TIFF v3.5.6
  6. </TITLE>
  7. </HEAD>
  8. <BODY BGCOLOR=white>
  9. <FONT FACE="Helvetica, Arial, Sans">
  10. <FONT FACE="Helvetica, Arial, Sans">
  11. <BASEFONT SIZE=4>
  12. <B><FONT SIZE=+3>T</FONT>IFF <FONT SIZE=+2>C</FONT>HANGE <FONT SIZE=+2>I</FONT>NFORMATION</B>
  13. <BASEFONT SIZE=3>
  14. <UL>
  15. <HR SIZE=4 WIDTH=65% ALIGN=left>
  16. <B>Current Version</B>: v3.5.6beta<BR>
  17. <B>Previous Version</B>: <A HREF=v3.5.5.html>v3.5.5</a><BR>
  18. <B>Master Download Site</B>: <A HREF="ftp://ftp.onshore.com/pub/libtiff">ftp.onshore.com</a>, directory pub/libtiff</A><BR>
  19. <B>Master HTTP Site</B>: <A HREF="http://www.simplesystems.org/libtiff//">http://www.simplesystems.org/libtiff/</a>
  20. <HR SIZE=4 WIDTH=65% ALIGN=left>
  21. </UL>
  22. <P>
  23. This document describes the changes made to the software between the
  24. <I>previous</I> and <I>current</I> versions (see above).
  25. If you don't find something listed here, then it was not done in this
  26. timeframe, or it was not considered important enough to be mentioned.
  27. The following information is located here:
  28. <UL>
  29. <LI><A HREF="#configure">Changes in the software configuration</A>
  30. <LI><A HREF="#libtiff">Changes in libtiff</A>
  31. <LI><A HREF="#tools">Changes in the tools</A>
  32. <LI><A HREF="#contrib">Changes in contrib</A>
  33. <LI><A HREF="#lzwkit">Changes in the LZW compression kit</A>
  34. </UL>
  35. <p>
  36. <P><HR WIDTH=65% ALIGN=left>
  37. <A NAME="configure"><B><FONT SIZE=+3>C</FONT>HANGES IN THE SOFTWARE CONFIGURATION:</B></A>
  38. <UL>
  39. <LI> Added GNULDdso target and switched linux and freebsd to use it.
  40. <LI> tools/Makefile.in: Modified to install properly on SGI.
  41. <LI> configure: Fixed DSO test for Linux as per patch from
  42. Jan Van Buggenhout <chipzz@Ace.ULYSSIS.Student.KULeuven.Ac.Be>.
  43. </UL>
  44. <P><HR WIDTH=65% ALIGN=left>
  45. <A NAME="libtiff"><B><FONT SIZE=+3>C</FONT>HANGES IN LIBTIFF:</B></A>
  46. <UL>
  47. <LI> tif_dir.c: Clear TIFF_ISTILED flag in TIFFDefaultDirectory
  48. as per http://bugzilla.remotesensing.org/show_bug.cgi?id=18
  49. from vandrove@vc.cvut.cz.
  50. <LI> Modified tif_packbits.c decoding to avoid overrunning the
  51. output buffer, and to issue a warning if data needs to be
  52. discarded. See http://bugzilla.remotesensing.org/show_bug.cgi?id=18
  53. <LI> Modified TIFFClientOpen() to emit an error on an attempt to
  54. open a comperessed file for update (O_RDWR/r+) access. This is
  55. because the compressor/decompressor code gets very confused when
  56. the mode is O_RDWR, assuming this means writing only. See
  57. bug http://bugzilla.remotesensing.org/show_bug.cgi?id=13
  58. <LI> Applied patch for 0x0000 sequences in tif_fax3.h's definition
  59. of EXPAND1D() as per bug 11 (from Roman).
  60. <LI> Fixed tiffcomp.h to avoid win32 stuff if unix #defined, to improve
  61. cygwin compatibility.
  62. <LI> Applied patch from Roman Shpount to tif_fax3.c. This seems to
  63. be a proper fix to the buffer sizing problem. See
  64. http://bugzilla.remotesensing.org/show_bug.cgi?id=11
  65. <LI> Fixed tif_getimage.c to fix overrun bug with YCbCr images without
  66. downsampling. http://bugzilla.remotesensing.org/show_bug.cgi?id=10
  67. Thanks to Nick Lamb <njl98r@ecs.soton.ac.uk> for reporting the
  68. bug and proving the patch.
  69. <LI> Fixed tif_jpeg.c so avoid destroying the decompressor before
  70. we are done access data thanks to bug report from:
  71. Michael Eckstein <eckstein@gepro.cz>.
  72. <LI> tif_open.c: Don't set MMAP for O_RDWR files.
  73. <LI> tif_open.c: Set STRIPCHOP_DEFAULT for O_RDWR as well as O_RDONLY
  74. so that files opened for update can be strip chopped too.
  75. <LI> tif_read.c: fixed up bug with files missing rowsperstrip and
  76. the strips per separation fix done a few weeks ago.
  77. <LI> Tentatively added support for SAMPLEFORMAT_COMPLEXIEEEFP, and
  78. SAMPLEFORMAT_COMPLEXINT.
  79. <LI> index.html, bugs.html: added bugzilla info.
  80. <LI> tif_read.c: fix subtle bug with determining the number of
  81. rows for strips that are the last strip in a separation but
  82. not the last strip of all in TIFFReadEncodedStrip().
  83. <LI> Applied 16/32 bit fix to tif_fax3.c. Fix supplied by
  84. Peter Skarpetis <peters@serendipity-software.com.au>
  85. <LI> Modified tiffio.h logic with regard to including windows.h. It
  86. won't include it when building with __CYGWIN__.
  87. <LI> README: update to mention {REDACTED - defunct web site}, don't list Sam's old
  88. email address.
  89. <LI> libtiff/tif_dirread.c: Don't use estimate strip byte count for
  90. one tile/strip images with an offset, and byte count of zero. These
  91. could be "unpopulated" images.
  92. <LI> tif_win32.c: Applied patch to fix overreads and ovverwrites
  93. caught by BoundsChecker. From Arvan Pritchard
  94. <arvan.pritchard@infomatix.co.uk> (untested).
  95. <LI> tif_getimage.c: Applied patch to silence VC6 warnings. From
  96. Arvan Pritchard <arvan.pritchard@informatix.co.uk>
  97. <LI> tif_lzw.c: Applied patch to silence VC6 warnings. From
  98. Arvan Pritchard <arvan.pritchard@informatix.co.uk>
  99. <LI> libtiff/tif_apple.c: Applied "Carbon" support patches supplied by
  100. Leonard Rosenthol <leonardr@lazerware.com>. May interfere
  101. with correct building on older systems. If so, please let me know.
  102. </UL>
  103. <P><HR WIDTH=65% ALIGN=left>
  104. <A NAME="tools"><B><FONT SIZE=+3>C</FONT>HANGES IN THE TOOLS:</B></A>
  105. <UL>
  106. <LI> tools/rgb2ycbcr.c: fixed output strip size to account for vertical
  107. roundup if rows_per_strip not a multiple of vertical sample size.
  108. <LI> tools/tiffsplit.c: Copy TIFFTAG_SAMPLEFORMAT.
  109. <LI> Modified tiff2bw to ensure portions add to 100%, and that
  110. white is properly recovered. See bug
  111. http://bugzilla.remotesensing.org/show_bug.cgi?id=15 Patch
  112. c/o Stanislav Brabec <utx@penguin.cz>
  113. </UL>
  114. <P><HR WIDTH=65% ALIGN=left>
  115. <A NAME="contrib"><B><FONT SIZE=+3>C</FONT>HANGES IN CONTRIB:</B></A>
  116. <UL>
  117. <LI> contrib/addtiffo: Added "averaging" resampling option.
  118. <LI> Added contrib/stream (stream io) code submitted by Avi Bleiweiss.
  119. </UL>
  120. <P><HR WIDTH=65% ALIGN=left>
  121. <A NAME="lzwkit"><B><FONT SIZE=+3>C</FONT>HANGES IN THE LZW COMPRESSION KIT</B></A>
  122. <UL>
  123. <LI> updated tif_dir.c to reflect changes to no-lzw tif_dir.c
  124. </UL>
  125. <A HREF="index.html"><IMG SRC="images/back.gif"></A> TIFF home page.<BR>
  126. <HR>
  127. Last updated $Date: 2016-09-25 20:05:45 $.
  128. </BODY>
  129. </HTML>