2
0

v3.5.5.html 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. <HTML>
  2. <HEAD>
  3. <TITLE>
  4. Changes in TIFF v3.5.5
  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.5.5<BR>
  16. <B>Previous Version</B>: <A HREF=v3.5.4.html>v3.5.4</a><BR>
  17. <B>Master FTP Site</B>: <A HREF="ftp://ftp.onshore.com/pub/libtiff">ftp.onshore.com</a>, directory pub/libtiff</A><BR>
  18. <B>Master HTTP Site</B>: <A HREF="http://www.remotesensing.org/libtiff/">http://www.remotesensing.org/libtiff</a>
  19. <HR SIZE=4 WIDTH=65% ALIGN=left>
  20. </UL>
  21. <P>
  22. This document describes the changes made to the software between the
  23. <I>previous</I> and <I>current</I> versions (see above).
  24. If you don't find something listed here, then it was not done in this
  25. timeframe, or it was not considered important enough to be mentioned.
  26. The following information is located here:
  27. <UL>
  28. <LI><A HREF="#configure">Changes in the software configuration</A>
  29. <LI><A HREF="#libtiff">Changes in libtiff</A>
  30. <LI><A HREF="#tools">Changes in the tools</A>
  31. <LI><A HREF="#lzwkit">Changes in the LZW compression kit</A>
  32. </UL>
  33. <p>
  34. <P><HR WIDTH=65% ALIGN=left>
  35. <A NAME="configure"><B><FONT SIZE=+3>C</FONT>HANGES IN THE SOFTWARE CONFIGURATION:</B></A>
  36. <UL>
  37. <LI> configure: added test for libc6 for linux targets. Bug reported by
  38. Stanislav Brabec <utx@k332.feld.cvut.cz>
  39. <LI> configure: fixed bugs in sed scripts
  40. (applied sed script s:/@:s;@:;s:/s;;:;: to configure).
  41. fix submitted by Stanislav Brabec <utx@k332.feld.cvut.cz>
  42. <LI> tools/iptcutil was not in files list, and wasn't being
  43. added to tar archive. Updated Makefile.in.
  44. <LI> Added 3.5 docs to html/Makefile.in.
  45. Thanks to Stanislav Brabec <utx@k332.feld.cvut.cz>
  46. <LI> Fixed tools/tiffcmp so that stopondiff testing works.
  47. Patch care of Joseph Orost <joe@sanskrit.lz.att.com>.
  48. <LI> Added fax3sm_winnt.c to distribution list in Makefile.in.
  49. <LI> Added libtiff/libtiff.def to TIFFILES distribution list.
  50. </UL>
  51. <P><HR WIDTH=65% ALIGN=left>
  52. <A NAME="libtiff"><B><FONT SIZE=+3>C</FONT>HANGES IN LIBTIFF:</B></A>
  53. <UL>
  54. <LI>tif_fax3.c: Fixed serious bug introduced during the uint16->uint32
  55. conversion for the run arrays.
  56. <LI> Set td_sampleformat default to SAMPLEFORMAT_UINT instead of
  57. SAMPLEFORMAT_VOID in TIFFDefaultDirectory() in tif_dir.c.
  58. <LI> Added "GetDefaulted" support for TIFFTAG_SAMPLEFORMAT in tif_aux.c.
  59. <LI> Patched tif_fax3.c so that dsp->runs is allocated a bit bigger
  60. to avoid overruns encountered with frle_bug.tif.
  61. <LI> Modified tif_unix.c to support 2-4GB seeks if USE_64BIT_API is
  62. set to 1, and added default (off) setting in tiffconf.h. This
  63. should eventually be set by the configure script somehow.
  64. The original work on all these 2-4GB changes was done by
  65. Peter Smith (psmith@creo.com).
  66. <LI> Modified tif_win32.c to support 2-4GB seeks.
  67. <LI> tentatively changed toff_t to be unsigned instead of signed to
  68. facilitate support for 2-4GB files.
  69. <LI> Updated a variety of files to use toff_t. Fixed some mixups
  70. between toff_t and tsize_t.
  71. <LI> Set tif_rawdatasize to zero when freeing raw data buffer in
  72. TIFFWriteDirectory().
  73. <LI> Enabled "REWRITE_HACK" in tif_write.c by default.
  74. <LI> Fix bug in tif_write.c when switching between reading one directory
  75. and writing to another.
  76. <LI> Made TIFFWriteCheck() public, and added TIFFCreateDirectory()
  77. <LI> Added TIFFmemory(3t) functions to libtiff.def.
  78. <LI> Added libtiff/libtiff.def to TIFFILES distribution list.
  79. </UL>
  80. <P><HR WIDTH=65% ALIGN=left>
  81. <A NAME="tools"><B><FONT SIZE=+3>C</FONT>HANGES IN THE TOOLS:</B></A>
  82. <UL>
  83. <LI> fax2ps: Fixed mixup of width and height in bounding box statement
  84. as per submission by Nalin Dahyabhai <nalin@redhat.com>.
  85. <LI> fax2ps: Modified printruns to take uint32 instead of uint16.
  86. Patch courtesy of Bernt Herd <herd@herdsoft.com>
  87. <LI> Largely reimplemented contrib/addtiffo to avoid temp files,
  88. updating the TIFF file in place. Fixed a few other bugs to.
  89. <LI> Altered descriptions in tools to reflect "by default" lzw not supported
  90. </UL>
  91. <P><HR WIDTH=65% ALIGN=left>
  92. <A NAME="lzwkit"><B><FONT SIZE=+3>C</FONT>HANGES IN THE LZW COMPRESSION KIT</B></A>
  93. <UL>
  94. <LI>created mangle-src.sh -- sed scripts to munge src into LZW enabled format. Thanks to Stanislav Brabec <utx@k332.feld.cvut.cz>
  95. <LI>created Makefile
  96. <LI>merged tif_dir.c with current source.
  97. <LI> Created lzw compression kit, as a new CVS module (libtiff-lzw-compression-kit).
  98. <LI> Updated index.html to note lzw compression kit.
  99. </UL>
  100. <A HREF="index.html"><IMG SRC="images/back.gif"></A> TIFF home page.<BR>
  101. <HR>
  102. Last updated $Date: 2004-11-26 14:37:20 $.
  103. </BODY>
  104. </HTML>