2
0

v3.6.1.html 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. <HTML>
  2. <HEAD>
  3. <TITLE>
  4. Changes in TIFF v3.6.1
  5. </TITLE>
  6. </HEAD>
  7. <BODY BGCOLOR=white>
  8. <FONT FACE="Helvetica, Arial, Sans">
  9. <FONT FACE="Helvetica, Arial, Sans">
  10. <BASEFONT SIZE=4>
  11. <B><FONT SIZE=+3>T</FONT>IFF <FONT SIZE=+2>C</FONT>HANGE <FONT SIZE=+2>I</FONT>NFORMATION</B>
  12. <BASEFONT SIZE=3>
  13. <UL>
  14. <HR SIZE=4 WIDTH=65% ALIGN=left>
  15. <B>Current Version</B>: v3.6.1<BR>
  16. <B>Previous Version</B>: <A HREF=v3.6.0.html>v3.6.0</a><BR>
  17. <B>Master FTP Site</B>: <A HREF="ftp://ftp.remotesensing.org/pub/libtiff">
  18. ftp.remotesensing.org</a>, directory pub/libtiff</A><BR>
  19. <B>Master HTTP Site</B>: <A HREF="http://www.remotesensing.org/libtiff">
  20. http://www.remotesensing.org/libtiff</a>
  21. <HR SIZE=4 WIDTH=65% ALIGN=left>
  22. </UL>
  23. <P>
  24. This document describes the changes made to the software between the
  25. <I>previous</I> and <I>current</I> versions (see above).
  26. If you don't find something listed here, then it was not done in this
  27. timeframe, or it was not considered important enough to be mentioned.
  28. The following information is located here:
  29. <UL>
  30. <LI><A HREF="#hightlights">Major Changes</A>
  31. <LI><A HREF="#configure">Changes in the software configuration</A>
  32. <LI><A HREF="#libtiff">Changes in libtiff</A>
  33. <LI><A HREF="#tools">Changes in the tools</A>
  34. <LI><A HREF="#contrib">Changes in the contrib area</A>
  35. <LI><A HREF="#lzwkit">Changes in the LZW compression kit</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> New utility <a href="./man/tiff2pdf.1.html">tiff2pdf</a>
  43. for converting TIFF images directly into PDF.
  44. <li> New <a href="./man/TIFFcolor.3t.html">color conversion module</a>.
  45. <li> Full support for Orientation tag in
  46. <a href="./man/TIFFReadRGBAImage.3t.html">TIFFRGBAImage</a> interface.
  47. <li> Many bugs fixed.
  48. </ul>
  49. <P><HR WIDTH=65% ALIGN=left>
  50. <!--------------------------------------------------------------------------->
  51. <A NAME="configure"><B><FONT SIZE=+3>C</FONT>HANGES IN THE SOFTWARE CONFIGURATION:</B></A>
  52. <UL>
  53. <li> libtiff/makefile.vc, tools/makefile.vc: Support for IJG JPEG library.
  54. <li> Makefile.in: Add an absolute path to the test_pics.sh call.
  55. <li> Makefile.in: Add an absolute path to the test_pics.sh call.
  56. <li> libtiff/tiffcomp.h: #define _BSDTYPES_DEFINED when defining BSD typedefs.
  57. <li> configure, libtiff/{Makefile.in, mkversion.c}: Relative buildings fixed.
  58. <li> Makefile.in: Add an absolute path to the test_pics.sh call.
  59. </UL>
  60. <P><HR WIDTH=65% ALIGN=left>
  61. <!--------------------------------------------------------------------------->
  62. <A NAME="libtiff"><B><FONT SIZE=+3>C</FONT>HANGES IN LIBTIFF:</B></A>
  63. <UL>
  64. <li> libtiff/{tif_color.c, tif_getimage.c, tiffio.h}: Added support
  65. for ReferenceBlackWhite tag handling when converted from YCbCr color space as
  66. per bug 120.
  67. <li> libtiff/{tif_getimage.c, tif_aux.c}: Read WhitePoint tag from the
  68. file and properly use it for CIE Lab 1976 to RGB transform.
  69. <li> libtiff/{tif_getimage.c, tiffio.h}: Finally resolved problems with
  70. orientation handling. TIFFRGBAImage interface now properly supports all
  71. possible orientations, i.e. images will be flipped both in horizontal and
  72. vertical directions if required. 'Known bugs' section now removed from the
  73. appropriate manual pages.
  74. <li> libtiff/tif_luv.c: Fixed bug in 48-bit to 24-bit conversion routine,
  75. reported by Antonio Scuri.
  76. <li> libtiff/{tiffio.h, tif_codec.c}: Added new function
  77. TIFFIsCODECConfigured(), suggested by Ross Finlayson.
  78. <li> libtiff/tif_ojpeg.c: TIFFVGetField() function now can properly extract
  79. the fields from the OJPEG files. Patch supplied by Ross Finlayson.
  80. <li> libtiff/tif_dir.h: _TIFFFindOrRegisterdInfo declaration replaced
  81. with _TIFFFindOrRegisterFieldInfo as reported by Ross Finlayson.
  82. <li> libtiff/tif_dirinfo.c: Implemented binary search in _TIFFMergeFieldInfo().
  83. Patch supplied by Ross Finlayson.
  84. <li> tif_dirread.c: do not mark all anonymously defined tags to be IGNOREd (as
  85. it was done in 3.6.0).
  86. <li> libtiff/{tiff.h, tif_dirinfo.c}: Added support for IFD (13) datatype,
  87. intruduced in "Adobe PageMaker TIFF Technical Notes".
  88. <li> libtiff/{tif_color.c, tif_getimage.c, tiffio.h}: New color space
  89. conversion code: CIE L*a*b* 1976 images now supported by the TIFFRGBAImage
  90. interface. YCbCr to RGB conversion code also moved there and now has
  91. <a href="./man/TIFFcolor.3t.html">publicly available interface</a>. These
  92. routines currently used in TIFFRGBAImage interface only and not supported in
  93. other libtiff tools yet. So if you want, for example, to convert CIE Lab image
  94. into PostScript file you should do it in two steps: chnge colorspace to RGB
  95. using <a href="./man/tiff2rgba.1.html">tiff2rgba</a> utility abd then process
  96. it with the <a href="./man/tiff2ps.1.html">tiff2ps</a>.
  97. <li> libtiff/tif_tile.c: Remove spurious use of "s" (sample) in the
  98. planarconfig_contig case in TIFFComputeTile() as per bug 387
  99. <li> libtiff/tiffiop.h: New macros: TIFFmax and TIFFmin.
  100. <li> libtiff/{tiffio.h, tif_strip.c}: Added TIFFRawStripSize() function
  101. as suggested by Chris Hanson.
  102. <li> libtiff/{tif_lzw.c, tif_fax3.c}: Proper support for update mode
  103. as per bug 424.
  104. </UL>
  105. <P><HR WIDTH=65% ALIGN=left>
  106. <!-------------------------------------------------------------------------->
  107. <A NAME="tools"><B><FONT SIZE=+3>C</FONT>HANGES IN THE TOOLS:</B></A>
  108. <UL>
  109. <li> <a href=./man/tiff2pdf.1.html>tiff2pdf</a>: New tool, written by
  110. Ross Finlayson, to directly convert TIFF files to PDF.
  111. <li> <a href=./man/tiffgt.1.html>tiffgt</a>: Unmaintained and platform
  112. dependent sgigt utility removed and replaced with the completely rewritten
  113. portable <a href=./man/tiffgt.1.html>tiffgt</a> tool (depend on OpenGL and
  114. GLUT). This tool will not build by default.
  115. <li> <a href=./man/ras2tiff.1.html>ras2tiff</a>: Properly determine
  116. SUN Rasterfiles with the reverse byte order (it is reported by the magic
  117. header field). Problem reported by Andreas Wiesmann.
  118. <li> <a href=./man/raw2tiff.1.html>raw2tiff</a>: Implemented image size
  119. guessing using correlation coefficient calculation between two neighbour
  120. lines.
  121. </UL>
  122. <P><HR WIDTH=65% ALIGN=left>
  123. <!--------------------------------------------------------------------------->
  124. <A NAME="contrib"><B><FONT SIZE=+3>C</FONT>HANGES IN THE CONTRIB AREA:</B></A>
  125. <UL>
  126. <li> contrib/pds/{tif_pdsdirread.c, tif_pdsdirwrite.c}: Use TIFFDataWidth()
  127. function insted of tiffDataWidth array.
  128. </UL>
  129. <!--------------------------------------------------------------------------->
  130. <A NAME="lzwkit"><B><FONT SIZE=+3>C</FONT>HANGES IN THE LZW COMPRESSION
  131. KIT:</B></A>
  132. <UL>
  133. <li> Proper support for update mode as per bug 424.
  134. </UL>
  135. <A HREF="index.html"><IMG SRC="images/back.gif"></A> TIFF home page.<BR>
  136. <HR>
  137. Last updated $Date: 2003-12-24 22:14:15 $.
  138. </BODY>
  139. </HTML>