laag-libtiff 4.0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +57 -0
- data/LICENSE.txt +21 -0
- data/README.org +34 -0
- data/ext/laag/libtiff/extconf.rb +13 -0
- data/laag-libtiff.gemspec +20 -0
- data/lib/laag/libtiff.rb +29 -0
- data/vendor/gitlab.com/libtiff/libtiff/.appveyor.yml +109 -0
- data/vendor/gitlab.com/libtiff/libtiff/.cvsignore +4 -0
- data/vendor/gitlab.com/libtiff/libtiff/.travis.yml +34 -0
- data/vendor/gitlab.com/libtiff/libtiff/CMakeLists.txt +764 -0
- data/vendor/gitlab.com/libtiff/libtiff/COMMITTERS +19 -0
- data/vendor/gitlab.com/libtiff/libtiff/COPYRIGHT +21 -0
- data/vendor/gitlab.com/libtiff/libtiff/ChangeLog +8073 -0
- data/vendor/gitlab.com/libtiff/libtiff/HOWTO-RELEASE +119 -0
- data/vendor/gitlab.com/libtiff/libtiff/HOWTO-SECURITY-RELEASE +19 -0
- data/vendor/gitlab.com/libtiff/libtiff/Makefile.am +91 -0
- data/vendor/gitlab.com/libtiff/libtiff/Makefile.in +995 -0
- data/vendor/gitlab.com/libtiff/libtiff/Makefile.vc +58 -0
- data/vendor/gitlab.com/libtiff/libtiff/README +61 -0
- data/vendor/gitlab.com/libtiff/libtiff/README.vms +12 -0
- data/vendor/gitlab.com/libtiff/libtiff/RELEASE-DATE +1 -0
- data/vendor/gitlab.com/libtiff/libtiff/SConstruct +171 -0
- data/vendor/gitlab.com/libtiff/libtiff/TODO +12 -0
- data/vendor/gitlab.com/libtiff/libtiff/VERSION +1 -0
- data/vendor/gitlab.com/libtiff/libtiff/aclocal.m4 +1194 -0
- data/vendor/gitlab.com/libtiff/libtiff/archive/html/man/bmp2tiff.1.html +121 -0
- data/vendor/gitlab.com/libtiff/libtiff/archive/html/man/gif2tiff.1.html +141 -0
- data/vendor/gitlab.com/libtiff/libtiff/archive/html/man/ras2tiff.1.html +139 -0
- data/vendor/gitlab.com/libtiff/libtiff/archive/html/man/sgi2tiff.1.html +147 -0
- data/vendor/gitlab.com/libtiff/libtiff/archive/html/man/tiffsv.1.html +207 -0
- data/vendor/gitlab.com/libtiff/libtiff/archive/man/bmp2tiff.1 +85 -0
- data/vendor/gitlab.com/libtiff/libtiff/archive/man/gif2tiff.1 +81 -0
- data/vendor/gitlab.com/libtiff/libtiff/archive/man/ras2tiff.1 +96 -0
- data/vendor/gitlab.com/libtiff/libtiff/archive/man/sgi2tiff.1 +93 -0
- data/vendor/gitlab.com/libtiff/libtiff/archive/man/tiffsv.1 +142 -0
- data/vendor/gitlab.com/libtiff/libtiff/archive/tools/bmp2tiff.c +937 -0
- data/vendor/gitlab.com/libtiff/libtiff/archive/tools/gif2tiff.c +591 -0
- data/vendor/gitlab.com/libtiff/libtiff/archive/tools/ras2tiff.c +338 -0
- data/vendor/gitlab.com/libtiff/libtiff/archive/tools/rasterfile.h +44 -0
- data/vendor/gitlab.com/libtiff/libtiff/archive/tools/sgi2tiff.c +337 -0
- data/vendor/gitlab.com/libtiff/libtiff/archive/tools/sgisv.c +318 -0
- data/vendor/gitlab.com/libtiff/libtiff/archive/tools/ycbcr.c +168 -0
- data/vendor/gitlab.com/libtiff/libtiff/autogen.sh +8 -0
- data/vendor/gitlab.com/libtiff/libtiff/build/.cvsignore +1 -0
- data/vendor/gitlab.com/libtiff/libtiff/build/CMakeLists.txt +25 -0
- data/vendor/gitlab.com/libtiff/libtiff/build/Makefile.am +32 -0
- data/vendor/gitlab.com/libtiff/libtiff/build/Makefile.in +680 -0
- data/vendor/gitlab.com/libtiff/libtiff/build/README +3 -0
- data/vendor/gitlab.com/libtiff/libtiff/build/travis-ci +108 -0
- data/vendor/gitlab.com/libtiff/libtiff/commit +233 -0
- data/vendor/gitlab.com/libtiff/libtiff/config/compile +347 -0
- data/vendor/gitlab.com/libtiff/libtiff/config/config.guess +1526 -0
- data/vendor/gitlab.com/libtiff/libtiff/config/config.sub +1658 -0
- data/vendor/gitlab.com/libtiff/libtiff/config/depcomp +791 -0
- data/vendor/gitlab.com/libtiff/libtiff/config/install-sh +507 -0
- data/vendor/gitlab.com/libtiff/libtiff/config/ltmain.sh +11156 -0
- data/vendor/gitlab.com/libtiff/libtiff/config/missing +215 -0
- data/vendor/gitlab.com/libtiff/libtiff/config/mkinstalldirs +161 -0
- data/vendor/gitlab.com/libtiff/libtiff/config/test-driver +127 -0
- data/vendor/gitlab.com/libtiff/libtiff/configure +23612 -0
- data/vendor/gitlab.com/libtiff/libtiff/configure.ac +1112 -0
- data/vendor/gitlab.com/libtiff/libtiff/configure.com +1357 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/.cvsignore +2 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/CMakeLists.txt +35 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/Makefile.am +31 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/Makefile.in +679 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/README +2 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/addtiffo/.cvsignore +5 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/addtiffo/CMakeLists.txt +34 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/addtiffo/Makefile.am +39 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/addtiffo/Makefile.in +652 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/addtiffo/Makefile.vc +28 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/addtiffo/README +142 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/addtiffo/addtiffo.c +181 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/addtiffo/tif_overview.c +916 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/addtiffo/tif_ovrcache.c +344 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/addtiffo/tif_ovrcache.h +103 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/.cvsignore +8 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/CMakeLists.txt +43 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/Makefile.am +46 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/Makefile.in +798 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/README +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/tiff-bi.c +91 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/tiff-grayscale.c +147 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/tiff-palette.c +284 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/tiff-rgb.c +201 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/xtiff/.cvsignore +2 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/xtiff/CMakeLists.txt +29 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/xtiff/Makefile.am +47 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/xtiff/Makefile.in +516 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/xtiff/README +6 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/xtiff/patchlevel.h +8 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/xtiff/xtiff.c +1290 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/xtiff/xtifficon.h +21 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/iptcutil/.cvsignore +5 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/iptcutil/CMakeLists.txt +35 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/iptcutil/Makefile.am +40 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/iptcutil/Makefile.in +650 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/iptcutil/README +25 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/iptcutil/iptcutil.c +954 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/iptcutil/test.iptc +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/iptcutil/test.txt +32 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/mfs/.cvsignore +2 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/mfs/CMakeLists.txt +27 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/mfs/Makefile.am +29 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/mfs/Makefile.in +499 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/mfs/README +37 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/mfs/mfs_file.c +586 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/pds/.cvsignore +2 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/pds/CMakeLists.txt +30 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/pds/Makefile.am +32 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/pds/Makefile.in +502 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/pds/README +90 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/pds/tif_imageiter.c +525 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/pds/tif_imageiter.h +64 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/pds/tif_pdsdirread.c +1131 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/pds/tif_pdsdirwrite.c +971 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/ras/.cvsignore +2 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/ras/CMakeLists.txt +28 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/ras/Makefile.am +30 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/ras/Makefile.in +500 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/ras/README +10 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/ras/ras2tif.c +254 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/ras/tif2ras.c +344 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/stream/.cvsignore +2 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/stream/CMakeLists.txt +28 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/stream/Makefile.am +30 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/stream/Makefile.in +500 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/stream/README +30 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/stream/tiffstream.cpp +238 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/stream/tiffstream.h +70 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/tags/.cvsignore +2 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/tags/CMakeLists.txt +32 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/tags/Makefile.am +33 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/tags/Makefile.in +503 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/tags/README +132 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/tags/listtif.c +39 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/tags/maketif.c +77 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/tags/xtif_dir.c +350 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/tags/xtiffio.h +59 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/tags/xtiffiop.h +72 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/win_dib/.cvsignore +2 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/win_dib/CMakeLists.txt +30 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/win_dib/Makefile.am +32 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/win_dib/Makefile.in +502 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/win_dib/Makefile.w95 +134 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/win_dib/README.Tiffile +31 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/win_dib/README.tiff2dib +51 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/win_dib/Tiffile.cpp +449 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/win_dib/tiff2dib.c +379 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/.cvsignore +5 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/BigTIFFProposal.html +99 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/CMakeLists.txt +87 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/Makefile.am +96 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/Makefile.in +798 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/TIFFTechNote2.html +707 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/addingtags.html +292 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/bigtiffdesign.html +80 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/bigtiffpr.html +77 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/bigtiffpr_images/esri.png +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/bigtiffpr_images/leica.png +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/bigtiffpr_images/safe.png +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/bigtiffpr_images/weogeo.png +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/bugs.html +61 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/build.html +737 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/contrib.html +209 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/document.html +52 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images.html +41 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/.cvsignore +2 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/CMakeLists.txt +46 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/Makefile.am +49 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/Makefile.in +572 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/back.gif +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/bali.jpg +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/cat.gif +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/cover.jpg +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/cramps.gif +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/dave.gif +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/info.gif +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/jello.jpg +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/jim.gif +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/note.gif +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/oxford.gif +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/quad.jpg +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/ring.gif +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/smallliz.jpg +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/strike.gif +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/warning.gif +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/index.html +122 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/internals.html +572 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/intro.html +68 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/libtiff.html +747 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/.cvsignore +2 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/CMakeLists.txt +108 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/HtmlDoc.cmake +50 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/Makefile.am +122 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/Makefile.in +642 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFClose.3tiff.html +87 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFDataWidth.3tiff.html +98 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFError.3tiff.html +106 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFFieldDataType.3tiff.html +89 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFFieldName.3tiff.html +86 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFFieldPassCount.3tiff.html +98 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFFieldReadCount.3tiff.html +101 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFFieldTag.3tiff.html +88 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFFieldWriteCount.3tiff.html +108 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFFlush.3tiff.html +113 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFGetField.3tiff.html +1969 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFOpen.3tiff.html +421 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFPrintDirectory.3tiff.html +225 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFRGBAImage.3tiff.html +319 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFReadDirectory.3tiff.html +218 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFReadEncodedStrip.3tiff.html +133 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFReadEncodedTile.3tiff.html +130 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFReadRGBAImage.3tiff.html +301 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFReadRGBAStrip.3tiff.html +208 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFReadRGBATile.3tiff.html +261 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFReadRawStrip.3tiff.html +109 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFReadRawTile.3tiff.html +111 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFReadScanline.3tiff.html +157 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFReadTile.3tiff.html +133 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFSetDirectory.3tiff.html +122 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFSetField.3tiff.html +1865 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFWarning.3tiff.html +108 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFWriteDirectory.3tiff.html +176 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFWriteEncodedStrip.3tiff.html +153 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFWriteEncodedTile.3tiff.html +147 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFWriteRawStrip.3tiff.html +144 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFWriteRawTile.3tiff.html +128 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFWriteScanline.3tiff.html +206 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFWriteTile.3tiff.html +115 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFbuffer.3tiff.html +116 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFcodec.3tiff.html +116 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFcolor.3tiff.html +975 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFmemory.3tiff.html +110 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFquery.3tiff.html +148 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFsize.3tiff.html +95 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFstrip.3tiff.html +129 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFswab.3tiff.html +110 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFtile.3tiff.html +141 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/fax2ps.1.html +252 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/fax2tiff.1.html +607 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/index.html +64 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/libtiff.3tiff.html +1150 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/pal2rgb.1.html +189 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/ppm2tiff.1.html +141 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/raw2tiff.1.html +510 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/rgb2ycbcr.1.html +155 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/thumbnail.1.html +148 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/tiff2bw.1.html +161 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/tiff2pdf.1.html +609 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/tiff2ps.1.html +639 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/tiff2rgba.1.html +162 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/tiffcmp.1.html +156 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/tiffcp.1.html +569 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/tiffcrop.1.html +684 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/tiffdither.1.html +196 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/tiffdump.1.html +145 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/tiffgt.1.html +551 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/tiffinfo.1.html +196 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/tiffmedian.1.html +183 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/tiffset.1.html +176 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/tiffsplit.1.html +102 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/misc.html +117 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/support.html +655 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/tools.html +137 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.4beta007.html +112 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.4beta016.html +122 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.4beta018.html +84 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.4beta024.html +139 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.4beta028.html +146 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.4beta029.html +86 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.4beta031.html +94 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.4beta032.html +90 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.4beta033.html +82 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.4beta034.html +68 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.4beta035.html +63 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.4beta036.html +117 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.5.1.html +75 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.5.2.html +108 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.5.3.html +132 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.5.4.html +88 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.5.5.html +155 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.5.6-beta.html +185 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.5.7.html +259 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.6.0.html +434 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.6.1.html +199 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.7.0.html +144 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.7.0alpha.html +249 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.7.0beta.html +162 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.7.0beta2.html +131 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.7.1.html +233 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.7.2.html +222 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.7.3.html +230 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.7.4.html +133 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.8.0.html +199 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.8.1.html +217 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.8.2.html +137 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.9.0.html +261 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.9.0beta.html +304 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.9.1.html +115 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.9.2.html +122 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.9.3.html +160 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.9.4.html +125 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.9.5.html +270 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v4.0.0.html +269 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v4.0.1.html +113 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v4.0.2.html +118 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v4.0.3.html +125 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v4.0.4.html +274 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v4.0.4beta.html +291 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v4.0.5.html +148 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v4.0.6.html +139 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v4.0.7.html +411 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v4.0.8.html +445 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v4.0.9.html +373 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff-4.pc.in +11 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/.cvsignore +22 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/CMakeLists.txt +165 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/Makefile.am +154 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/Makefile.in +966 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/Makefile.lcc +129 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/Makefile.vc +102 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/SConstruct +73 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/libtiff.def +168 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/libtiff.map +4 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/libtiffxx.map +4 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/mkg3states.c +454 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/mkspans.c +82 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/t4.h +292 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_aux.c +376 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_close.c +140 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_codec.c +165 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_color.c +309 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_compress.c +304 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_config.h-vms +46 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_config.h.cmake.in +261 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_config.h.in +410 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_config.vc.h +137 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_config.wince.h +71 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_dir.c +1767 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_dir.h +309 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_dirinfo.c +1070 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_dirread.c +5803 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_dirwrite.c +3024 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_dumpmode.c +143 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_error.c +88 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_extension.c +118 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_fax3.c +1648 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_fax3.h +540 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_fax3sm.c +1260 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_flush.c +118 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_getimage.c +3048 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_jbig.c +214 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_jpeg.c +2601 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_jpeg_12.c +69 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_luv.c +1765 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_lzma.c +495 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_lzw.c +1218 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_next.c +189 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_ojpeg.c +2563 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_open.c +725 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_packbits.c +311 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_pixarlog.c +1485 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_predict.c +881 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_predict.h +79 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_print.c +722 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_read.c +1572 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_stream.cxx +430 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_strip.c +389 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_swab.c +312 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_thunder.c +208 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_tile.c +322 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_unix.c +386 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_version.c +40 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_vms.c +611 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_warning.c +89 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_win32.c +476 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_wince.c +293 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_write.c +834 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_zip.c +476 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tiff.h +681 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tiffconf.h-vms +99 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tiffconf.h.cmake.in +130 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tiffconf.h.in +127 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tiffconf.vc.h +161 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tiffconf.wince.h +121 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tiffio.h +560 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tiffio.hxx +49 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tiffiop.h +445 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tiffvers.h +9 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tiffvers.h.in +9 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/uvcode.h +180 -0
- data/vendor/gitlab.com/libtiff/libtiff/m4/acinclude.m4 +851 -0
- data/vendor/gitlab.com/libtiff/libtiff/m4/ice_find_athena.m4 +187 -0
- data/vendor/gitlab.com/libtiff/libtiff/m4/libtool.m4 +8388 -0
- data/vendor/gitlab.com/libtiff/libtiff/m4/ltoptions.m4 +437 -0
- data/vendor/gitlab.com/libtiff/libtiff/m4/ltsugar.m4 +124 -0
- data/vendor/gitlab.com/libtiff/libtiff/m4/ltversion.m4 +23 -0
- data/vendor/gitlab.com/libtiff/libtiff/m4/lt~obsolete.m4 +99 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/.cvsignore +3 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/CMakeLists.txt +97 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/Makefile.am +94 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/Makefile.in +684 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFClose.3tiff +53 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFDataWidth.3tiff +74 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFError.3tiff +69 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFFieldDataType.3tiff +53 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFFieldName.3tiff +52 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFFieldPassCount.3tiff +73 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFFieldReadCount.3tiff +77 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFFieldTag.3tiff +56 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFFieldWriteCount.3tiff +88 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFFlush.3tiff +64 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFGetField.3tiff +229 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFOpen.3tiff +279 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFPrintDirectory.3tiff +70 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFRGBAImage.3tiff +286 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFReadDirectory.3tiff +164 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFReadEncodedStrip.3tiff +78 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFReadEncodedTile.3tiff +76 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFReadRGBAImage.3tiff +218 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFReadRGBAStrip.3tiff +170 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFReadRGBATile.3tiff +171 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFReadRawStrip.3tiff +64 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFReadRawTile.3tiff +65 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFReadScanline.3tiff +94 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFReadTile.3tiff +84 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFSetDirectory.3tiff +79 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFSetField.3tiff +217 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFWarning.3tiff +70 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFWriteDirectory.3tiff +138 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFWriteEncodedStrip.3tiff +102 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFWriteEncodedTile.3tiff +96 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFWriteRawStrip.3tiff +96 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFWriteRawTile.3tiff +84 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFWriteScanline.3tiff +154 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFWriteTile.3tiff +77 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFbuffer.3tiff +77 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFcodec.3tiff +82 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFcolor.3tiff +268 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFmemory.3tiff +90 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFquery.3tiff +142 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFsize.3tiff +59 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFstrip.3tiff +99 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFswab.3tiff +80 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFtile.3tiff +131 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/fax2ps.1 +159 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/fax2tiff.1 +286 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/libtiff.3tiff +545 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/pal2rgb.1 +111 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/ppm2tiff.1 +105 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/raw2tiff.1 +196 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/rgb2ycbcr.1 +99 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/thumbnail.1 +90 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/tiff2bw.1 +94 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/tiff2pdf.1 +254 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/tiff2ps.1 +294 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/tiff2rgba.1 +97 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/tiffcmp.1 +87 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/tiffcp.1 +317 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/tiffcrop.1 +571 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/tiffdither.1 +135 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/tiffdump.1 +81 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/tiffgt.1 +245 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/tiffinfo.1 +88 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/tiffmedian.1 +112 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/tiffset.1 +99 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/tiffsplit.1 +69 -0
- data/vendor/gitlab.com/libtiff/libtiff/nmake.opt +229 -0
- data/vendor/gitlab.com/libtiff/libtiff/port/.cvsignore +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/port/CMakeLists.txt +60 -0
- data/vendor/gitlab.com/libtiff/libtiff/port/Makefile.am +35 -0
- data/vendor/gitlab.com/libtiff/libtiff/port/Makefile.in +656 -0
- data/vendor/gitlab.com/libtiff/libtiff/port/Makefile.vc +44 -0
- data/vendor/gitlab.com/libtiff/libtiff/port/dummy.c +12 -0
- data/vendor/gitlab.com/libtiff/libtiff/port/getopt.c +125 -0
- data/vendor/gitlab.com/libtiff/libtiff/port/lfind.c +62 -0
- data/vendor/gitlab.com/libtiff/libtiff/port/libport.h +60 -0
- data/vendor/gitlab.com/libtiff/libtiff/port/snprintf.c +38 -0
- data/vendor/gitlab.com/libtiff/libtiff/port/strcasecmp.c +51 -0
- data/vendor/gitlab.com/libtiff/libtiff/port/strtoul.c +109 -0
- data/vendor/gitlab.com/libtiff/libtiff/port/strtoull.c +116 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/.cvsignore +12 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/CMakeLists.txt +382 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/Makefile.am +334 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/Makefile.in +1987 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/TiffSplitTest.cmake +34 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/TiffTest.cmake +63 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/TiffTestCommon.cmake +108 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/ascii_tag.c +177 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/check_tag.c +91 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/common.sh +122 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/custom_dir.c +247 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/images/README.txt +29 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/images/logluv-3c-16b.tiff +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/images/minisblack-1c-16b.tiff +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/images/minisblack-1c-8b.pgm +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/images/minisblack-1c-8b.tiff +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/images/minisblack-2c-8b-alpha.tiff +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/images/miniswhite-1c-1b.pbm +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/images/miniswhite-1c-1b.tiff +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/images/palette-1c-1b.tiff +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/images/palette-1c-4b.tiff +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/images/palette-1c-8b.tiff +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/images/quad-lzw-compat.tiff +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/images/quad-tile.jpg.tiff +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/images/rgb-3c-16b.tiff +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/images/rgb-3c-8b.ppm +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/images/rgb-3c-8b.tiff +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/long_tag.c +156 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/ppm2tiff_pbm.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/ppm2tiff_pgm.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/ppm2tiff_ppm.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/raw_decode.c +304 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/rewrite_tag.c +344 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/short_tag.c +205 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/strip.c +290 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/strip_rw.c +157 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/test_arrays.c +829 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/test_arrays.h +63 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2bw-palette-1c-8b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2bw-quad-lzw-compat.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2bw-rgb-3c-8b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2pdf.sh +6 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2ps-EPS1.sh +6 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2ps-PS1.sh +6 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2ps-PS2.sh +6 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2ps-PS3.sh +6 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2rgba-logluv-3c-16b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2rgba-minisblack-1c-16b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2rgba-minisblack-1c-8b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2rgba-minisblack-2c-8b-alpha.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2rgba-miniswhite-1c-1b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2rgba-palette-1c-1b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2rgba-palette-1c-4b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2rgba-palette-1c-8b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2rgba-quad-tile.jpg.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2rgba-rgb-3c-16b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2rgba-rgb-3c-8b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcp-g3-1d-fill.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcp-g3-1d.sh +6 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcp-g3-2d-fill.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcp-g3-2d.sh +6 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcp-g3.sh +6 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcp-g4.sh +6 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcp-logluv.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcp-lzw-compat.sh +6 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcp-split-join.sh +16 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcp-split.sh +13 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcp-thumbnail.sh +10 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-R90-logluv-3c-16b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-R90-minisblack-1c-16b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-R90-minisblack-1c-8b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-R90-minisblack-2c-8b-alpha.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-R90-miniswhite-1c-1b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-R90-palette-1c-1b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-R90-palette-1c-4b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-R90-palette-1c-8b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-R90-quad-tile.jpg.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-R90-rgb-3c-16b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-R90-rgb-3c-8b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-doubleflip-logluv-3c-16b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-doubleflip-minisblack-1c-16b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-doubleflip-minisblack-1c-8b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-doubleflip-minisblack-2c-8b-alpha.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-doubleflip-miniswhite-1c-1b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-doubleflip-palette-1c-1b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-doubleflip-palette-1c-4b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-doubleflip-palette-1c-8b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-doubleflip-quad-tile.jpg.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-doubleflip-rgb-3c-16b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-doubleflip-rgb-3c-8b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extract-logluv-3c-16b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extract-minisblack-1c-16b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extract-minisblack-1c-8b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extract-minisblack-2c-8b-alpha.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extract-miniswhite-1c-1b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extract-palette-1c-1b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extract-palette-1c-4b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extract-palette-1c-8b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extract-quad-tile.jpg.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extract-rgb-3c-16b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extract-rgb-3c-8b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extractz14-logluv-3c-16b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extractz14-minisblack-1c-16b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extractz14-minisblack-1c-8b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extractz14-minisblack-2c-8b-alpha.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extractz14-miniswhite-1c-1b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extractz14-palette-1c-1b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extractz14-palette-1c-4b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extractz14-palette-1c-8b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extractz14-quad-tile.jpg.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extractz14-rgb-3c-16b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extractz14-rgb-3c-8b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffdump.sh +6 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffinfo.sh +6 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tifftest.h +42 -0
- data/vendor/gitlab.com/libtiff/libtiff/tiff.spec +68 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/.cvsignore +27 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/CMakeLists.txt +125 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/Makefile.am +138 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/Makefile.in +955 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/Makefile.lcc +133 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/Makefile.vc +52 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/fax2ps.c +463 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/fax2tiff.c +491 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/pal2rgb.c +438 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/ppm2tiff.c +397 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/raw2tiff.c +690 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/rgb2ycbcr.c +397 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/thumbnail.c +691 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/tiff2bw.c +501 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/tiff2pdf.c +5594 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/tiff2ps.c +3106 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/tiff2rgba.c +569 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/tiffcmp.c +659 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/tiffcp.c +1913 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/tiffcrop.c +9231 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/tiffdither.c +347 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/tiffdump.c +889 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/tiffgt.c +486 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/tiffinfo.c +488 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/tiffinfoce.c +472 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/tiffmedian.c +918 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/tiffset.c +356 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/tiffsplit.c +305 -0
- metadata +692 -0
|
@@ -0,0 +1,185 @@
|
|
|
1
|
+
<HTML>
|
|
2
|
+
<HEAD>
|
|
3
|
+
<TITLE>
|
|
4
|
+
Changes in TIFF v3.5.6
|
|
5
|
+
</TITLE>
|
|
6
|
+
</HEAD>
|
|
7
|
+
|
|
8
|
+
<BODY BGCOLOR=white>
|
|
9
|
+
<FONT FACE="Helvetica, Arial, Sans">
|
|
10
|
+
<FONT FACE="Helvetica, Arial, Sans">
|
|
11
|
+
|
|
12
|
+
<BASEFONT SIZE=4>
|
|
13
|
+
<B><FONT SIZE=+3>T</FONT>IFF <FONT SIZE=+2>C</FONT>HANGE <FONT SIZE=+2>I</FONT>NFORMATION</B>
|
|
14
|
+
<BASEFONT SIZE=3>
|
|
15
|
+
|
|
16
|
+
<UL>
|
|
17
|
+
<HR SIZE=4 WIDTH=65% ALIGN=left>
|
|
18
|
+
<B>Current Version</B>: v3.5.6beta<BR>
|
|
19
|
+
<B>Previous Version</B>: <A HREF=v3.5.5.html>v3.5.5</a><BR>
|
|
20
|
+
<B>Master FTP Site</B>: <A HREF="ftp://ftp.onshore.com/pub/libtiff">ftp.onshore.com</a>, directory pub/libtiff</A><BR>
|
|
21
|
+
<B>Master HTTP Site</B>: <A HREF="http://www.simplesystems.org/libtiff//">http://www.simplesystems.org/libtiff/</a>
|
|
22
|
+
<HR SIZE=4 WIDTH=65% ALIGN=left>
|
|
23
|
+
</UL>
|
|
24
|
+
|
|
25
|
+
<P>
|
|
26
|
+
This document describes the changes made to the software between the
|
|
27
|
+
<I>previous</I> and <I>current</I> versions (see above).
|
|
28
|
+
If you don't find something listed here, then it was not done in this
|
|
29
|
+
timeframe, or it was not considered important enough to be mentioned.
|
|
30
|
+
The following information is located here:
|
|
31
|
+
<UL>
|
|
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 contrib</A>
|
|
36
|
+
<LI><A HREF="#lzwkit">Changes in the LZW compression kit</A>
|
|
37
|
+
</UL>
|
|
38
|
+
<p>
|
|
39
|
+
<P><HR WIDTH=65% ALIGN=left>
|
|
40
|
+
|
|
41
|
+
<A NAME="configure"><B><FONT SIZE=+3>C</FONT>HANGES IN THE SOFTWARE CONFIGURATION:</B></A>
|
|
42
|
+
|
|
43
|
+
<UL>
|
|
44
|
+
|
|
45
|
+
<LI> Added GNULDdso target and switched linux and freebsd to use it.
|
|
46
|
+
<LI> tools/Makefile.in: Modified to install properly on SGI.
|
|
47
|
+
<LI> configure: Fixed DSO test for Linux as per patch from
|
|
48
|
+
Jan Van Buggenhout <chipzz@Ace.ULYSSIS.Student.KULeuven.Ac.Be>.
|
|
49
|
+
|
|
50
|
+
</UL>
|
|
51
|
+
|
|
52
|
+
<P><HR WIDTH=65% ALIGN=left>
|
|
53
|
+
|
|
54
|
+
<A NAME="libtiff"><B><FONT SIZE=+3>C</FONT>HANGES IN LIBTIFF:</B></A>
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
<UL>
|
|
58
|
+
|
|
59
|
+
<LI> tif_dir.c: Clear TIFF_ISTILED flag in TIFFDefaultDirectory
|
|
60
|
+
as per http://bugzilla.remotesensing.org/show_bug.cgi?id=18
|
|
61
|
+
from vandrove@vc.cvut.cz.
|
|
62
|
+
|
|
63
|
+
<LI> Modified tif_packbits.c decoding to avoid overrunning the
|
|
64
|
+
output buffer, and to issue a warning if data needs to be
|
|
65
|
+
discarded. See http://bugzilla.remotesensing.org/show_bug.cgi?id=18
|
|
66
|
+
|
|
67
|
+
<LI> Modified TIFFClientOpen() to emit an error on an attempt to
|
|
68
|
+
open a comperessed file for update (O_RDWR/r+) access. This is
|
|
69
|
+
because the compressor/decompressor code gets very confused when
|
|
70
|
+
the mode is O_RDWR, assuming this means writing only. See
|
|
71
|
+
bug http://bugzilla.remotesensing.org/show_bug.cgi?id=13
|
|
72
|
+
|
|
73
|
+
<LI> Applied patch for 0x0000 sequences in tif_fax3.h's definition
|
|
74
|
+
of EXPAND1D() as per bug 11 (from Roman).
|
|
75
|
+
|
|
76
|
+
<LI> Fixed tiffcomp.h to avoid win32 stuff if unix #defined, to improve
|
|
77
|
+
cygwin compatibility.
|
|
78
|
+
|
|
79
|
+
<LI> Applied patch from Roman Shpount to tif_fax3.c. This seems to
|
|
80
|
+
be a proper fix to the buffer sizing problem. See
|
|
81
|
+
http://bugzilla.remotesensing.org/show_bug.cgi?id=11
|
|
82
|
+
|
|
83
|
+
<LI> Fixed tif_getimage.c to fix overrun bug with YCbCr images without
|
|
84
|
+
downsampling. http://bugzilla.remotesensing.org/show_bug.cgi?id=10
|
|
85
|
+
Thanks to Nick Lamb <njl98r@ecs.soton.ac.uk> for reporting the
|
|
86
|
+
bug and proving the patch.
|
|
87
|
+
|
|
88
|
+
<LI> Fixed tif_jpeg.c so avoid destroying the decompressor before
|
|
89
|
+
we are done access data thanks to bug report from:
|
|
90
|
+
Michael Eckstein <eckstein@gepro.cz>.
|
|
91
|
+
|
|
92
|
+
<LI> tif_open.c: Don't set MMAP for O_RDWR files.
|
|
93
|
+
|
|
94
|
+
<LI> tif_open.c: Set STRIPCHOP_DEFAULT for O_RDWR as well as O_RDONLY
|
|
95
|
+
so that files opened for update can be strip chopped too.
|
|
96
|
+
|
|
97
|
+
<LI> tif_read.c: fixed up bug with files missing rowsperstrip and
|
|
98
|
+
the strips per separation fix done a few weeks ago.
|
|
99
|
+
|
|
100
|
+
<LI> Tentatively added support for SAMPLEFORMAT_COMPLEXIEEEFP, and
|
|
101
|
+
SAMPLEFORMAT_COMPLEXINT.
|
|
102
|
+
|
|
103
|
+
<LI> index.html, bugs.html: added bugzilla info.
|
|
104
|
+
|
|
105
|
+
<LI> tif_read.c: fix subtle bug with determining the number of
|
|
106
|
+
rows for strips that are the last strip in a separation but
|
|
107
|
+
not the last strip of all in TIFFReadEncodedStrip().
|
|
108
|
+
|
|
109
|
+
<LI> Applied 16/32 bit fix to tif_fax3.c. Fix supplied by
|
|
110
|
+
Peter Skarpetis <peters@serendipity-software.com.au>
|
|
111
|
+
|
|
112
|
+
<LI> Modified tiffio.h logic with regard to including windows.h. It
|
|
113
|
+
won't include it when building with __CYGWIN__.
|
|
114
|
+
|
|
115
|
+
<LI> README: update to mention www.libtiff.org, don't list Sam's old
|
|
116
|
+
email address.
|
|
117
|
+
|
|
118
|
+
<LI> libtiff/tif_dirread.c: Don't use estimate strip byte count for
|
|
119
|
+
one tile/strip images with an offset, and byte count of zero. These
|
|
120
|
+
could be "unpopulated" images.
|
|
121
|
+
|
|
122
|
+
<LI> tif_win32.c: Applied patch to fix overreads and ovverwrites
|
|
123
|
+
caught by BoundsChecker. From Arvan Pritchard
|
|
124
|
+
<arvan.pritchard@infomatix.co.uk> (untested).
|
|
125
|
+
|
|
126
|
+
<LI> tif_getimage.c: Applied patch to silence VC6 warnings. From
|
|
127
|
+
Arvan Pritchard <arvan.pritchard@informatix.co.uk>
|
|
128
|
+
|
|
129
|
+
<LI> tif_lzw.c: Applied patch to silence VC6 warnings. From
|
|
130
|
+
Arvan Pritchard <arvan.pritchard@informatix.co.uk>
|
|
131
|
+
|
|
132
|
+
<LI> libtiff/tif_apple.c: Applied "Carbon" support patches supplied by
|
|
133
|
+
Leonard Rosenthol <leonardr@lazerware.com>. May interfere
|
|
134
|
+
with correct building on older systems. If so, please let me know.
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
</UL>
|
|
138
|
+
|
|
139
|
+
<P><HR WIDTH=65% ALIGN=left>
|
|
140
|
+
|
|
141
|
+
<A NAME="tools"><B><FONT SIZE=+3>C</FONT>HANGES IN THE TOOLS:</B></A>
|
|
142
|
+
|
|
143
|
+
<UL>
|
|
144
|
+
|
|
145
|
+
<LI> tools/rgb2ycbcr.c: fixed output strip size to account for vertical
|
|
146
|
+
roundup if rows_per_strip not a multiple of vertical sample size.
|
|
147
|
+
|
|
148
|
+
<LI> tools/tiffsplit.c: Copy TIFFTAG_SAMPLEFORMAT.
|
|
149
|
+
|
|
150
|
+
<LI> Modified tiff2bw to ensure portions add to 100%, and that
|
|
151
|
+
white is properly recovered. See bug
|
|
152
|
+
http://bugzilla.remotesensing.org/show_bug.cgi?id=15 Patch
|
|
153
|
+
c/o Stanislav Brabec <utx@penguin.cz>
|
|
154
|
+
|
|
155
|
+
</UL>
|
|
156
|
+
|
|
157
|
+
<P><HR WIDTH=65% ALIGN=left>
|
|
158
|
+
|
|
159
|
+
<A NAME="contrib"><B><FONT SIZE=+3>C</FONT>HANGES IN CONTRIB:</B></A>
|
|
160
|
+
|
|
161
|
+
<UL>
|
|
162
|
+
|
|
163
|
+
<LI> contrib/addtiffo: Added "averaging" resampling option.
|
|
164
|
+
|
|
165
|
+
<LI> Added contrib/stream (stream io) code submitted by Avi Bleiweiss.
|
|
166
|
+
|
|
167
|
+
</UL>
|
|
168
|
+
|
|
169
|
+
<P><HR WIDTH=65% ALIGN=left>
|
|
170
|
+
|
|
171
|
+
<A NAME="lzwkit"><B><FONT SIZE=+3>C</FONT>HANGES IN THE LZW COMPRESSION KIT</B></A>
|
|
172
|
+
<UL>
|
|
173
|
+
|
|
174
|
+
<LI> updated tif_dir.c to reflect changes to no-lzw tif_dir.c
|
|
175
|
+
|
|
176
|
+
</UL>
|
|
177
|
+
|
|
178
|
+
<A HREF="index.html"><IMG SRC="images/back.gif"></A> TIFF home page.<BR>
|
|
179
|
+
|
|
180
|
+
<HR>
|
|
181
|
+
|
|
182
|
+
Last updated $Date: 2016-09-25 20:05:45 $.
|
|
183
|
+
|
|
184
|
+
</BODY>
|
|
185
|
+
</HTML>
|
|
@@ -0,0 +1,259 @@
|
|
|
1
|
+
<HTML>
|
|
2
|
+
<HEAD>
|
|
3
|
+
<TITLE>
|
|
4
|
+
Changes in TIFF v3.5.7
|
|
5
|
+
</TITLE>
|
|
6
|
+
</HEAD>
|
|
7
|
+
|
|
8
|
+
<BODY BGCOLOR=white>
|
|
9
|
+
<FONT FACE="Helvetica, Arial, Sans">
|
|
10
|
+
<FONT FACE="Helvetica, Arial, Sans">
|
|
11
|
+
|
|
12
|
+
<BASEFONT SIZE=4>
|
|
13
|
+
<B><FONT SIZE=+3>T</FONT>IFF <FONT SIZE=+2>C</FONT>HANGE <FONT SIZE=+2>I</FONT>NFORMATION</B>
|
|
14
|
+
<BASEFONT SIZE=3>
|
|
15
|
+
|
|
16
|
+
<UL>
|
|
17
|
+
<HR SIZE=4 WIDTH=65% ALIGN=left>
|
|
18
|
+
<B>Current Version</B>: v3.5.7<BR>
|
|
19
|
+
<B>Previous Version</B>: <A HREF=v3.5.6-beta.html>v3.5.6 Beta</a><BR>
|
|
20
|
+
<B>Master FTP Site</B>: <A HREF="ftp://download.osgeo.org/libtiff">download.osgeo.org</a>, directory pub/libtiff</A><BR>
|
|
21
|
+
<B>Master HTTP Site</B>: <A HREF="http://www.simplesystems.org/libtiff//">http://www.simplesystems.org/libtiff/</a>
|
|
22
|
+
<HR SIZE=4 WIDTH=65% ALIGN=left>
|
|
23
|
+
</UL>
|
|
24
|
+
|
|
25
|
+
<P>
|
|
26
|
+
This document describes the changes made to the software between the
|
|
27
|
+
<I>previous</I> and <I>current</I> versions (see above).
|
|
28
|
+
If you don't find something listed here, then it was not done in this
|
|
29
|
+
timeframe, or it was not considered important enough to be mentioned.
|
|
30
|
+
The following information is located here:
|
|
31
|
+
<UL>
|
|
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="#lzwkit">Changes in the LZW compression kit</A>
|
|
36
|
+
</UL>
|
|
37
|
+
<p>
|
|
38
|
+
<P><HR WIDTH=65% ALIGN=left>
|
|
39
|
+
|
|
40
|
+
<!--------------------------------------------------------------------------->
|
|
41
|
+
|
|
42
|
+
<A NAME="configure"><B><FONT SIZE=+3>C</FONT>HANGES IN THE SOFTWARE CONFIGURATION:</B></A>
|
|
43
|
+
|
|
44
|
+
<UL>
|
|
45
|
+
<li> libtiff/libtiff.def: Brent Roman submitted new version adding
|
|
46
|
+
serveral missing entry points. Also add a few other entry points
|
|
47
|
+
later.
|
|
48
|
+
|
|
49
|
+
<li> configure, Makefile.in, etc: added support for OPTIMIZER being
|
|
50
|
+
set from config.site.
|
|
51
|
+
<li> config.guess: updated wholesale to an FSF version apparently
|
|
52
|
+
from 1998 (as opposed to 1994). This is mainly inspired by
|
|
53
|
+
providing for MacOS X support.
|
|
54
|
+
|
|
55
|
+
<li> configure/config.site: modified to check if -lm is needed for
|
|
56
|
+
MACHDEPLIBS if not supplied by config.site. Needed for Darwin.
|
|
57
|
+
<li> libtiff/tiff.h: Applied hac to try and resolve the problem
|
|
58
|
+
with the inttypes.h include file on AIX. (Bug 39)
|
|
59
|
+
|
|
60
|
+
<li> configure, *Makefile.in: Various changes to improve configuration
|
|
61
|
+
for HP/UX specifically, and also in general. (Bug 40) They include:
|
|
62
|
+
<ul>
|
|
63
|
+
<li> Try to handle /usr/bin/sh instead of /bin/sh where necessary.
|
|
64
|
+
<li> Upgrade to HP/UX 10.x+ compiler, linker and dso options.
|
|
65
|
+
<li> Fixed mmap() test to avoid MMAP_FIXED ... it isn't available on HP
|
|
66
|
+
<li> Use -${MAKEFLAGS} in sub makes from makefiles.
|
|
67
|
+
<li> Fixed SCRIPT_SH/SHELL handling.
|
|
68
|
+
</ul>
|
|
69
|
+
<li> configure: Changes for DSO generation on AIX provided by
|
|
70
|
+
John Marquart <jomarqua@indiana.edu>.
|
|
71
|
+
|
|
72
|
+
<li> configure, libtiff/Makefile.in: Modified to build DSOs properly
|
|
73
|
+
on Darwin thanks to Robert Krajewski (rpk@alum.mit.edu) and
|
|
74
|
+
Keisuke Fujii (fujiik@jlcuxf.kek.jp).
|
|
75
|
+
|
|
76
|
+
<li> configure, libtiff/Makefile.in: applied OpenBSD patches as per bug 61.
|
|
77
|
+
|
|
78
|
+
<li> Makefile.in: added DESTDIR support as per bug 60.
|
|
79
|
+
|
|
80
|
+
<li> libtiff/tif_jpeg.c: Define HAVE_BOOLEAN on windows if RPCNDR.H
|
|
81
|
+
has been included.
|
|
82
|
+
<li> man/Makefile.in: add TIFFClientOpen link as per debian submitted
|
|
83
|
+
bug 66.
|
|
84
|
+
<li> libtiff/Makefile.in: Fixed @DSOSUB_VERSION to be @DSOSUF_VERSION@
|
|
85
|
+
in two places.
|
|
86
|
+
</UL>
|
|
87
|
+
|
|
88
|
+
<P><HR WIDTH=65% ALIGN=left>
|
|
89
|
+
|
|
90
|
+
<!--------------------------------------------------------------------------->
|
|
91
|
+
|
|
92
|
+
<A NAME="libtiff"><B><FONT SIZE=+3>C</FONT>HANGES IN LIBTIFF:</B></A>
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
<UL>
|
|
96
|
+
<li> tif_fax3.c: keep rw_mode flag internal to fax3 state to remember
|
|
97
|
+
whether we are encoding or decoding. This is to ensure graceful
|
|
98
|
+
recovery if TIFFClientOpen() discovers an attempt to open a compressed
|
|
99
|
+
file for "r+" access, and subsequently close it, as it resets the
|
|
100
|
+
tif_mode flag to O_RDONLY in this case to avoid writes, confusing the
|
|
101
|
+
compressor's concept of whether it is in encode or decode mode.
|
|
102
|
+
<li> tif_luv.c/tiff.h/tiffio.h:
|
|
103
|
+
New version of TIFF LogLuv (SGILOG) modules contributed by Greg Ward
|
|
104
|
+
(greg@shutterfly.com). He writes:
|
|
105
|
+
|
|
106
|
+
<ol>
|
|
107
|
+
<li> I improved the gamut-mapping function in tif_luv.c for imaginary
|
|
108
|
+
colors, because some images were being super-saturated on the input
|
|
109
|
+
side and this resulted in some strange color shifts in the output.
|
|
110
|
+
|
|
111
|
+
<li> I added a psuedotag in tiff.h to control random dithering during
|
|
112
|
+
LogLuv encoding. This is turned off by default for 32-bit LogLuv and
|
|
113
|
+
on for 24-bit LogLuv output. Dithering improves the average color
|
|
114
|
+
accuracy over the image.
|
|
115
|
+
|
|
116
|
+
<li> I added a #define for LOG_LUV_PUBLIC, which is enabled by default in
|
|
117
|
+
tiffio.h, to expose internal routines for converting between LogLuv and
|
|
118
|
+
XYZ coordinates. This is helpful for writing more efficient,
|
|
119
|
+
specialized conversion routines, especially for reading LogLuv files.
|
|
120
|
+
</ol>
|
|
121
|
+
|
|
122
|
+
<li> libtiff/tif_dirinfo.c: don't declare tiffFieldInfo static on VMS.
|
|
123
|
+
|
|
124
|
+
<li> Added TIFFTAG_COPYRIGHT support.
|
|
125
|
+
<li> tif_getimage.c: Added support for 16bit minisblack/miniswhite
|
|
126
|
+
images in RGBA interface.
|
|
127
|
+
<li> libtiff/tif_dirinfo.c: removed duplicate TIFFTAG_PHOTOSHOP as per
|
|
128
|
+
bug 44.
|
|
129
|
+
<li> libtiff/tif_dirwrite.c: Added support for TIFF_VARIABLE2 in the
|
|
130
|
+
case of writing TIFF_BYTE/TIFF_SBYTE fields as per bug 43.
|
|
131
|
+
|
|
132
|
+
<li> libtiff/tif_dirinfo.c: Modified the TIFF_BYTE definition for
|
|
133
|
+
TIFFTAG_PHOTOSHOP to use a writecount of TIFF_VARIABLE2 (-3) to
|
|
134
|
+
force use of uint32 counts instead of short counts.
|
|
135
|
+
|
|
136
|
+
<li> libtiff/tif_dirinfo.c: moved pixar and copyright flags to
|
|
137
|
+
ensure everything is in order.
|
|
138
|
+
|
|
139
|
+
<li> Integrated experimental OJPEG support from Scott Marovich of HP.
|
|
140
|
+
|
|
141
|
+
<li> libtiff/tif_open.c: Seek back to zero after failed read,
|
|
142
|
+
before writing header.
|
|
143
|
+
|
|
144
|
+
<li> libtiff/tiff.h, libtiff/tif_fax3.c: added check for __LP64__
|
|
145
|
+
when checking for 64 bit architectures as per bugzilla bug 67.
|
|
146
|
+
<li> libtiff/tif_getimage.c: Use memmove() instead of TIFFmemcpy()
|
|
147
|
+
in TIFFReadRGBATile() to avoid issues in cases of overlapping
|
|
148
|
+
buffers. See Bug 69 in Bugzilla.
|
|
149
|
+
<li> libtiff/tif_getimage.c: Don't complain for CMYK (separated)
|
|
150
|
+
images with more than four samples per pixel as per bug 73.
|
|
151
|
+
|
|
152
|
+
<li> libtiff/tif_getimage.c: relax handling of contig case where
|
|
153
|
+
there are extra samples that are supposed to be ignored as per bug 75. This
|
|
154
|
+
should now work for 8bit greyscale or palletted images.
|
|
155
|
+
|
|
156
|
+
<li> libtiff/tif_packbits.c: fixed memory overrun error as per bug 77.
|
|
157
|
+
|
|
158
|
+
<li> libtiff/tif_getimage.c: Fixed problem with reading strips or
|
|
159
|
+
tiles that don't start on a tile boundary. Fix contributed by
|
|
160
|
+
Josep Vallverdu (from HP), and further described in bug 47.
|
|
161
|
+
|
|
162
|
+
<li> libtif/tif_fax3.c: Removed #ifdef PURIFY logic, and modified to
|
|
163
|
+
always use the "safe" version, even if there is a very slight
|
|
164
|
+
cost in performance as per bug 54.
|
|
165
|
+
<li> libtiff/tif_lzw.c: added dummy LZWSetupEncode() to report an
|
|
166
|
+
error about LZW not being available.
|
|
167
|
+
|
|
168
|
+
<li> libtiff/tif_dir.c: propagate failure to initialize compression
|
|
169
|
+
back from TIFFSetField() as an error status, so applications can
|
|
170
|
+
detect failure.
|
|
171
|
+
|
|
172
|
+
<li> libtiff/tif_lzw.c: Avoid MS VC++ 5.0 optimization bug as per bug 78.
|
|
173
|
+
|
|
174
|
+
<li> libtiff/tif_dirwrite.c: added TIFFRewriteDirectory() function.
|
|
175
|
+
Updated TIFFWriteDirectory man page to include TIFFRewriteDirectory.
|
|
176
|
+
|
|
177
|
+
<li> libtiff/tiff.h: I have created COMPRESSION_CCITT_T4,
|
|
178
|
+
COMPRESSION_CCITT_T6, TIFFTAG_T4OPTIONS and TIFFTAG_T6OPTIONS aliases
|
|
179
|
+
in keeping with TIFF 6.0 standard in tiff.h as per bug 83.
|
|
180
|
+
|
|
181
|
+
<li> Added PHOTOMETRIC_ITULAB as per bug 90.
|
|
182
|
+
|
|
183
|
+
</UL>
|
|
184
|
+
|
|
185
|
+
<P><HR WIDTH=65% ALIGN=left>
|
|
186
|
+
|
|
187
|
+
<!-------------------------------------------------------------------------->
|
|
188
|
+
|
|
189
|
+
<A NAME="tools"><B><FONT SIZE=+3>C</FONT>HANGES IN THE TOOLS:</B></A>
|
|
190
|
+
|
|
191
|
+
<UL>
|
|
192
|
+
<li> Brent Roman contributed updated tiffcp utility (and tiffcp.1)
|
|
193
|
+
with support for extracting subimages with the ,n syntax, and also
|
|
194
|
+
adding the -b bias removal flag.
|
|
195
|
+
<li> tiff2ps.c/tiff2ps.1: Substantial changes to tiff2ps by
|
|
196
|
+
Bruce A. Mallett, including a faster encoder, fixes for level
|
|
197
|
+
2 PostScript, and support for the imagemask operator.
|
|
198
|
+
<li> fax2ps.c: Helge (libtiff at oldach.net) submitted fix
|
|
199
|
+
that corrects behaviour for non-Letter paper
|
|
200
|
+
sizes. (Bug 35) It fixes two problems:
|
|
201
|
+
<br>
|
|
202
|
+
Without scaling (-S) the fax is now centered on the page size specified
|
|
203
|
+
with -H and/or -W. Before, fax2ps was using an obscure and practially
|
|
204
|
+
useless algorithm to allocate the image relative to Letter sized paper
|
|
205
|
+
which sometime sled to useless whitespace on the paper, while at the
|
|
206
|
+
same time cutting of the faxes printable area at the opposite border.
|
|
207
|
+
<br>
|
|
208
|
+
|
|
209
|
+
Second, scaling now preserves aspect ratio, which makes unusual faxes
|
|
210
|
+
(in particular short ones) print properly.
|
|
211
|
+
|
|
212
|
+
<li> thumbnail.c: changed default output compression
|
|
213
|
+
to packbits from LZW since LZW isn't generally available.
|
|
214
|
+
<li> tiff2rgba.c: added -n flag to avoid emitting alpha component. Also added
|
|
215
|
+
a man page for tiff2rgba.
|
|
216
|
+
|
|
217
|
+
<li> tiffcmp.c: Fixed multi samples per pixel support for ContigCompare
|
|
218
|
+
as per bug 53.
|
|
219
|
+
Updated bug section of tiffcmp.1 to note tiled file issues.
|
|
220
|
+
|
|
221
|
+
<li> libtiff/tif_getimage.c: Fixed so that failure is properly
|
|
222
|
+
reported by gtTileContig, gtStripContig, gtTileSeparate and
|
|
223
|
+
gtStripSeparate as per bug 51.
|
|
224
|
+
|
|
225
|
+
|
|
226
|
+
</UL>
|
|
227
|
+
|
|
228
|
+
<P><HR WIDTH=65% ALIGN=left>
|
|
229
|
+
|
|
230
|
+
<!--------------------------------------------------------------------------->
|
|
231
|
+
|
|
232
|
+
<A NAME="lzwkit"><B><FONT SIZE=+3>C</FONT>HANGES IN THE LZW COMPRESSION KIT:</B></A>
|
|
233
|
+
<UL>
|
|
234
|
+
<LI> Rewrote lzw patching process so that is required to enable full
|
|
235
|
+
LZW support is to drop the tif_lzw.c from the
|
|
236
|
+
libtiff-lzw-compression-kit over the one in the libtiff directory.
|
|
237
|
+
|
|
238
|
+
<LI> Some changes were made to make recovery from failure to
|
|
239
|
+
initialize the LZW compressor more graceful.
|
|
240
|
+
|
|
241
|
+
<LI> Note that as distributed libtiff support LZW decompression, but
|
|
242
|
+
not LZW compression.
|
|
243
|
+
</UL>
|
|
244
|
+
|
|
245
|
+
<!--------------------------------------------------------------------------->
|
|
246
|
+
|
|
247
|
+
<A NAME="contrib"><B><FONT SIZE=+3>C</FONT>HANGES IN THE CONTRIB AREA:</B></A>
|
|
248
|
+
<UL>
|
|
249
|
+
<li> Fixed distribution to include contrib/addtiffo/tif_ovrcache.{c,h}.
|
|
250
|
+
</UL>
|
|
251
|
+
|
|
252
|
+
<A HREF="index.html"><IMG SRC="images/back.gif"></A> TIFF home page.<BR>
|
|
253
|
+
|
|
254
|
+
<HR>
|
|
255
|
+
|
|
256
|
+
Last updated $Date: 2016-09-25 20:05:45 $.
|
|
257
|
+
|
|
258
|
+
</BODY>
|
|
259
|
+
</HTML>
|
|
@@ -0,0 +1,434 @@
|
|
|
1
|
+
<HTML>
|
|
2
|
+
<HEAD>
|
|
3
|
+
<TITLE>
|
|
4
|
+
Changes in TIFF v3.6.0
|
|
5
|
+
</TITLE>
|
|
6
|
+
</HEAD>
|
|
7
|
+
|
|
8
|
+
<BODY BGCOLOR=white>
|
|
9
|
+
<FONT FACE="Helvetica, Arial, Sans">
|
|
10
|
+
<FONT FACE="Helvetica, Arial, Sans">
|
|
11
|
+
|
|
12
|
+
<BASEFONT SIZE=4>
|
|
13
|
+
<B><FONT SIZE=+3>T</FONT>IFF <FONT SIZE=+2>C</FONT>HANGE <FONT SIZE=+2>I</FONT>NFORMATION</B>
|
|
14
|
+
<BASEFONT SIZE=3>
|
|
15
|
+
|
|
16
|
+
<UL>
|
|
17
|
+
<HR SIZE=4 WIDTH=65% ALIGN=left>
|
|
18
|
+
<B>Current Version</B>: v3.6.0<BR>
|
|
19
|
+
<B>Previous Version</B>: <A HREF=v3.5.7.html>v3.5.7</a><BR>
|
|
20
|
+
<B>Master FTP Site</B>: <A HREF="ftp://download.osgeo.org/libtiff">
|
|
21
|
+
download.osgeo.org</a>, directory pub/libtiff</A><BR>
|
|
22
|
+
<B>Master HTTP Site</B>: <A HREF="http://www.simplesystems.org/libtiff/">
|
|
23
|
+
http://www.simplesystems.org/libtiff/</a>
|
|
24
|
+
<HR SIZE=4 WIDTH=65% ALIGN=left>
|
|
25
|
+
</UL>
|
|
26
|
+
|
|
27
|
+
<P>
|
|
28
|
+
This document describes the changes made to the software between the
|
|
29
|
+
<I>previous</I> and <I>current</I> versions (see above).
|
|
30
|
+
If you don't find something listed here, then it was not done in this
|
|
31
|
+
timeframe, or it was not considered important enough to be mentioned.
|
|
32
|
+
The following information is located here:
|
|
33
|
+
<UL>
|
|
34
|
+
<LI><A HREF="#hightlights">Major Changes</A>
|
|
35
|
+
<LI><A HREF="#configure">Changes in the software configuration</A>
|
|
36
|
+
<LI><A HREF="#libtiff">Changes in libtiff</A>
|
|
37
|
+
<LI><A HREF="#tools">Changes in the tools</A>
|
|
38
|
+
<LI><A HREF="#contrib">Changes in the contrib area</A>
|
|
39
|
+
<LI><A HREF="#lzwkit">Changes in the LZW compression kit</A>
|
|
40
|
+
</UL>
|
|
41
|
+
<p>
|
|
42
|
+
<P><HR WIDTH=65% ALIGN=left>
|
|
43
|
+
|
|
44
|
+
<!--------------------------------------------------------------------------->
|
|
45
|
+
|
|
46
|
+
<A NAME="highlights"><B><FONT SIZE=+3>M</FONT>AJOR CHANGES:</B></A>
|
|
47
|
+
|
|
48
|
+
<ul>
|
|
49
|
+
<li> New utility <a href=./man/raw2tiff.1.html>raw2tiff</a>
|
|
50
|
+
for converting raw rasters into TIFF files.
|
|
51
|
+
<li> Lots of new <a href=./man/tiff2ps.1.html>tiff2ps</a> options.
|
|
52
|
+
<li> Lots of new <a href=./man/fax2tiff.1.html>fax2tiff</a> options.
|
|
53
|
+
<li> Lots of bug fixes for LZW, JPEG and OJPEG compression.
|
|
54
|
+
</ul>
|
|
55
|
+
|
|
56
|
+
<h3>Custom Tag Support</h3>
|
|
57
|
+
|
|
58
|
+
The approach to extending libtiff with custom tags has changed radically.
|
|
59
|
+
Previously, all internally supported TIFF tags had a place in the
|
|
60
|
+
private TIFFDirectory structure within libtiff to hold the values (if read),
|
|
61
|
+
and a "field number" (ie. FIELD_SUBFILETYPE) used to identify that tag.
|
|
62
|
+
However, every time a new tag was added to the core, the size of the
|
|
63
|
+
TIFFDirectory structure would changing, breaking any dynamically linked
|
|
64
|
+
software that used the private data structures.<p>
|
|
65
|
+
|
|
66
|
+
Also, any tag not recognised
|
|
67
|
+
by libtiff would not be read and accessable to applications without some
|
|
68
|
+
fairly complicated work on the applications part to pre-register the tags
|
|
69
|
+
as exemplified by the support for "Geo"TIFF tags by libgeotiff layered on
|
|
70
|
+
libtiff. <p>
|
|
71
|
+
|
|
72
|
+
Amoung other things this approach required the extension code
|
|
73
|
+
to access the private libtiff structures ... which made the higher level
|
|
74
|
+
non-libtiff code be locked into a specific version of libtiff at compile time.
|
|
75
|
+
This caused no end of bug reports!<p>
|
|
76
|
+
|
|
77
|
+
The new approach is for libtiff to read all tags from TIFF files. Those that
|
|
78
|
+
aren't recognised as "core tags" (those having an associated FIELD_ value,
|
|
79
|
+
and place for storage in the TIFFDirectory structure) are now read into a
|
|
80
|
+
dynamic list of extra tags (td_customValues in TIFFDirectory). When a new
|
|
81
|
+
tag code is encountered for the first time in a given TIFF file, a new
|
|
82
|
+
anonymous tag definition is created for the tag in the tag definition list.
|
|
83
|
+
The type, and some other metadata is worked out from the instance encountered.
|
|
84
|
+
These fields are known as "custom tags". <p>
|
|
85
|
+
|
|
86
|
+
Custom tags can be set and fetched normally using TIFFSetField() and
|
|
87
|
+
TIFFGetField(), and appear pretty much like normal tags to application code.
|
|
88
|
+
However, they have no impact on internal libtiff processing (such as
|
|
89
|
+
compression). Some utilities, such as tiffcp will now copy these custom
|
|
90
|
+
tags to the new output files. <p>
|
|
91
|
+
|
|
92
|
+
As well as the internal work with custom tags, new C API entry points
|
|
93
|
+
were added so that extension libraries, such as libgeotiff, could
|
|
94
|
+
define new tags more easily without accessing internal data structures.
|
|
95
|
+
Because tag handling of extension tags is done via the "custom fields"
|
|
96
|
+
mechanism as well, the definition provided externally mostly serves to provide
|
|
97
|
+
a meaningful name for the tag.
|
|
98
|
+
|
|
99
|
+
The addition of "custom tags" and the altered approach to extending libtiff
|
|
100
|
+
with externally defined tags is the primary reason for the shift to the
|
|
101
|
+
3.6.x version number from 3.5.x.<p>
|
|
102
|
+
|
|
103
|
+
<P><HR WIDTH=65% ALIGN=left>
|
|
104
|
+
<!--------------------------------------------------------------------------->
|
|
105
|
+
|
|
106
|
+
<A NAME="configure"><B><FONT SIZE=+3>C</FONT>HANGES IN THE SOFTWARE CONFIGURATION:</B></A>
|
|
107
|
+
|
|
108
|
+
<UL>
|
|
109
|
+
<li> configure, config.site: Fix for large files (>2GiB) support. New
|
|
110
|
+
option in the config.site: LARGEFILE="yes". Should be enougth for the large
|
|
111
|
+
files I/O.
|
|
112
|
+
|
|
113
|
+
<li> configure: Set -DPIXARLOG_SUPPORT option along with -DZIP_SUPPORT.
|
|
114
|
+
|
|
115
|
+
<li> html/Makefile.in: Updated to use groffhtml for generating html pages
|
|
116
|
+
from man pages.
|
|
117
|
+
|
|
118
|
+
<li> configure, libtiff/Makefile.in: Added SCO OpenServer 5.0.6 support
|
|
119
|
+
from John H. DuBois III.
|
|
120
|
+
|
|
121
|
+
<li> libtiff/{Makefile.vc, libtiff.def}: Missed declarations added.
|
|
122
|
+
|
|
123
|
+
<li> libtiff/Makefile.in, tools/Makefile.in: Shared library will not be
|
|
124
|
+
stripped when installing, utility binaries will do be stripped. As per bug 93.
|
|
125
|
+
|
|
126
|
+
<li> man/Makefile.in: Patch DESTDIR handling as per bug 95.
|
|
127
|
+
|
|
128
|
+
<li> configure: OpenBSD changes for Sparc64 and DSO version as per bug 96.
|
|
129
|
+
|
|
130
|
+
<li> config.site/configure: added support for OJPEG=yes option to enable
|
|
131
|
+
OJPEG support from config.site.
|
|
132
|
+
|
|
133
|
+
<li> config.guess, config.sub: Updated from ftp.gnu.org/pub/config.
|
|
134
|
+
|
|
135
|
+
<li> configure: Modify CheckForBigEndian so it can work in a cross
|
|
136
|
+
compiled situation.
|
|
137
|
+
|
|
138
|
+
<li> configure, libtiff/Makefile.in: Changes for building on MacOS 10.1
|
|
139
|
+
as per bug 94.
|
|
140
|
+
|
|
141
|
+
<li> html/Makefile.in: added missing images per bug 92.
|
|
142
|
+
|
|
143
|
+
<li> port/Makefile.in: fixed clean target per bug 92.
|
|
144
|
+
</UL>
|
|
145
|
+
|
|
146
|
+
<P><HR WIDTH=65% ALIGN=left>
|
|
147
|
+
|
|
148
|
+
<!--------------------------------------------------------------------------->
|
|
149
|
+
|
|
150
|
+
<A NAME="libtiff"><B><FONT SIZE=+3>C</FONT>HANGES IN LIBTIFF:</B></A>
|
|
151
|
+
|
|
152
|
+
<UL>
|
|
153
|
+
|
|
154
|
+
<li> libtiff/tif_getimage.c: New function <A
|
|
155
|
+
HREF="./man/TIFFReadRGBAImage.3t.html">TIFFReadRGBAImageOriented()</A>
|
|
156
|
+
implemented to retrieve raster array with user-specified origin position.
|
|
157
|
+
|
|
158
|
+
<li> libtiff/tif_fax3.c: Fix wrong line numbering.
|
|
159
|
+
|
|
160
|
+
<li> libtiff/tif_dirread.c: Check field counter against number of fields.
|
|
161
|
+
|
|
162
|
+
<li> Store a list of opened IFD to prevent directory looping.
|
|
163
|
+
|
|
164
|
+
<li> libtiff/tif_jpeg.c: modified segment_height calculation to always
|
|
165
|
+
be a full height tile for tiled images. Also changed error to just
|
|
166
|
+
be a warning.
|
|
167
|
+
|
|
168
|
+
<li> libtiff/tif_lzw.c: fixed so that decoder state isn't allocated till
|
|
169
|
+
LZWSetupDecode(). Needed to read LZW files in "r+" mode.
|
|
170
|
+
|
|
171
|
+
<li> libtiff/tif_dir.c: fixed up the tif_postdecode settings responsible
|
|
172
|
+
for byte swapping complex image data.
|
|
173
|
+
|
|
174
|
+
<li> libtiff/tif_open.c: Removed error if opening a compressed file
|
|
175
|
+
in update mode bug (198).
|
|
176
|
+
|
|
177
|
+
<li> libtiff/tif_write.c: TIFFWriteCheck() now fails if the image is
|
|
178
|
+
a pre-existing compressed image. That is, image writing to pre-existing
|
|
179
|
+
compressed images is not allowed.
|
|
180
|
+
|
|
181
|
+
<li> html/man/*.html: Web pages regenerated from man pages.
|
|
182
|
+
|
|
183
|
+
<li> libtiff/tif_jpeg.c: Hack to ensure that "boolean" is defined properly
|
|
184
|
+
on Windows so as to avoid the structure size mismatch error from libjpeg
|
|
185
|
+
(bug 188).
|
|
186
|
+
|
|
187
|
+
<li> libtiff/tiff.h: #ifdef USING_VISUALAGE around previous Visual Age
|
|
188
|
+
AIX porting hack as it screwed up gcc. (bug 39)
|
|
189
|
+
|
|
190
|
+
<li> libtiff/tiff.h: added COMPRESSION_JP2000 (34712) for LEAD tools
|
|
191
|
+
custom compression.
|
|
192
|
+
|
|
193
|
+
<li> libtiff/tif_dirread.c: Another fix for the fetching SBYTE arrays
|
|
194
|
+
by the TIFFFetchByteArray() function. (bug 52)
|
|
195
|
+
|
|
196
|
+
<li> libtiff/tif_dirread.c: Expand v[2] to v[4] in TIFFFetchShortPair()
|
|
197
|
+
as per bug 196.
|
|
198
|
+
|
|
199
|
+
<li> libtiff/tif_lzw.c: Additional consistency checking added in
|
|
200
|
+
LZWDecode() and LZWDecodeCompat() fixing bugs 190 and 100.
|
|
201
|
+
|
|
202
|
+
<li> libtiff/tif_lzw.c: Added check for valid code lengths in LZWDecode()
|
|
203
|
+
and LZWDecodeCompat(). Fixes bug 115.
|
|
204
|
+
|
|
205
|
+
<li> tif_getimage.c: Ensure that TIFFRGBAImageBegin() returns the
|
|
206
|
+
return code from the underlying pick function as per bug 177.
|
|
207
|
+
|
|
208
|
+
<li> libtiff/{tif_jpeg.c,tif_strip.c,tif_print.c}: Hacked tif_jpeg.c to
|
|
209
|
+
fetch TIFFTAG_YCBCRSUBSAMPLING from the jpeg data stream if it isn't
|
|
210
|
+
present in the tiff tags as per bug 168.
|
|
211
|
+
|
|
212
|
+
<li> libtiff/tif_jpeg.c: Fixed problem with setting of nrows in
|
|
213
|
+
JPEGDecode() as per bug 129.
|
|
214
|
+
|
|
215
|
+
<li> libtiff/tif_read.c, libtiff/tif_write.c: TIFFReadScanline() and
|
|
216
|
+
TIFFWriteScanline() now set tif_row explicitly in case the codec has
|
|
217
|
+
fooled with the value as per bug 129.
|
|
218
|
+
|
|
219
|
+
<li> libtiff/tif_ojpeg.c: Major upgrade from Scott. Details in bug 156.
|
|
220
|
+
|
|
221
|
+
<li> libtiff/tif_open.c: Pointers to custom procedures
|
|
222
|
+
in TIFFClientOpen() are checked to be not NULL-pointers.
|
|
223
|
+
|
|
224
|
+
<li> libtiff/tif_lzw.c: Assertions in LZWDecode and LZWDecodeCompat
|
|
225
|
+
replaced by warnings. Now libtiff should read corrupted LZW-compressed
|
|
226
|
+
files by skipping bad strips as per bug 100.
|
|
227
|
+
|
|
228
|
+
<li> libtiff/: tif_dirwrite.c, tif_write.c, tiffio.h:
|
|
229
|
+
<a href=./man/TIFFWriteDirectory.3t.html>TIFFCheckpointDirectory()</a>
|
|
230
|
+
routine added as per bug 124. The
|
|
231
|
+
<a href=./man/TIFFWriteDirectory.3t.html>TIFFWriteDirectory</a>
|
|
232
|
+
man page discusses this new function as well as the related
|
|
233
|
+
<a href=./man/TIFFWriteDirectory.3t.html>TIFFRewriteDirectory()</a>.
|
|
234
|
+
|
|
235
|
+
<li> libtiff/: tif_codec.c, tif_compress.c, tiffiop.h, tif_getimage.c:
|
|
236
|
+
Introduced
|
|
237
|
+
additional members tif->tif_decodestatus and tif->tif_encodestatus
|
|
238
|
+
for correct handling of unconfigured codecs (we should not try to read
|
|
239
|
+
data or to define data size without correct codecs). See bug 119.
|
|
240
|
+
|
|
241
|
+
<li> tif_dirread.c: avoid div-by-zero if rowbytes is zero in chop func as
|
|
242
|
+
per bug 111.
|
|
243
|
+
|
|
244
|
+
<li> libtiff/: tiff.h, tif_dir.c, tif_dir.h, tif_dirinfo.c, tif_dirread.c,
|
|
245
|
+
tif_dirwrite.c: Dwight Kelly added get/put code for new tag XMLPACKET as
|
|
246
|
+
defined in Adobe XMP Technote. Added missing INKSET tag value from TIFF 6.0
|
|
247
|
+
spec INKSET_MULTIINK (=2). Added missing tags from Adobe TIFF technotes:
|
|
248
|
+
CLIPPATH, XCLIPPATHUNITS, YCLIPPATHUNITS, OPIIMAGEID, OPIPROXY and
|
|
249
|
+
INDEXED. Added PHOTOMETRIC tag value from TIFF technote 4 ICCLAB (=9).
|
|
250
|
+
|
|
251
|
+
<li> libtiff/tif_getimage.c: Additional check for supported codecs added in
|
|
252
|
+
TIFFRGBAImageOK, TIFFReadRGBAImage, TIFFReadRGBAStrip and TIFFReadRGBATile now
|
|
253
|
+
use TIFFRGBAImageOK before reading a per bug 110.
|
|
254
|
+
|
|
255
|
+
<li> libtiff/: tif_dir.c, tif_dir.h, tif_dirinfo.c, tif_dirread.c,
|
|
256
|
+
tif_dirwrite.c: Added routine
|
|
257
|
+
<a href=./man/TIFFDataWidth.3t.html>TIFFDataWidth</a> for determining
|
|
258
|
+
TIFFDataType sizes instead of working with tiffDataWidth array
|
|
259
|
+
directly as per bug 109.
|
|
260
|
+
|
|
261
|
+
<li>libtiff/: tif_dirinfo.c, tif_dirwrite.c: Added possibility to
|
|
262
|
+
read broken TIFFs with LONG type used for TIFFTAG_COMPRESSION,
|
|
263
|
+
TIFFTAG_BITSPERSAMPLE, TIFFTAG_PHOTOMETRIC as per bug 99.
|
|
264
|
+
|
|
265
|
+
<li> libtiff/{tiff.h,tif_fax3.c}: Add support for __arch64__ as per bug 94.
|
|
266
|
+
|
|
267
|
+
<li> libtiff/tif_read.c: Fixed TIFFReadEncodedStrip() to fail if the
|
|
268
|
+
decodestrip function returns anything not greater than zero as per bug 97.
|
|
269
|
+
|
|
270
|
+
<li> libtiff/tif_jpeg.c: fixed computation of segment_width for
|
|
271
|
+
tiles files to avoid error about it not matching the
|
|
272
|
+
cinfo.d.image_width values ("JPEGPreDecode: Improper JPEG strip/tile
|
|
273
|
+
size.") for ITIFF files. Apparently the problem was incorporated since
|
|
274
|
+
3.5.5, presumably during the OJPEG/JPEG work recently.
|
|
275
|
+
|
|
276
|
+
<li> libtiff/tif_getimage.c: If DEFAULT_EXTRASAMPLE_AS_ALPHA is 1
|
|
277
|
+
(defined in tiffconf.h - 1 by default) then the RGBA interface
|
|
278
|
+
will assume that a fourth extra sample is ASSOCALPHA if the
|
|
279
|
+
EXTRASAMPLE value isn't set for it. This changes the behaviour of
|
|
280
|
+
the library, but makes it work better with RGBA files produced by
|
|
281
|
+
lots of applications that don't mark the alpha values properly.
|
|
282
|
+
As per bugs 93 and 65.
|
|
283
|
+
|
|
284
|
+
<li> libtiff/tif_jpeg.c: allow jpeg data stream sampling values to
|
|
285
|
+
override those from tiff directory. This makes this work with
|
|
286
|
+
ImageGear generated files.
|
|
287
|
+
|
|
288
|
+
</UL>
|
|
289
|
+
|
|
290
|
+
<P><HR WIDTH=65% ALIGN=left>
|
|
291
|
+
|
|
292
|
+
<!-------------------------------------------------------------------------->
|
|
293
|
+
|
|
294
|
+
<A NAME="tools"><B><FONT SIZE=+3>C</FONT>HANGES IN THE TOOLS:</B></A>
|
|
295
|
+
|
|
296
|
+
<UL>
|
|
297
|
+
|
|
298
|
+
<li> <a href=./man/tiff2ps.1.html>tiff2ps</a>: Added page size setting
|
|
299
|
+
when creating PS Level 2.
|
|
300
|
+
|
|
301
|
+
<li> <a href=./man/tiff2ps.1.html>tiff2ps</a>: Fixed PS comment emitted when
|
|
302
|
+
FlateDecode is being used.
|
|
303
|
+
|
|
304
|
+
<li> <a href=./man/tiffsplit.1.html>tiffsplit</a>: increased the maximum
|
|
305
|
+
number of pages that can be split.
|
|
306
|
+
|
|
307
|
+
<li> <a href=./man/raw2tiff.1.html>raw2tiff</a>: Added option `-p' to
|
|
308
|
+
explicitly select color space of input image data.
|
|
309
|
+
|
|
310
|
+
<li> <a href=./man/tiffmedian.1.html>tiffmedian</a>: Suppiort for large
|
|
311
|
+
(> 2GB) images.
|
|
312
|
+
|
|
313
|
+
<li> <a href=./man/ppm2tiff.1.html>ppm2tiff</a>: Fixed possible endless loop.
|
|
314
|
+
|
|
315
|
+
<li> <a href=./man/tiff2rgba.1.html>tiff2rgba</a>: Switched to use
|
|
316
|
+
<A HREF="./man/TIFFReadRGBAImage.3t.html">TIFFReadRGBAImageOriented()</A>
|
|
317
|
+
instead of <A HREF="./man/TIFFReadRGBAImage.3t.html">TIFFReadRGBAImage()</A>.
|
|
318
|
+
|
|
319
|
+
<li> <a href=./man/tiffcmp.1.html>tiffcmp</a>: Fixed problem with unused data
|
|
320
|
+
comparing (bug 349). `-z' option now can be used to set the number of reported
|
|
321
|
+
different bytes.
|
|
322
|
+
|
|
323
|
+
<li> <a href=./man/tiffcp.1.html>tiffcp</a>: Added possibility to specify
|
|
324
|
+
value -1 to -r option to get the entire image as one strip (bug 343).
|
|
325
|
+
|
|
326
|
+
<li> <a href=./man/tiffcp.1.html>tiffcp</a>: Set the correct RowsPerStrip
|
|
327
|
+
and PageNumber values (bug 343).
|
|
328
|
+
|
|
329
|
+
<li> <a href=./man/fax2tiff.1.html>fax2tiff</a>: Page numbering fixed (bug
|
|
330
|
+
341).
|
|
331
|
+
|
|
332
|
+
<li> <a href=./man/ppm2tiff.1.html>ppm2tiff</a>: PPM header parser improved:
|
|
333
|
+
now able to skip comments.
|
|
334
|
+
|
|
335
|
+
<li> <a href=./man/tiff2ps.1.html>tiff2ps</a>: Force deadzone printing when
|
|
336
|
+
EPS output specified (bug 325).
|
|
337
|
+
|
|
338
|
+
<li> <a href=./man/tiff2ps.1.html>tiff2ps</a>: Add ability to generate
|
|
339
|
+
PS Level 3. It basically allows one to use the /flateDecode filter for ZIP
|
|
340
|
+
compressed TIFF images. Patch supplied by Tom Kacvinsky (bug 328).
|
|
341
|
+
|
|
342
|
+
<li> <a href=./man/tiffcp.1.html>tiffcp</a>: Fixed problem with colorspace
|
|
343
|
+
conversion for JPEG encoded images (bugs 23 and 275)
|
|
344
|
+
|
|
345
|
+
<li> <a href=./man/fax2tiff.1.html>fax2tiff</a>: Applied patch from
|
|
346
|
+
Julien Gaulmin. More switches for fax2tiff tool for better control
|
|
347
|
+
of input and output (bugs 272 and 293).
|
|
348
|
+
|
|
349
|
+
<li> <a href=./man/raw2tiff.1.html>raw2tiff</a>:
|
|
350
|
+
New utility for turning raw raster images into TIFF files
|
|
351
|
+
written by Andrey Kiselev.
|
|
352
|
+
|
|
353
|
+
<li> <a href=./man/tiff2ps.1.html>tiff2ps</a>:
|
|
354
|
+
Sebastian Eken provided patches (bug 200) to add new these new
|
|
355
|
+
switches:
|
|
356
|
+
<ul>
|
|
357
|
+
<li> <b>-b #</b>: for a bottom margin of # inches
|
|
358
|
+
<li> <b>-c</b>: center image
|
|
359
|
+
<li> <b>-l #</b>: for a left margin of # inches
|
|
360
|
+
<li> <b>-r</b>: rotate the image by 180 degrees
|
|
361
|
+
</ul>
|
|
362
|
+
|
|
363
|
+
Also, new features merged with code for shrinking/overlapping.
|
|
364
|
+
|
|
365
|
+
<li> <a href=./man/tiff2ps.1.html>tiff2ps</a>: Don't emit BeginData/EndData
|
|
366
|
+
DSC comments since we are unable to properly include the amount to skip
|
|
367
|
+
as per bug 80.
|
|
368
|
+
|
|
369
|
+
<li> <a href=./man/tiff2ps.1.html>tiff2ps</a>: Added workaround for some
|
|
370
|
+
software that may crash when last strip of image contains fewer number
|
|
371
|
+
of scanlines than specified by the `/Height' variable as per bug 164.
|
|
372
|
+
|
|
373
|
+
<li> <a href=./man/tiff2ps.1.html>tiff2ps</a>: Patch from John Williams to add new
|
|
374
|
+
functionality for tiff2ps utility splitting long images in several pages as
|
|
375
|
+
per bug 142. New switches:
|
|
376
|
+
<ul>
|
|
377
|
+
<li> <b>-H #</b>: split image if height is more than # inches
|
|
378
|
+
<li> <b>-L #</b>: overLap split images by # inches
|
|
379
|
+
</ul>
|
|
380
|
+
|
|
381
|
+
<li> <a href=./man/tiff2ps.1.html>tiff2ps</a>: New commandline
|
|
382
|
+
switches to override resolution units obtained from the input file per bug 131:
|
|
383
|
+
<ul>
|
|
384
|
+
<li> <b>-x</b>: override resolution units as centimeters
|
|
385
|
+
<li> <b>-y</b>: override resolution units as inches
|
|
386
|
+
</ul>
|
|
387
|
+
|
|
388
|
+
<li> <a href=./man/fax2tiff.1.html>fax2tiff</a>: Updated to reflect
|
|
389
|
+
latest changes in libtiff per bug 125.
|
|
390
|
+
|
|
391
|
+
<li> tiff2ps: Division by zero fixed as per bug 88.
|
|
392
|
+
|
|
393
|
+
<li> <a href=./man/tiffcp.1.html>tiffcp<a>:
|
|
394
|
+
Added support for 'Orientation' tag.
|
|
395
|
+
|
|
396
|
+
<li> <a href=./man/tiffdump.1.html>tiffdump</a>:
|
|
397
|
+
include TIFFTAG_JPEGTABLES in tag list.
|
|
398
|
+
|
|
399
|
+
<li> tiffset: fix bug in error reporting.
|
|
400
|
+
|
|
401
|
+
</UL>
|
|
402
|
+
|
|
403
|
+
<P><HR WIDTH=65% ALIGN=left>
|
|
404
|
+
|
|
405
|
+
<!--------------------------------------------------------------------------->
|
|
406
|
+
|
|
407
|
+
<A NAME="contrib"><B><FONT SIZE=+3>C</FONT>HANGES IN THE CONTRIB AREA:</B></A>
|
|
408
|
+
<UL>
|
|
409
|
+
|
|
410
|
+
<li> Fixed distribution to include contrib/addtiffo/tif_ovrcache.{c,h}.
|
|
411
|
+
<li> libtiff/contrib/win95: renamed to contrib/win_dib. Added new
|
|
412
|
+
Tiffile.cpp example of converting TIFF files into a DIB on Win32 as per
|
|
413
|
+
bug 143.
|
|
414
|
+
|
|
415
|
+
</UL>
|
|
416
|
+
|
|
417
|
+
<!--------------------------------------------------------------------------->
|
|
418
|
+
|
|
419
|
+
<A NAME="lzwkit"><B><FONT SIZE=+3>C</FONT>HANGES IN THE LZW COMPRESSION
|
|
420
|
+
KIT:</B></A>
|
|
421
|
+
<UL>
|
|
422
|
+
|
|
423
|
+
<li> LZW compression kit synchronized with actual libtiff version.
|
|
424
|
+
|
|
425
|
+
</UL>
|
|
426
|
+
|
|
427
|
+
<A HREF="index.html"><IMG SRC="images/back.gif"></A> TIFF home page.<BR>
|
|
428
|
+
|
|
429
|
+
<HR>
|
|
430
|
+
|
|
431
|
+
Last updated $Date: 2016-09-25 20:05:45 $.
|
|
432
|
+
|
|
433
|
+
</BODY>
|
|
434
|
+
</HTML>
|