v3.7.1.html 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  2. <HTML>
  3. <HEAD>
  4. <TITLE>
  5. Changes in TIFF v3.7.1
  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.7.1<BR>
  17. <B>Previous Version</B>: <A HREF=v3.7.0.html>v3.7.0</a><BR>
  18. <B>Master Download Site</B>: <A HREF="https://download.osgeo.org/libtiff">
  19. download.osgeo.org</a>, directory pub/libtiff</A><BR>
  20. <B>Master HTTP Site</B>: <A HREF="http://www.simplesystems.org/libtiff/">
  21. http://www.simplesystems.org/libtiff/</a>
  22. <HR SIZE=4 WIDTH=65% ALIGN=left>
  23. </UL>
  24. <P>
  25. This document describes the changes made to the software between the
  26. <I>previous</I> and <I>current</I> versions (see above).
  27. If you don't find something listed here, then it was not done in this
  28. timeframe, or it was not considered important enough to be mentioned.
  29. The following information is located here:
  30. <UL>
  31. <LI><A HREF="#highlights">Major Changes</A>
  32. <LI><A HREF="#configure">Changes in the software configuration</A>
  33. <LI><A HREF="#libtiff">Changes in libtiff</A>
  34. <LI><A HREF="#tools">Changes in the tools</A>
  35. <LI><A HREF="#contrib">Changes in the contrib area</A>
  36. </UL>
  37. <p>
  38. <P><HR WIDTH=65% ALIGN=left>
  39. <!--------------------------------------------------------------------------->
  40. <A NAME="highlights"><B><FONT SIZE=+3>M</FONT>AJOR CHANGES:</B></A>
  41. <UL>
  42. <li> This is mostly bugfix release. Most important fix is the one
  43. related to wrong custom tag read/write code.
  44. </UL>
  45. <P><HR WIDTH=65% ALIGN=left>
  46. <!--------------------------------------------------------------------------->
  47. <A NAME="configure"><B><FONT SIZE=+3>C</FONT>HANGES IN THE SOFTWARE CONFIGURATION:</B></A>
  48. <UL>
  49. <li> autogen.sh: aclocal and autoheader should be executed after
  50. libtoolize. Also add '-I .' to aclocal invocation to check
  51. current directory for macros.
  52. <li> nmake.opt: Link with the user32.lib in windowed mode. As per bug
  53. <a href="http://bugzilla.remotesensing.org/show_bug.cgi?id=697">
  54. http://bugzilla.remotesensing.org/show_bug.cgi?id=697</a>
  55. <li> nmake.opt, makefile.vc: make it easier to rename the libtiff DLL.
  56. <li> configure, configure.ac: Added --enable-rpath option to embed
  57. linker paths into library binary.
  58. </UL>
  59. <P><HR WIDTH=65% ALIGN=left>
  60. <!--------------------------------------------------------------------------->
  61. <A NAME="libtiff"><B><FONT SIZE=+3>C</FONT>HANGES IN LIBTIFF:</B></A>
  62. <UL>
  63. <li> tiff.h: Revert back libtiff data type definitions as per
  64. bug <a href="http://bugzilla.remotesensing.org/show_bug.cgi?id=687">
  65. http://bugzilla.remotesensing.org/show_bug.cgi?id=687</a>
  66. <li> tif_dirread.c: Do not forget about TIFF_VARIABLE2 when
  67. checking for tag count in TIFFReadDirectory() function. As per bug
  68. <a href="http://bugzilla.remotesensing.org/show_bug.cgi?id=713">
  69. http://bugzilla.remotesensing.org/show_bug.cgi?id=713</a>
  70. <li> tif_getimage.c: Support for multiple-alpha-channelled
  71. RGB-images as per bug
  72. <a href="http://bugzilla.remotesensing.org/show_bug.cgi?id=718">
  73. http://bugzilla.remotesensing.org/show_bug.cgi?id=718</a>
  74. <li> tif_getimage.c: #define A1 bracketing for clean build on
  75. SunPro compiler.
  76. <li> tif_dirwrite.c: Always write TIFFTAG_SUBIFD using LONG type
  77. as per bugs
  78. <a href="http://bugzilla.remotesensing.org/show_bug.cgi?id=703">
  79. http://bugzilla.remotesensing.org/show_bug.cgi?id=703</a> and
  80. <a href="http://bugzilla.remotesensing.org/show_bug.cgi?id=704">
  81. http://bugzilla.remotesensing.org/show_bug.cgi?id=704</a>.
  82. <li> tif_win32.c: Use char* strings instead of TCHAR in windowed
  83. mode as per bug
  84. <a href="http://bugzilla.remotesensing.org/show_bug.cgi?id=697">
  85. http://bugzilla.remotesensing.org/show_bug.cgi?id=697</a>
  86. <li> tif_dir.c, tif_dirread.c: Remove TIFFReassignTagToIgnore()
  87. call from the TIFFReadDirectory() function. TIFFReassignTagToIgnore
  88. must be removed in the future, as it was never used properly. As per
  89. bug <a href="http://bugzilla.remotesensing.org/show_bug.cgi?id=692">
  90. http://bugzilla.remotesensing.org/show_bug.cgi?id=692</a>
  91. <li> tif_jpeg.c: Added a work-around in order to allow
  92. compilation with the heavily modified version of libjpeg delivered
  93. with Cygwin.
  94. <li> tif_dir.c: Properly handle tags, which have the uint32
  95. counts. As per bug
  96. <a href="http://bugzilla.remotesensing.org/show_bug.cgi?id=693">
  97. http://bugzilla.remotesensing.org/show_bug.cgi?id=693</a>
  98. <li> tif_unix.c: Make UNIX module compilable (and usable)
  99. on Windows.
  100. <li> tiff.h: Added Adobe DNG tags.
  101. <li> tif_aux.c: Set the appropriate ReferenceBlackWhite array for
  102. YCbCr image which lacks that tag (noted by Hans Petter Selasky).
  103. <li> tif_color.c: Division by zero fixed (Hans Petter Selasky).
  104. <li> tif_stream.cxx, tiffio.h: Added C++ stream interface
  105. contributed by Edward Lam (see
  106. <a href="http://bugzilla.remotesensing.org/show_bug.cgi?id=654">
  107. http://bugzilla.remotesensing.org/show_bug.cgi?id=654</a>
  108. for details). Those who want to use C++ streams should
  109. #include <tiffio.hxx>.
  110. <li> tif_open.c: Removed close() in TIFFClientOpen() if file
  111. is bad. This is the callers responsibility.
  112. <a href="http://bugzilla.remotesensing.org/show_bug.cgi?id=651">
  113. http://bugzilla.remotesensing.org/show_bug.cgi?id=651</a>
  114. <li> tiffio.h, tif_win32.c, libtiff.def}: Added TIFFOpenW()
  115. function to work with the double byte strings (used to represent
  116. filenames in some locales). As per bug
  117. <a href="http://bugzilla.remotesensing.org/show_bug.cgi?id=625">
  118. http://bugzilla.remotesensing.org/show_bug.cgi?id=625</a>
  119. <li> tif_dirread.c: Fixed problem when fetching BitsPerSample and
  120. Compression tags of type LONG from broken TIFFS as per bug
  121. <a href="http://bugzilla.remotesensing.org/show_bug.cgi?id=662">
  122. http://bugzilla.remotesensing.org/show_bug.cgi?id=662</a>
  123. <li> tif_dirinfo.c: Fixed definition for TIFFTAG_RICHTIFFIPTC,
  124. the writecount should have uint32 type. As per bug
  125. <a href="http://bugzilla.remotesensing.org/show_bug.cgi?id=662">
  126. http://bugzilla.remotesensing.org/show_bug.cgi?id=662</a>
  127. <li> tif_write.c: Fixed wrong if() statement in
  128. TIFFAppendToStrip() function as per bug
  129. <a href="http://bugzilla.remotesensing.org/show_bug.cgi?id=660">
  130. http://bugzilla.remotesensing.org/show_bug.cgi?id=660</a>
  131. <li> tif_dirinfo.c: Change definition for TIFFTAG_EXTRASAMPLES
  132. field. The caller should supply a count when setting this field. As
  133. per bug <a href="http://bugzilla.remotesensing.org/show_bug.cgi?id=648">
  134. http://bugzilla.remotesensing.org/show_bug.cgi?id=648</a>.
  135. <li> tif_jpeg.c, tif_ojpeg.c: TIFFTAG_JPEGTABLES should have
  136. uint32 count. Use this type everywhere.
  137. <li> tif_next.c: avoid use of u_long and u_char types.
  138. <li> tif_fax3.c: Fixed case with the wrong decode routines
  139. choosing when the incorrect Group4Options tag set. As per bug
  140. <a href="http://bugzilla.remotesensing.org/show_bug.cgi?id=323">
  141. http://bugzilla.remotesensing.org/show_bug.cgi?id=323</a>
  142. <li> tif_dirwrite.c: Fixed problem with passing count variable of
  143. wrong type when writing the TIFF_BYTE/TIFF_SBYTE tags in
  144. TIFFWriteNormalTag().
  145. <li> tif_compress.c: Zero division problem fixed (Vladimir Nadvornik,
  146. Dmitry V. Levin).
  147. </UL>
  148. <P><HR WIDTH=65% ALIGN=left>
  149. <!-------------------------------------------------------------------------->
  150. <A NAME="tools"><B><FONT SIZE=+3>C</FONT>HANGES IN THE TOOLS:</B></A>
  151. <UL>
  152. <li> fax2ps.c: Be able to extract the first page (#0). As per bug
  153. <a href="http://bugzilla.remotesensing.org/show_bug.cgi?id=690">
  154. http://bugzilla.remotesensing.org/show_bug.cgi?id=690</a>
  155. <li> tiff2ps.c: Fixed wrong variable data type when read Position
  156. tags (Tristan Hill).
  157. <li> tiff2ps.c: Fixed wrong variable data type when read Resolution
  158. tags (Peter Fales).
  159. <li> tiffset.c: Check the malloc return value (Dmitry V. Levin).
  160. </UL>
  161. <P><HR WIDTH=65% ALIGN=left>
  162. <!--------------------------------------------------------------------------->
  163. <A NAME="contrib"><B><FONT SIZE=+3>C</FONT>HANGES IN THE CONTRIB AREA:</B></A>
  164. <UL>
  165. <li> No changes.
  166. </UL>
  167. Last updated $Date: 2016-09-25 20:05:45 $.
  168. </BODY>
  169. </HTML>