v3.7.3.html 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  2. <HTML>
  3. <HEAD>
  4. <TITLE>
  5. Changes in TIFF v3.7.3
  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.3<BR>
  17. <B>Previous Version</B>: <A HREF=v3.7.2.html>v3.7.2</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> Replace runtime endianness check with the compile time one.
  43. <li> Added support for the new predictor type (floating point
  44. predictor), defined at the TIFF Technical Note 3.
  45. <li> Added Support for custom tags, passed by value.
  46. Added support for all DNG tags.
  47. </UL>
  48. <P><HR WIDTH=65% ALIGN=left>
  49. <!--------------------------------------------------------------------------->
  50. <A NAME="configure"><B><FONT SIZE=+3>C</FONT>HANGES IN THE SOFTWARE CONFIGURATION:</B></A>
  51. <UL>
  52. <li> Do not use empty -R option when linking with --enable-rpath.
  53. <li> Added workaround for OpenBSD/MirOS soname problem as per bug
  54. <a href="http://bugzilla.remotesensing.org/show_bug.cgi?id=838">
  55. http://bugzilla.remotesensing.org/show_bug.cgi?id=838</a>
  56. <li> Fixed parallel compilation of the libtiff and
  57. libtiffxx libraries as per bug
  58. <a href="http://bugzilla.remotesensing.org/show_bug.cgi?id=826">
  59. http://bugzilla.remotesensing.org/show_bug.cgi?id=826</a>
  60. <li> configure.ac, libtiff/Makefile.am: Use libtool machinery to pass
  61. rpath option.
  62. <li> make.opt: Build with Win32 CRT library by default.
  63. </UL>
  64. <P><HR WIDTH=65% ALIGN=left>
  65. <!--------------------------------------------------------------------------->
  66. <A NAME="libtiff"><B><FONT SIZE=+3>C</FONT>HANGES IN LIBTIFF:</B></A>
  67. <UL>
  68. <li> tiffiop.h, tif_open.c: Added open option 'h' to avoid reading
  69. the first IFD when needed. As per bug
  70. <a href="http://bugzilla.remotesensing.org/show_bug.cgi?id=875">
  71. http://bugzilla.remotesensing.org/show_bug.cgi?id=875</a>
  72. <li> tiff.h: Use correct int size on Sparc 64bit/Sun compiler
  73. platform. As per bug
  74. <a href="http://bugzilla.remotesensing.org/show_bug.cgi?id=855">
  75. http://bugzilla.remotesensing.org/show_bug.cgi?id=855</a>
  76. <li> tif_dirinfo.c: Added support for ClipPath, XClipPathUnits
  77. and YClipPathUnits tags.
  78. <li> tif_dirinfo.c, tif_dir.h, tif_dir.c, tif_print.c: Make
  79. DocumentName, Artist, HostComputer, ImageDescription, Make, Model,
  80. Copyright, DateTime, PageName, TextureFormat, TextureWrapModes and
  81. TargetPrinter tags custom.
  82. <li> tif_jpeg.c: Cleanup the codec state depending on TIFF_CODERSETUP
  83. flag (to fix memory leaks).
  84. <li> tif_dirwrite.c: Use tdir_count when calling
  85. TIFFCvtNativeToIEEEDouble() in the TIFFWriteDoubleArray() function as
  86. per bug <a href="http://bugzilla.remotesensing.org/show_bug.cgi?id=845">
  87. http://bugzilla.remotesensing.org/show_bug.cgi?id=845</a>
  88. <li> tif_dirinfo.c, tif_print.c: TIFFFetchByteArray() returns
  89. uint16 array when fetching the BYTE and SBYTE fields, so we should
  90. consider result as pointer to uint16 array and not as array of chars.
  91. As per bug
  92. <a href="http://bugzilla.remotesensing.org/show_bug.cgi?id=831">
  93. http://bugzilla.remotesensing.org/show_bug.cgi?id=831</a>
  94. <li> tif_dir.c: More efficient custom tags retrieval as per bug
  95. <a href="http://bugzilla.remotesensing.org/show_bug.cgi?id=830">
  96. http://bugzilla.remotesensing.org/show_bug.cgi?id=830</a>
  97. <li> tif_win32.c: Use FILE_SHARE_READ | FILE_SHARE_WRITE share
  98. mode in CreateFile() call as per bug
  99. <a href="http://bugzilla.remotesensing.org/show_bug.cgi?id=829">
  100. http://bugzilla.remotesensing.org/show_bug.cgi?id=829</a>
  101. <li> tif_jpeg.c: Substantial fix for addtiffo problems with
  102. JPEG encoded TIFF files. Pre-allocate lots of space for jpegtables
  103. in directory.
  104. <li> tif_dirread.c: Changed the code that computes
  105. stripbytecount[0] if it appears bogus to ignore if stripoffset[0] is
  106. zero. This is a common case with GDAL indicating a "null" tile/strip.
  107. <li> tif_jpeg.c: added LIB_JPEG_MK1 support in JPEGDecodeRaw().
  108. <li> tif_dirread.c: Ensure that broken files with too many
  109. values in PerSampleShorts, TIFFFetchPerSampleLongs and
  110. TIFFFetchPerSampleAnys work ok instead of crashing.
  111. <a href="http://bugzilla.remotesensing.org/show_bug.cgi?id=843">
  112. http://bugzilla.remotesensing.org/show_bug.cgi?id=843</a>
  113. <li> tif_predict.h, tif_predict.c: Added ability to decode and encode
  114. floating point predictor, as per TIFF Technical Note 3.
  115. See http://chriscox.org/TIFF_TN3_Draft2.pdf for details.
  116. <li> tiffio.h, tiffiop.h, tif_dir.c, tif_read.c, tif_swab.c:
  117. Added _TIFFSwab24BitData() and TIFFSwabArrayOfLong() functions used to
  118. swap 24-bit floating point values.
  119. <li> tiff.h: Added predictor constants.
  120. <li> tiffiop.h, tif_dir.c: Use uint32 type for appropriate values
  121. in _TIFFVSetField() function. Inspired by the bug
  122. <a href="http://bugzilla.remotesensing.org/show_bug.cgi?id=816">
  123. http://bugzilla.remotesensing.org/show_bug.cgi?id=816</a>
  124. <li> tif_open.c: Do not read header in case the output file should
  125. be truncated (Ron).
  126. <li> tif_dirinfo.c, tif_config.h.vc: Use lfind() instead of bsearch()
  127. in _TIFFFindFieldInfoByName() function (Ron).
  128. <li> tif_dir.c, tif_print.c: Properly handle all data types in custom
  129. tags.
  130. <li> dirinfo.c: Added DNG tags.
  131. <li> tiff.h: Added missed DNG tag (LensInfo); added DNG 1.1.0.0 tags.
  132. <li> tif_dir.c, tif_print.c: Added Support for custom tags, passed
  133. by value.
  134. <li> tiff.h, tif_dirinfo.c, tiffiop.h: Added EXIF related tags.
  135. </UL>
  136. <P><HR WIDTH=65% ALIGN=left>
  137. <!-------------------------------------------------------------------------->
  138. <A NAME="tools"><B><FONT SIZE=+3>C</FONT>HANGES IN THE TOOLS:</B></A>
  139. <UL>
  140. <li> tiff2pdf.c: Print two characters per loop in the
  141. t2p_write_pdf_trailer(). As per bug
  142. <a href="http://bugzilla.remotesensing.org/show_bug.cgi?id=594">
  143. http://bugzilla.remotesensing.org/show_bug.cgi?id=594</a>
  144. <li> tiffgt.c: Use MacOS X OpenGL framework when appropriate. As
  145. per bug <a href="http://bugzilla.remotesensing.org/show_bug.cgi?id=844">
  146. http://bugzilla.remotesensing.org/show_bug.cgi?id=844</a>
  147. <li> ppm2tiff.c: Fixed format string when read PPM file header with
  148. the fscanf() function. As per bug
  149. <a href="http://bugzilla.remotesensing.org/show_bug.cgi?id=861">
  150. http://bugzilla.remotesensing.org/show_bug.cgi?id=861</a>
  151. <li> tiffsplit.c: Check for JPEGTables tag presence before copying.
  152. <li> tiff2pdfr.c: Calculate the tile width properly; added new
  153. option '-b' to use interpolation in output PDF files (Bruno Ledoux).
  154. <li> tiffdither.c: Copy the PhotometricInterpretation tag from the
  155. input file.
  156. <li> tif2pdf.c: Fixed problem with alpha channel handling as per
  157. bug <a href="http://bugzilla.remotesensing.org/show_bug.cgi?id=794">
  158. http://bugzilla.remotesensing.org/show_bug.cgi?id=794</a>.
  159. </UL>
  160. <P><HR WIDTH=65% ALIGN=left>
  161. <!--------------------------------------------------------------------------->
  162. <A NAME="contrib"><B><FONT SIZE=+3>C</FONT>HANGES IN THE CONTRIB AREA:</B></A>
  163. <UL>
  164. <li> addtiffo/{tif_overview.c, tif_ovrcache.c, tif_ovrcache.h}:
  165. Make overviews working for contiguous images.
  166. </UL>
  167. Last updated $Date: 2016-09-25 20:05:45 $.
  168. </BODY>
  169. </HTML>