Changes in TIFF v3.9.0beta¶
Current Version |
v3.9.0beta (tag Release-v3-9-0beta) |
Previous Version |
|
Master Download Site |
|
Master HTTP Site |
This document describes the changes made to the software between the previous and current versions (see above). If you don't find something listed here, then it was not done in this timeframe, or it was not considered important enough to be mentioned. The following information is located here:
Major changes¶
New tiffcrop utility contributed by Richard Nolde. tiffcrop does the same as tiffcp, but also can crop, extract, rotate and mirror images.
tif_jbig.c
: Added support for JBIG compression scheme (34661 code), contributed by Lee Howard.Totally new implementation of OJPEG module from Joris Van Damme. No need to patch libjpeg anymore. Many OJPEG files should be supported now that was not supported previously.
Software configuration changes¶
tif_config.wince.h
,tiffconf.wince.h
,tif_wince.c
: WinCE-specific compatibility stuff from Mateusz Loskot.Rename
config.h.vc
andtif_config.h.vc
toconfig.vc.h
andtif_config.vc.h
for easier identification by folks using an IDE.configure
,configure.ac
: OJPEG support enabled by default (i.e., when conformant JPEG support is enabled).README.vms
,Makefile.am
,configure.com
,libtiff/Makefile.am
,libtiff/tif_config.h-vms
,libtiff/tif_stream.cxx
,libtiff/tif_vms.c
,libtiff/tiffconf.h-vms
: Added support for OpenVMS by Alexey Chupahin.nmake.opt
: use/EHsc
for VS2005 compatibility. Also define_CRT_SECURE_NO_DEPRECATE
to avoid noise on VS2005.
Library changes¶
tif_dirinfo.c
(_TIFFFindFieldInfo()
): Don't attempt tobsearch()
on aNULL
fieldinfo list. (_TIFFFindFieldInfoByName()
): Don't attempt tolfind()
on aNULL
fieldinfo list.tif_jpeg.c
: ChangedJPEGInitializeLibJPEG()
so that it will convert from decompressor to compressor or compress to decompress if required by the force arguments. This works around a problem in where theJPEGFixupTestSubsampling()
may cause a decompressor to be setup on a directory when later a compressor is required with the force flag set. Occurs with the addtiffo program for instance.tif_dirwrite.c
: Fixed swapping of byte arrays stored in-place in tag offsets as per bug Remote Sensing bugzilla #1363 [no longer available]tif_getimage.c
: workaround for "Fractional scanline" error reading OJPEG images with rowsperstrip that is not a multiple of vertical subsampling factor. This bug is mentioned in Remote Sensing bugzilla #1390 [no longer available] and http://www.asmail.be/msg0054766825.htmltif_dirread.c
: Added special function to handleSubjectDistance
EXIF tag as per bug Remote Sensing bugzilla #1362 [no longer available]tif_dirread.c
,tif_read.c
: Type of the byte counters changed fromtsize_t
touint32
to be able to work with data arrays larger than 2GB. Fixes bug Remote Sensing bugzilla #890 [no longer available]. Idea submitted by Matt Hancher.tif_dir.c
: Workaround for incorrect TIFFs withExtraSamples == 999
produced by Corel Draw. As per bug Remote Sensing bugzilla #1490 [no longer available]tif_write.c
:TIFFAppendToStrip()
- clear sorted flag if we move a strip. Remote Sensing bugzilla #1359 [no longer available]tif_fax3.c
: Save the state of printdir codec dependent method.tif_jpeg.c
: Save the state of printdir codec dependent method as per bug Remote Sensing bugzilla #1273 [no longer available]tif_win32.c
: Fixed problem with offset value manipulation as per bug Remote Sensing bugzilla #1322 [no longer available]tif_fax3.c
,tif_next.c
,tif_pixarlog.c
: Fixed multiple vulnerabilities, as per Gentoo bug (): http://bugs.gentoo.org/show_bug.cgi?id=142383tif_lzw.c
,tif_zip.c
: Fixed problems with mixing encoding and decoding on the same read-write TIFF handle. The LZW code can now maintain encode and decode state at the same time. The ZIP code will switch back and forth as needed. Remote Sensing bugzilla #757 [no longer available]tif_msdos.c
: Avoid handle leak for failed opens. c/o Thierry Pierrontif_dirwrite.c
: take care not to flush out buffer of strip/tile data in_TIFFWriteDirectory()
ifTIFF_BEENWRITING
not set. Relates to bug report by Peng Gao with black strip at bottom of images.tif_dirwrite.c
: make sure to useuint32
for wordcount inTIFFWriteNormalTag()
ifwritecount
isVARIABLE2
for ASCII fields. It already seems to have been done for other field types. Needed for tiffset on files with geotiff ascii text.tif_dirinfo.c
: Added missed EXIF tagColorSpace
(40961).tif_dirread.c
: Move IFD fetching code in the separate functionTIFFFetchDirectory()
avoiding code duplication inTIFFReadDirectory()
andTIFFReadCustomDirectory()
.tif_readdir.c
: Added case inEstimateStripByteCounts()
for tiled files. ModifiedTIFFReadDirectory()
to not invokeEstimateStripByteCounts()
for case where entry 0 and 1 are unequal but one of them is zero. Remote Sensing bugzilla #1204 [no longer available]tif_open.c
,tif_dirread.c
,tiffiop.h
: Move IFD looping checking code in the separate functionTIFFCheckDirOffset()
.tif_aux.c
: Added_TIFFCheckRealloc()
function.tif_fax3.c
: Fixed problems in fax decoder as per bug Remote Sensing bugzilla #1194 [no longer available]tif_jbig.c
: Added support for JBIG compression scheme (34661 code) contributed by Lee Howard. As per bug Remote Sensing bugzilla #896 [no longer available].tif_getimage.c
: Added support for planarconfig separate non-subsampled YCbCr (i.e. separate YCbCr with subsampling[1,1]
).tif_getimage.c
: Revision of all RGB(A) put routines:Conversion of unassociated alpha to associated alpha now done with more performant LUT, and calculation more correct.
Conversion of 16bit data to 8bit data now done with more performant LUT, and calculation more correct
Bugfix of handling of 16bit RGB with unassociated alpha
tif_ojpeg.c
: totally new implementationtif_getimage.c
: removedTIFFTAG_JPEGCOLORMODE
handling of OJPEG images in favor of tif_getimage.c native handling of YCbCr and desubsampling.tif_jpeg.c
:JPEGVSetField()
so that altering the photometric interpretation causes the "upsampled" flag to be recomputed. Fixes peculiar bug where photometric flag had to be set before jpegcolormode flag.
Tools changes¶
tiff2ps.c
: Added support 16-bit images as per bug Remote Sensing bugzilla #1566 [no longer available]. Patch from William Bader.tiff2pdf.c
: Fix forTIFFTAG_JPEGTABLES
tag fetching and significant upgrade of the whole utility as per bug Remote Sensing bugzilla #1560 [no longer available]. Now we don't needtiffiop.h
in tiff2pdf anymore and will open output PDF file usingTIFFClientOpen()
machinery as it is implemented by Leon Bottou.tiffcrop.c
: New tiffcrop utility contributed by Richard Nolde. As per bug Remote Sensing bugzilla #1383 [no longer available]tiff2pdf.c
: Do not assume inches when the resolution units do not specified. As per bug Remote Sensing bugzilla #1366 [no longer available]tiffset.c
: Properly handle tags withTIFF_VARIABLE
writecount. As per bug Remote Sensing bugzilla #1350 [no longer available]tif2rgba.c
: This utility does not work properly on big-endian architectures. It was fixed including the bug Remote Sensing bugzilla #1149 [no longer available]tiff2pdf.c
: Fix handling of-q
values. Remote Sensing bugzilla #587 [no longer available]tiffcmp.c
: Fixed floating point comparison logic as per bug Remote Sensing bugzilla #1191 [no longer available]tiff2pdf.c
: Fixed buffer overflow condition int2p_write_pdf_string()
as per bug Remote Sensing bugzilla #1196 [no longer available]
Contributed software changes¶
contrib/addtiffo/tif_overview.c
: Fix problems with odd sized output blocks inTIFF_DownSample_Subsampled()
(Remote Sensing bugzilla #1542 [no longer available]).contrib/dbs/xtiff/xtiff.c
: Make xtiff utility compilable. Though it is still far from the state of being working and useful.