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,118 @@
|
|
|
1
|
+
/* $Id: tif_flush.c,v 1.9 2010-03-31 06:40:10 fwarmerdam Exp $ */
|
|
2
|
+
|
|
3
|
+
/*
|
|
4
|
+
* Copyright (c) 1988-1997 Sam Leffler
|
|
5
|
+
* Copyright (c) 1991-1997 Silicon Graphics, Inc.
|
|
6
|
+
*
|
|
7
|
+
* Permission to use, copy, modify, distribute, and sell this software and
|
|
8
|
+
* its documentation for any purpose is hereby granted without fee, provided
|
|
9
|
+
* that (i) the above copyright notices and this permission notice appear in
|
|
10
|
+
* all copies of the software and related documentation, and (ii) the names of
|
|
11
|
+
* Sam Leffler and Silicon Graphics may not be used in any advertising or
|
|
12
|
+
* publicity relating to the software without the specific, prior written
|
|
13
|
+
* permission of Sam Leffler and Silicon Graphics.
|
|
14
|
+
*
|
|
15
|
+
* THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
|
|
16
|
+
* EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
|
|
17
|
+
* WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
|
|
18
|
+
*
|
|
19
|
+
* IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
|
|
20
|
+
* ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
|
|
21
|
+
* OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
|
|
22
|
+
* WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
|
|
23
|
+
* LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
|
24
|
+
* OF THIS SOFTWARE.
|
|
25
|
+
*/
|
|
26
|
+
|
|
27
|
+
/*
|
|
28
|
+
* TIFF Library.
|
|
29
|
+
*/
|
|
30
|
+
#include "tiffiop.h"
|
|
31
|
+
|
|
32
|
+
int
|
|
33
|
+
TIFFFlush(TIFF* tif)
|
|
34
|
+
{
|
|
35
|
+
if( tif->tif_mode == O_RDONLY )
|
|
36
|
+
return 1;
|
|
37
|
+
|
|
38
|
+
if (!TIFFFlushData(tif))
|
|
39
|
+
return (0);
|
|
40
|
+
|
|
41
|
+
/* In update (r+) mode we try to detect the case where
|
|
42
|
+
only the strip/tile map has been altered, and we try to
|
|
43
|
+
rewrite only that portion of the directory without
|
|
44
|
+
making any other changes */
|
|
45
|
+
|
|
46
|
+
if( (tif->tif_flags & TIFF_DIRTYSTRIP)
|
|
47
|
+
&& !(tif->tif_flags & TIFF_DIRTYDIRECT)
|
|
48
|
+
&& tif->tif_mode == O_RDWR )
|
|
49
|
+
{
|
|
50
|
+
uint64 *offsets=NULL, *sizes=NULL;
|
|
51
|
+
|
|
52
|
+
if( TIFFIsTiled(tif) )
|
|
53
|
+
{
|
|
54
|
+
if( TIFFGetField( tif, TIFFTAG_TILEOFFSETS, &offsets )
|
|
55
|
+
&& TIFFGetField( tif, TIFFTAG_TILEBYTECOUNTS, &sizes )
|
|
56
|
+
&& _TIFFRewriteField( tif, TIFFTAG_TILEOFFSETS, TIFF_LONG8,
|
|
57
|
+
tif->tif_dir.td_nstrips, offsets )
|
|
58
|
+
&& _TIFFRewriteField( tif, TIFFTAG_TILEBYTECOUNTS, TIFF_LONG8,
|
|
59
|
+
tif->tif_dir.td_nstrips, sizes ) )
|
|
60
|
+
{
|
|
61
|
+
tif->tif_flags &= ~TIFF_DIRTYSTRIP;
|
|
62
|
+
tif->tif_flags &= ~TIFF_BEENWRITING;
|
|
63
|
+
return 1;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
else
|
|
67
|
+
{
|
|
68
|
+
if( TIFFGetField( tif, TIFFTAG_STRIPOFFSETS, &offsets )
|
|
69
|
+
&& TIFFGetField( tif, TIFFTAG_STRIPBYTECOUNTS, &sizes )
|
|
70
|
+
&& _TIFFRewriteField( tif, TIFFTAG_STRIPOFFSETS, TIFF_LONG8,
|
|
71
|
+
tif->tif_dir.td_nstrips, offsets )
|
|
72
|
+
&& _TIFFRewriteField( tif, TIFFTAG_STRIPBYTECOUNTS, TIFF_LONG8,
|
|
73
|
+
tif->tif_dir.td_nstrips, sizes ) )
|
|
74
|
+
{
|
|
75
|
+
tif->tif_flags &= ~TIFF_DIRTYSTRIP;
|
|
76
|
+
tif->tif_flags &= ~TIFF_BEENWRITING;
|
|
77
|
+
return 1;
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
if ((tif->tif_flags & (TIFF_DIRTYDIRECT|TIFF_DIRTYSTRIP))
|
|
83
|
+
&& !TIFFRewriteDirectory(tif))
|
|
84
|
+
return (0);
|
|
85
|
+
|
|
86
|
+
return (1);
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
/*
|
|
90
|
+
* Flush buffered data to the file.
|
|
91
|
+
*
|
|
92
|
+
* Frank Warmerdam'2000: I modified this to return 1 if TIFF_BEENWRITING
|
|
93
|
+
* is not set, so that TIFFFlush() will proceed to write out the directory.
|
|
94
|
+
* The documentation says returning 1 is an error indicator, but not having
|
|
95
|
+
* been writing isn't exactly a an error. Hopefully this doesn't cause
|
|
96
|
+
* problems for other people.
|
|
97
|
+
*/
|
|
98
|
+
int
|
|
99
|
+
TIFFFlushData(TIFF* tif)
|
|
100
|
+
{
|
|
101
|
+
if ((tif->tif_flags & TIFF_BEENWRITING) == 0)
|
|
102
|
+
return (1);
|
|
103
|
+
if (tif->tif_flags & TIFF_POSTENCODE) {
|
|
104
|
+
tif->tif_flags &= ~TIFF_POSTENCODE;
|
|
105
|
+
if (!(*tif->tif_postencode)(tif))
|
|
106
|
+
return (0);
|
|
107
|
+
}
|
|
108
|
+
return (TIFFFlushData1(tif));
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
/* vim: set ts=8 sts=8 sw=8 noet: */
|
|
112
|
+
/*
|
|
113
|
+
* Local Variables:
|
|
114
|
+
* mode: c
|
|
115
|
+
* c-basic-offset: 8
|
|
116
|
+
* fill-column: 78
|
|
117
|
+
* End:
|
|
118
|
+
*/
|
|
@@ -0,0 +1,3048 @@
|
|
|
1
|
+
/* $Id: tif_getimage.c,v 1.114 2017-11-17 20:21:00 erouault Exp $ */
|
|
2
|
+
|
|
3
|
+
/*
|
|
4
|
+
* Copyright (c) 1991-1997 Sam Leffler
|
|
5
|
+
* Copyright (c) 1991-1997 Silicon Graphics, Inc.
|
|
6
|
+
*
|
|
7
|
+
* Permission to use, copy, modify, distribute, and sell this software and
|
|
8
|
+
* its documentation for any purpose is hereby granted without fee, provided
|
|
9
|
+
* that (i) the above copyright notices and this permission notice appear in
|
|
10
|
+
* all copies of the software and related documentation, and (ii) the names of
|
|
11
|
+
* Sam Leffler and Silicon Graphics may not be used in any advertising or
|
|
12
|
+
* publicity relating to the software without the specific, prior written
|
|
13
|
+
* permission of Sam Leffler and Silicon Graphics.
|
|
14
|
+
*
|
|
15
|
+
* THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
|
|
16
|
+
* EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
|
|
17
|
+
* WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
|
|
18
|
+
*
|
|
19
|
+
* IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
|
|
20
|
+
* ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
|
|
21
|
+
* OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
|
|
22
|
+
* WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
|
|
23
|
+
* LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
|
24
|
+
* OF THIS SOFTWARE.
|
|
25
|
+
*/
|
|
26
|
+
|
|
27
|
+
/*
|
|
28
|
+
* TIFF Library
|
|
29
|
+
*
|
|
30
|
+
* Read and return a packed RGBA image.
|
|
31
|
+
*/
|
|
32
|
+
#include "tiffiop.h"
|
|
33
|
+
#include <stdio.h>
|
|
34
|
+
|
|
35
|
+
static int gtTileContig(TIFFRGBAImage*, uint32*, uint32, uint32);
|
|
36
|
+
static int gtTileSeparate(TIFFRGBAImage*, uint32*, uint32, uint32);
|
|
37
|
+
static int gtStripContig(TIFFRGBAImage*, uint32*, uint32, uint32);
|
|
38
|
+
static int gtStripSeparate(TIFFRGBAImage*, uint32*, uint32, uint32);
|
|
39
|
+
static int PickContigCase(TIFFRGBAImage*);
|
|
40
|
+
static int PickSeparateCase(TIFFRGBAImage*);
|
|
41
|
+
|
|
42
|
+
static int BuildMapUaToAa(TIFFRGBAImage* img);
|
|
43
|
+
static int BuildMapBitdepth16To8(TIFFRGBAImage* img);
|
|
44
|
+
|
|
45
|
+
static const char photoTag[] = "PhotometricInterpretation";
|
|
46
|
+
|
|
47
|
+
/*
|
|
48
|
+
* Helper constants used in Orientation tag handling
|
|
49
|
+
*/
|
|
50
|
+
#define FLIP_VERTICALLY 0x01
|
|
51
|
+
#define FLIP_HORIZONTALLY 0x02
|
|
52
|
+
|
|
53
|
+
/*
|
|
54
|
+
* Color conversion constants. We will define display types here.
|
|
55
|
+
*/
|
|
56
|
+
|
|
57
|
+
static const TIFFDisplay display_sRGB = {
|
|
58
|
+
{ /* XYZ -> luminance matrix */
|
|
59
|
+
{ 3.2410F, -1.5374F, -0.4986F },
|
|
60
|
+
{ -0.9692F, 1.8760F, 0.0416F },
|
|
61
|
+
{ 0.0556F, -0.2040F, 1.0570F }
|
|
62
|
+
},
|
|
63
|
+
100.0F, 100.0F, 100.0F, /* Light o/p for reference white */
|
|
64
|
+
255, 255, 255, /* Pixel values for ref. white */
|
|
65
|
+
1.0F, 1.0F, 1.0F, /* Residual light o/p for black pixel */
|
|
66
|
+
2.4F, 2.4F, 2.4F, /* Gamma values for the three guns */
|
|
67
|
+
};
|
|
68
|
+
|
|
69
|
+
/*
|
|
70
|
+
* Check the image to see if TIFFReadRGBAImage can deal with it.
|
|
71
|
+
* 1/0 is returned according to whether or not the image can
|
|
72
|
+
* be handled. If 0 is returned, emsg contains the reason
|
|
73
|
+
* why it is being rejected.
|
|
74
|
+
*/
|
|
75
|
+
int
|
|
76
|
+
TIFFRGBAImageOK(TIFF* tif, char emsg[1024])
|
|
77
|
+
{
|
|
78
|
+
TIFFDirectory* td = &tif->tif_dir;
|
|
79
|
+
uint16 photometric;
|
|
80
|
+
int colorchannels;
|
|
81
|
+
|
|
82
|
+
if (!tif->tif_decodestatus) {
|
|
83
|
+
sprintf(emsg, "Sorry, requested compression method is not configured");
|
|
84
|
+
return (0);
|
|
85
|
+
}
|
|
86
|
+
switch (td->td_bitspersample) {
|
|
87
|
+
case 1:
|
|
88
|
+
case 2:
|
|
89
|
+
case 4:
|
|
90
|
+
case 8:
|
|
91
|
+
case 16:
|
|
92
|
+
break;
|
|
93
|
+
default:
|
|
94
|
+
sprintf(emsg, "Sorry, can not handle images with %d-bit samples",
|
|
95
|
+
td->td_bitspersample);
|
|
96
|
+
return (0);
|
|
97
|
+
}
|
|
98
|
+
if (td->td_sampleformat == SAMPLEFORMAT_IEEEFP) {
|
|
99
|
+
sprintf(emsg, "Sorry, can not handle images with IEEE floating-point samples");
|
|
100
|
+
return (0);
|
|
101
|
+
}
|
|
102
|
+
colorchannels = td->td_samplesperpixel - td->td_extrasamples;
|
|
103
|
+
if (!TIFFGetField(tif, TIFFTAG_PHOTOMETRIC, &photometric)) {
|
|
104
|
+
switch (colorchannels) {
|
|
105
|
+
case 1:
|
|
106
|
+
photometric = PHOTOMETRIC_MINISBLACK;
|
|
107
|
+
break;
|
|
108
|
+
case 3:
|
|
109
|
+
photometric = PHOTOMETRIC_RGB;
|
|
110
|
+
break;
|
|
111
|
+
default:
|
|
112
|
+
sprintf(emsg, "Missing needed %s tag", photoTag);
|
|
113
|
+
return (0);
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
switch (photometric) {
|
|
117
|
+
case PHOTOMETRIC_MINISWHITE:
|
|
118
|
+
case PHOTOMETRIC_MINISBLACK:
|
|
119
|
+
case PHOTOMETRIC_PALETTE:
|
|
120
|
+
if (td->td_planarconfig == PLANARCONFIG_CONTIG
|
|
121
|
+
&& td->td_samplesperpixel != 1
|
|
122
|
+
&& td->td_bitspersample < 8 ) {
|
|
123
|
+
sprintf(emsg,
|
|
124
|
+
"Sorry, can not handle contiguous data with %s=%d, "
|
|
125
|
+
"and %s=%d and Bits/Sample=%d",
|
|
126
|
+
photoTag, photometric,
|
|
127
|
+
"Samples/pixel", td->td_samplesperpixel,
|
|
128
|
+
td->td_bitspersample);
|
|
129
|
+
return (0);
|
|
130
|
+
}
|
|
131
|
+
/*
|
|
132
|
+
* We should likely validate that any extra samples are either
|
|
133
|
+
* to be ignored, or are alpha, and if alpha we should try to use
|
|
134
|
+
* them. But for now we won't bother with this.
|
|
135
|
+
*/
|
|
136
|
+
break;
|
|
137
|
+
case PHOTOMETRIC_YCBCR:
|
|
138
|
+
/*
|
|
139
|
+
* TODO: if at all meaningful and useful, make more complete
|
|
140
|
+
* support check here, or better still, refactor to let supporting
|
|
141
|
+
* code decide whether there is support and what meaningful
|
|
142
|
+
* error to return
|
|
143
|
+
*/
|
|
144
|
+
break;
|
|
145
|
+
case PHOTOMETRIC_RGB:
|
|
146
|
+
if (colorchannels < 3) {
|
|
147
|
+
sprintf(emsg, "Sorry, can not handle RGB image with %s=%d",
|
|
148
|
+
"Color channels", colorchannels);
|
|
149
|
+
return (0);
|
|
150
|
+
}
|
|
151
|
+
break;
|
|
152
|
+
case PHOTOMETRIC_SEPARATED:
|
|
153
|
+
{
|
|
154
|
+
uint16 inkset;
|
|
155
|
+
TIFFGetFieldDefaulted(tif, TIFFTAG_INKSET, &inkset);
|
|
156
|
+
if (inkset != INKSET_CMYK) {
|
|
157
|
+
sprintf(emsg,
|
|
158
|
+
"Sorry, can not handle separated image with %s=%d",
|
|
159
|
+
"InkSet", inkset);
|
|
160
|
+
return 0;
|
|
161
|
+
}
|
|
162
|
+
if (td->td_samplesperpixel < 4) {
|
|
163
|
+
sprintf(emsg,
|
|
164
|
+
"Sorry, can not handle separated image with %s=%d",
|
|
165
|
+
"Samples/pixel", td->td_samplesperpixel);
|
|
166
|
+
return 0;
|
|
167
|
+
}
|
|
168
|
+
break;
|
|
169
|
+
}
|
|
170
|
+
case PHOTOMETRIC_LOGL:
|
|
171
|
+
if (td->td_compression != COMPRESSION_SGILOG) {
|
|
172
|
+
sprintf(emsg, "Sorry, LogL data must have %s=%d",
|
|
173
|
+
"Compression", COMPRESSION_SGILOG);
|
|
174
|
+
return (0);
|
|
175
|
+
}
|
|
176
|
+
break;
|
|
177
|
+
case PHOTOMETRIC_LOGLUV:
|
|
178
|
+
if (td->td_compression != COMPRESSION_SGILOG &&
|
|
179
|
+
td->td_compression != COMPRESSION_SGILOG24) {
|
|
180
|
+
sprintf(emsg, "Sorry, LogLuv data must have %s=%d or %d",
|
|
181
|
+
"Compression", COMPRESSION_SGILOG, COMPRESSION_SGILOG24);
|
|
182
|
+
return (0);
|
|
183
|
+
}
|
|
184
|
+
if (td->td_planarconfig != PLANARCONFIG_CONTIG) {
|
|
185
|
+
sprintf(emsg, "Sorry, can not handle LogLuv images with %s=%d",
|
|
186
|
+
"Planarconfiguration", td->td_planarconfig);
|
|
187
|
+
return (0);
|
|
188
|
+
}
|
|
189
|
+
if ( td->td_samplesperpixel != 3 || colorchannels != 3 ) {
|
|
190
|
+
sprintf(emsg,
|
|
191
|
+
"Sorry, can not handle image with %s=%d, %s=%d",
|
|
192
|
+
"Samples/pixel", td->td_samplesperpixel,
|
|
193
|
+
"colorchannels", colorchannels);
|
|
194
|
+
return 0;
|
|
195
|
+
}
|
|
196
|
+
break;
|
|
197
|
+
case PHOTOMETRIC_CIELAB:
|
|
198
|
+
if ( td->td_samplesperpixel != 3 || colorchannels != 3 || td->td_bitspersample != 8 ) {
|
|
199
|
+
sprintf(emsg,
|
|
200
|
+
"Sorry, can not handle image with %s=%d, %s=%d and %s=%d",
|
|
201
|
+
"Samples/pixel", td->td_samplesperpixel,
|
|
202
|
+
"colorchannels", colorchannels,
|
|
203
|
+
"Bits/sample", td->td_bitspersample);
|
|
204
|
+
return 0;
|
|
205
|
+
}
|
|
206
|
+
break;
|
|
207
|
+
default:
|
|
208
|
+
sprintf(emsg, "Sorry, can not handle image with %s=%d",
|
|
209
|
+
photoTag, photometric);
|
|
210
|
+
return (0);
|
|
211
|
+
}
|
|
212
|
+
return (1);
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
void
|
|
216
|
+
TIFFRGBAImageEnd(TIFFRGBAImage* img)
|
|
217
|
+
{
|
|
218
|
+
if (img->Map) {
|
|
219
|
+
_TIFFfree(img->Map);
|
|
220
|
+
img->Map = NULL;
|
|
221
|
+
}
|
|
222
|
+
if (img->BWmap) {
|
|
223
|
+
_TIFFfree(img->BWmap);
|
|
224
|
+
img->BWmap = NULL;
|
|
225
|
+
}
|
|
226
|
+
if (img->PALmap) {
|
|
227
|
+
_TIFFfree(img->PALmap);
|
|
228
|
+
img->PALmap = NULL;
|
|
229
|
+
}
|
|
230
|
+
if (img->ycbcr) {
|
|
231
|
+
_TIFFfree(img->ycbcr);
|
|
232
|
+
img->ycbcr = NULL;
|
|
233
|
+
}
|
|
234
|
+
if (img->cielab) {
|
|
235
|
+
_TIFFfree(img->cielab);
|
|
236
|
+
img->cielab = NULL;
|
|
237
|
+
}
|
|
238
|
+
if (img->UaToAa) {
|
|
239
|
+
_TIFFfree(img->UaToAa);
|
|
240
|
+
img->UaToAa = NULL;
|
|
241
|
+
}
|
|
242
|
+
if (img->Bitdepth16To8) {
|
|
243
|
+
_TIFFfree(img->Bitdepth16To8);
|
|
244
|
+
img->Bitdepth16To8 = NULL;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
if( img->redcmap ) {
|
|
248
|
+
_TIFFfree( img->redcmap );
|
|
249
|
+
_TIFFfree( img->greencmap );
|
|
250
|
+
_TIFFfree( img->bluecmap );
|
|
251
|
+
img->redcmap = img->greencmap = img->bluecmap = NULL;
|
|
252
|
+
}
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
static int
|
|
256
|
+
isCCITTCompression(TIFF* tif)
|
|
257
|
+
{
|
|
258
|
+
uint16 compress;
|
|
259
|
+
TIFFGetField(tif, TIFFTAG_COMPRESSION, &compress);
|
|
260
|
+
return (compress == COMPRESSION_CCITTFAX3 ||
|
|
261
|
+
compress == COMPRESSION_CCITTFAX4 ||
|
|
262
|
+
compress == COMPRESSION_CCITTRLE ||
|
|
263
|
+
compress == COMPRESSION_CCITTRLEW);
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
int
|
|
267
|
+
TIFFRGBAImageBegin(TIFFRGBAImage* img, TIFF* tif, int stop, char emsg[1024])
|
|
268
|
+
{
|
|
269
|
+
uint16* sampleinfo;
|
|
270
|
+
uint16 extrasamples;
|
|
271
|
+
uint16 planarconfig;
|
|
272
|
+
uint16 compress;
|
|
273
|
+
int colorchannels;
|
|
274
|
+
uint16 *red_orig, *green_orig, *blue_orig;
|
|
275
|
+
int n_color;
|
|
276
|
+
|
|
277
|
+
if( !TIFFRGBAImageOK(tif, emsg) )
|
|
278
|
+
return 0;
|
|
279
|
+
|
|
280
|
+
/* Initialize to normal values */
|
|
281
|
+
img->row_offset = 0;
|
|
282
|
+
img->col_offset = 0;
|
|
283
|
+
img->redcmap = NULL;
|
|
284
|
+
img->greencmap = NULL;
|
|
285
|
+
img->bluecmap = NULL;
|
|
286
|
+
img->Map = NULL;
|
|
287
|
+
img->BWmap = NULL;
|
|
288
|
+
img->PALmap = NULL;
|
|
289
|
+
img->ycbcr = NULL;
|
|
290
|
+
img->cielab = NULL;
|
|
291
|
+
img->UaToAa = NULL;
|
|
292
|
+
img->Bitdepth16To8 = NULL;
|
|
293
|
+
img->req_orientation = ORIENTATION_BOTLEFT; /* It is the default */
|
|
294
|
+
|
|
295
|
+
img->tif = tif;
|
|
296
|
+
img->stoponerr = stop;
|
|
297
|
+
TIFFGetFieldDefaulted(tif, TIFFTAG_BITSPERSAMPLE, &img->bitspersample);
|
|
298
|
+
switch (img->bitspersample) {
|
|
299
|
+
case 1:
|
|
300
|
+
case 2:
|
|
301
|
+
case 4:
|
|
302
|
+
case 8:
|
|
303
|
+
case 16:
|
|
304
|
+
break;
|
|
305
|
+
default:
|
|
306
|
+
sprintf(emsg, "Sorry, can not handle images with %d-bit samples",
|
|
307
|
+
img->bitspersample);
|
|
308
|
+
goto fail_return;
|
|
309
|
+
}
|
|
310
|
+
img->alpha = 0;
|
|
311
|
+
TIFFGetFieldDefaulted(tif, TIFFTAG_SAMPLESPERPIXEL, &img->samplesperpixel);
|
|
312
|
+
TIFFGetFieldDefaulted(tif, TIFFTAG_EXTRASAMPLES,
|
|
313
|
+
&extrasamples, &sampleinfo);
|
|
314
|
+
if (extrasamples >= 1)
|
|
315
|
+
{
|
|
316
|
+
switch (sampleinfo[0]) {
|
|
317
|
+
case EXTRASAMPLE_UNSPECIFIED: /* Workaround for some images without */
|
|
318
|
+
if (img->samplesperpixel > 3) /* correct info about alpha channel */
|
|
319
|
+
img->alpha = EXTRASAMPLE_ASSOCALPHA;
|
|
320
|
+
break;
|
|
321
|
+
case EXTRASAMPLE_ASSOCALPHA: /* data is pre-multiplied */
|
|
322
|
+
case EXTRASAMPLE_UNASSALPHA: /* data is not pre-multiplied */
|
|
323
|
+
img->alpha = sampleinfo[0];
|
|
324
|
+
break;
|
|
325
|
+
}
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
#ifdef DEFAULT_EXTRASAMPLE_AS_ALPHA
|
|
329
|
+
if( !TIFFGetField(tif, TIFFTAG_PHOTOMETRIC, &img->photometric))
|
|
330
|
+
img->photometric = PHOTOMETRIC_MINISWHITE;
|
|
331
|
+
|
|
332
|
+
if( extrasamples == 0
|
|
333
|
+
&& img->samplesperpixel == 4
|
|
334
|
+
&& img->photometric == PHOTOMETRIC_RGB )
|
|
335
|
+
{
|
|
336
|
+
img->alpha = EXTRASAMPLE_ASSOCALPHA;
|
|
337
|
+
extrasamples = 1;
|
|
338
|
+
}
|
|
339
|
+
#endif
|
|
340
|
+
|
|
341
|
+
colorchannels = img->samplesperpixel - extrasamples;
|
|
342
|
+
TIFFGetFieldDefaulted(tif, TIFFTAG_COMPRESSION, &compress);
|
|
343
|
+
TIFFGetFieldDefaulted(tif, TIFFTAG_PLANARCONFIG, &planarconfig);
|
|
344
|
+
if (!TIFFGetField(tif, TIFFTAG_PHOTOMETRIC, &img->photometric)) {
|
|
345
|
+
switch (colorchannels) {
|
|
346
|
+
case 1:
|
|
347
|
+
if (isCCITTCompression(tif))
|
|
348
|
+
img->photometric = PHOTOMETRIC_MINISWHITE;
|
|
349
|
+
else
|
|
350
|
+
img->photometric = PHOTOMETRIC_MINISBLACK;
|
|
351
|
+
break;
|
|
352
|
+
case 3:
|
|
353
|
+
img->photometric = PHOTOMETRIC_RGB;
|
|
354
|
+
break;
|
|
355
|
+
default:
|
|
356
|
+
sprintf(emsg, "Missing needed %s tag", photoTag);
|
|
357
|
+
goto fail_return;
|
|
358
|
+
}
|
|
359
|
+
}
|
|
360
|
+
switch (img->photometric) {
|
|
361
|
+
case PHOTOMETRIC_PALETTE:
|
|
362
|
+
if (!TIFFGetField(tif, TIFFTAG_COLORMAP,
|
|
363
|
+
&red_orig, &green_orig, &blue_orig)) {
|
|
364
|
+
sprintf(emsg, "Missing required \"Colormap\" tag");
|
|
365
|
+
goto fail_return;
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
/* copy the colormaps so we can modify them */
|
|
369
|
+
n_color = (1U << img->bitspersample);
|
|
370
|
+
img->redcmap = (uint16 *) _TIFFmalloc(sizeof(uint16)*n_color);
|
|
371
|
+
img->greencmap = (uint16 *) _TIFFmalloc(sizeof(uint16)*n_color);
|
|
372
|
+
img->bluecmap = (uint16 *) _TIFFmalloc(sizeof(uint16)*n_color);
|
|
373
|
+
if( !img->redcmap || !img->greencmap || !img->bluecmap ) {
|
|
374
|
+
sprintf(emsg, "Out of memory for colormap copy");
|
|
375
|
+
goto fail_return;
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
_TIFFmemcpy( img->redcmap, red_orig, n_color * 2 );
|
|
379
|
+
_TIFFmemcpy( img->greencmap, green_orig, n_color * 2 );
|
|
380
|
+
_TIFFmemcpy( img->bluecmap, blue_orig, n_color * 2 );
|
|
381
|
+
|
|
382
|
+
/* fall through... */
|
|
383
|
+
case PHOTOMETRIC_MINISWHITE:
|
|
384
|
+
case PHOTOMETRIC_MINISBLACK:
|
|
385
|
+
if (planarconfig == PLANARCONFIG_CONTIG
|
|
386
|
+
&& img->samplesperpixel != 1
|
|
387
|
+
&& img->bitspersample < 8 ) {
|
|
388
|
+
sprintf(emsg,
|
|
389
|
+
"Sorry, can not handle contiguous data with %s=%d, "
|
|
390
|
+
"and %s=%d and Bits/Sample=%d",
|
|
391
|
+
photoTag, img->photometric,
|
|
392
|
+
"Samples/pixel", img->samplesperpixel,
|
|
393
|
+
img->bitspersample);
|
|
394
|
+
goto fail_return;
|
|
395
|
+
}
|
|
396
|
+
break;
|
|
397
|
+
case PHOTOMETRIC_YCBCR:
|
|
398
|
+
/* It would probably be nice to have a reality check here. */
|
|
399
|
+
if (planarconfig == PLANARCONFIG_CONTIG)
|
|
400
|
+
/* can rely on libjpeg to convert to RGB */
|
|
401
|
+
/* XXX should restore current state on exit */
|
|
402
|
+
switch (compress) {
|
|
403
|
+
case COMPRESSION_JPEG:
|
|
404
|
+
/*
|
|
405
|
+
* TODO: when complete tests verify complete desubsampling
|
|
406
|
+
* and YCbCr handling, remove use of TIFFTAG_JPEGCOLORMODE in
|
|
407
|
+
* favor of tif_getimage.c native handling
|
|
408
|
+
*/
|
|
409
|
+
TIFFSetField(tif, TIFFTAG_JPEGCOLORMODE, JPEGCOLORMODE_RGB);
|
|
410
|
+
img->photometric = PHOTOMETRIC_RGB;
|
|
411
|
+
break;
|
|
412
|
+
default:
|
|
413
|
+
/* do nothing */;
|
|
414
|
+
break;
|
|
415
|
+
}
|
|
416
|
+
/*
|
|
417
|
+
* TODO: if at all meaningful and useful, make more complete
|
|
418
|
+
* support check here, or better still, refactor to let supporting
|
|
419
|
+
* code decide whether there is support and what meaningful
|
|
420
|
+
* error to return
|
|
421
|
+
*/
|
|
422
|
+
break;
|
|
423
|
+
case PHOTOMETRIC_RGB:
|
|
424
|
+
if (colorchannels < 3) {
|
|
425
|
+
sprintf(emsg, "Sorry, can not handle RGB image with %s=%d",
|
|
426
|
+
"Color channels", colorchannels);
|
|
427
|
+
goto fail_return;
|
|
428
|
+
}
|
|
429
|
+
break;
|
|
430
|
+
case PHOTOMETRIC_SEPARATED:
|
|
431
|
+
{
|
|
432
|
+
uint16 inkset;
|
|
433
|
+
TIFFGetFieldDefaulted(tif, TIFFTAG_INKSET, &inkset);
|
|
434
|
+
if (inkset != INKSET_CMYK) {
|
|
435
|
+
sprintf(emsg, "Sorry, can not handle separated image with %s=%d",
|
|
436
|
+
"InkSet", inkset);
|
|
437
|
+
goto fail_return;
|
|
438
|
+
}
|
|
439
|
+
if (img->samplesperpixel < 4) {
|
|
440
|
+
sprintf(emsg, "Sorry, can not handle separated image with %s=%d",
|
|
441
|
+
"Samples/pixel", img->samplesperpixel);
|
|
442
|
+
goto fail_return;
|
|
443
|
+
}
|
|
444
|
+
}
|
|
445
|
+
break;
|
|
446
|
+
case PHOTOMETRIC_LOGL:
|
|
447
|
+
if (compress != COMPRESSION_SGILOG) {
|
|
448
|
+
sprintf(emsg, "Sorry, LogL data must have %s=%d",
|
|
449
|
+
"Compression", COMPRESSION_SGILOG);
|
|
450
|
+
goto fail_return;
|
|
451
|
+
}
|
|
452
|
+
TIFFSetField(tif, TIFFTAG_SGILOGDATAFMT, SGILOGDATAFMT_8BIT);
|
|
453
|
+
img->photometric = PHOTOMETRIC_MINISBLACK; /* little white lie */
|
|
454
|
+
img->bitspersample = 8;
|
|
455
|
+
break;
|
|
456
|
+
case PHOTOMETRIC_LOGLUV:
|
|
457
|
+
if (compress != COMPRESSION_SGILOG && compress != COMPRESSION_SGILOG24) {
|
|
458
|
+
sprintf(emsg, "Sorry, LogLuv data must have %s=%d or %d",
|
|
459
|
+
"Compression", COMPRESSION_SGILOG, COMPRESSION_SGILOG24);
|
|
460
|
+
goto fail_return;
|
|
461
|
+
}
|
|
462
|
+
if (planarconfig != PLANARCONFIG_CONTIG) {
|
|
463
|
+
sprintf(emsg, "Sorry, can not handle LogLuv images with %s=%d",
|
|
464
|
+
"Planarconfiguration", planarconfig);
|
|
465
|
+
return (0);
|
|
466
|
+
}
|
|
467
|
+
TIFFSetField(tif, TIFFTAG_SGILOGDATAFMT, SGILOGDATAFMT_8BIT);
|
|
468
|
+
img->photometric = PHOTOMETRIC_RGB; /* little white lie */
|
|
469
|
+
img->bitspersample = 8;
|
|
470
|
+
break;
|
|
471
|
+
case PHOTOMETRIC_CIELAB:
|
|
472
|
+
break;
|
|
473
|
+
default:
|
|
474
|
+
sprintf(emsg, "Sorry, can not handle image with %s=%d",
|
|
475
|
+
photoTag, img->photometric);
|
|
476
|
+
goto fail_return;
|
|
477
|
+
}
|
|
478
|
+
TIFFGetField(tif, TIFFTAG_IMAGEWIDTH, &img->width);
|
|
479
|
+
TIFFGetField(tif, TIFFTAG_IMAGELENGTH, &img->height);
|
|
480
|
+
TIFFGetFieldDefaulted(tif, TIFFTAG_ORIENTATION, &img->orientation);
|
|
481
|
+
img->isContig =
|
|
482
|
+
!(planarconfig == PLANARCONFIG_SEPARATE && img->samplesperpixel > 1);
|
|
483
|
+
if (img->isContig) {
|
|
484
|
+
if (!PickContigCase(img)) {
|
|
485
|
+
sprintf(emsg, "Sorry, can not handle image");
|
|
486
|
+
goto fail_return;
|
|
487
|
+
}
|
|
488
|
+
} else {
|
|
489
|
+
if (!PickSeparateCase(img)) {
|
|
490
|
+
sprintf(emsg, "Sorry, can not handle image");
|
|
491
|
+
goto fail_return;
|
|
492
|
+
}
|
|
493
|
+
}
|
|
494
|
+
return 1;
|
|
495
|
+
|
|
496
|
+
fail_return:
|
|
497
|
+
TIFFRGBAImageEnd( img );
|
|
498
|
+
return 0;
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
int
|
|
502
|
+
TIFFRGBAImageGet(TIFFRGBAImage* img, uint32* raster, uint32 w, uint32 h)
|
|
503
|
+
{
|
|
504
|
+
if (img->get == NULL) {
|
|
505
|
+
TIFFErrorExt(img->tif->tif_clientdata, TIFFFileName(img->tif), "No \"get\" routine setup");
|
|
506
|
+
return (0);
|
|
507
|
+
}
|
|
508
|
+
if (img->put.any == NULL) {
|
|
509
|
+
TIFFErrorExt(img->tif->tif_clientdata, TIFFFileName(img->tif),
|
|
510
|
+
"No \"put\" routine setupl; probably can not handle image format");
|
|
511
|
+
return (0);
|
|
512
|
+
}
|
|
513
|
+
return (*img->get)(img, raster, w, h);
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
/*
|
|
517
|
+
* Read the specified image into an ABGR-format rastertaking in account
|
|
518
|
+
* specified orientation.
|
|
519
|
+
*/
|
|
520
|
+
int
|
|
521
|
+
TIFFReadRGBAImageOriented(TIFF* tif,
|
|
522
|
+
uint32 rwidth, uint32 rheight, uint32* raster,
|
|
523
|
+
int orientation, int stop)
|
|
524
|
+
{
|
|
525
|
+
char emsg[1024] = "";
|
|
526
|
+
TIFFRGBAImage img;
|
|
527
|
+
int ok;
|
|
528
|
+
|
|
529
|
+
if (TIFFRGBAImageOK(tif, emsg) && TIFFRGBAImageBegin(&img, tif, stop, emsg)) {
|
|
530
|
+
img.req_orientation = (uint16)orientation;
|
|
531
|
+
/* XXX verify rwidth and rheight against width and height */
|
|
532
|
+
ok = TIFFRGBAImageGet(&img, raster+(rheight-img.height)*rwidth,
|
|
533
|
+
rwidth, img.height);
|
|
534
|
+
TIFFRGBAImageEnd(&img);
|
|
535
|
+
} else {
|
|
536
|
+
TIFFErrorExt(tif->tif_clientdata, TIFFFileName(tif), "%s", emsg);
|
|
537
|
+
ok = 0;
|
|
538
|
+
}
|
|
539
|
+
return (ok);
|
|
540
|
+
}
|
|
541
|
+
|
|
542
|
+
/*
|
|
543
|
+
* Read the specified image into an ABGR-format raster. Use bottom left
|
|
544
|
+
* origin for raster by default.
|
|
545
|
+
*/
|
|
546
|
+
int
|
|
547
|
+
TIFFReadRGBAImage(TIFF* tif,
|
|
548
|
+
uint32 rwidth, uint32 rheight, uint32* raster, int stop)
|
|
549
|
+
{
|
|
550
|
+
return TIFFReadRGBAImageOriented(tif, rwidth, rheight, raster,
|
|
551
|
+
ORIENTATION_BOTLEFT, stop);
|
|
552
|
+
}
|
|
553
|
+
|
|
554
|
+
static int
|
|
555
|
+
setorientation(TIFFRGBAImage* img)
|
|
556
|
+
{
|
|
557
|
+
switch (img->orientation) {
|
|
558
|
+
case ORIENTATION_TOPLEFT:
|
|
559
|
+
case ORIENTATION_LEFTTOP:
|
|
560
|
+
if (img->req_orientation == ORIENTATION_TOPRIGHT ||
|
|
561
|
+
img->req_orientation == ORIENTATION_RIGHTTOP)
|
|
562
|
+
return FLIP_HORIZONTALLY;
|
|
563
|
+
else if (img->req_orientation == ORIENTATION_BOTRIGHT ||
|
|
564
|
+
img->req_orientation == ORIENTATION_RIGHTBOT)
|
|
565
|
+
return FLIP_HORIZONTALLY | FLIP_VERTICALLY;
|
|
566
|
+
else if (img->req_orientation == ORIENTATION_BOTLEFT ||
|
|
567
|
+
img->req_orientation == ORIENTATION_LEFTBOT)
|
|
568
|
+
return FLIP_VERTICALLY;
|
|
569
|
+
else
|
|
570
|
+
return 0;
|
|
571
|
+
case ORIENTATION_TOPRIGHT:
|
|
572
|
+
case ORIENTATION_RIGHTTOP:
|
|
573
|
+
if (img->req_orientation == ORIENTATION_TOPLEFT ||
|
|
574
|
+
img->req_orientation == ORIENTATION_LEFTTOP)
|
|
575
|
+
return FLIP_HORIZONTALLY;
|
|
576
|
+
else if (img->req_orientation == ORIENTATION_BOTRIGHT ||
|
|
577
|
+
img->req_orientation == ORIENTATION_RIGHTBOT)
|
|
578
|
+
return FLIP_VERTICALLY;
|
|
579
|
+
else if (img->req_orientation == ORIENTATION_BOTLEFT ||
|
|
580
|
+
img->req_orientation == ORIENTATION_LEFTBOT)
|
|
581
|
+
return FLIP_HORIZONTALLY | FLIP_VERTICALLY;
|
|
582
|
+
else
|
|
583
|
+
return 0;
|
|
584
|
+
case ORIENTATION_BOTRIGHT:
|
|
585
|
+
case ORIENTATION_RIGHTBOT:
|
|
586
|
+
if (img->req_orientation == ORIENTATION_TOPLEFT ||
|
|
587
|
+
img->req_orientation == ORIENTATION_LEFTTOP)
|
|
588
|
+
return FLIP_HORIZONTALLY | FLIP_VERTICALLY;
|
|
589
|
+
else if (img->req_orientation == ORIENTATION_TOPRIGHT ||
|
|
590
|
+
img->req_orientation == ORIENTATION_RIGHTTOP)
|
|
591
|
+
return FLIP_VERTICALLY;
|
|
592
|
+
else if (img->req_orientation == ORIENTATION_BOTLEFT ||
|
|
593
|
+
img->req_orientation == ORIENTATION_LEFTBOT)
|
|
594
|
+
return FLIP_HORIZONTALLY;
|
|
595
|
+
else
|
|
596
|
+
return 0;
|
|
597
|
+
case ORIENTATION_BOTLEFT:
|
|
598
|
+
case ORIENTATION_LEFTBOT:
|
|
599
|
+
if (img->req_orientation == ORIENTATION_TOPLEFT ||
|
|
600
|
+
img->req_orientation == ORIENTATION_LEFTTOP)
|
|
601
|
+
return FLIP_VERTICALLY;
|
|
602
|
+
else if (img->req_orientation == ORIENTATION_TOPRIGHT ||
|
|
603
|
+
img->req_orientation == ORIENTATION_RIGHTTOP)
|
|
604
|
+
return FLIP_HORIZONTALLY | FLIP_VERTICALLY;
|
|
605
|
+
else if (img->req_orientation == ORIENTATION_BOTRIGHT ||
|
|
606
|
+
img->req_orientation == ORIENTATION_RIGHTBOT)
|
|
607
|
+
return FLIP_HORIZONTALLY;
|
|
608
|
+
else
|
|
609
|
+
return 0;
|
|
610
|
+
default: /* NOTREACHED */
|
|
611
|
+
return 0;
|
|
612
|
+
}
|
|
613
|
+
}
|
|
614
|
+
|
|
615
|
+
/*
|
|
616
|
+
* Get an tile-organized image that has
|
|
617
|
+
* PlanarConfiguration contiguous if SamplesPerPixel > 1
|
|
618
|
+
* or
|
|
619
|
+
* SamplesPerPixel == 1
|
|
620
|
+
*/
|
|
621
|
+
static int
|
|
622
|
+
gtTileContig(TIFFRGBAImage* img, uint32* raster, uint32 w, uint32 h)
|
|
623
|
+
{
|
|
624
|
+
TIFF* tif = img->tif;
|
|
625
|
+
tileContigRoutine put = img->put.contig;
|
|
626
|
+
uint32 col, row, y, rowstoread;
|
|
627
|
+
tmsize_t pos;
|
|
628
|
+
uint32 tw, th;
|
|
629
|
+
unsigned char* buf = NULL;
|
|
630
|
+
int32 fromskew, toskew;
|
|
631
|
+
uint32 nrow;
|
|
632
|
+
int ret = 1, flip;
|
|
633
|
+
uint32 this_tw, tocol;
|
|
634
|
+
int32 this_toskew, leftmost_toskew;
|
|
635
|
+
int32 leftmost_fromskew;
|
|
636
|
+
uint32 leftmost_tw;
|
|
637
|
+
tmsize_t bufsize;
|
|
638
|
+
|
|
639
|
+
bufsize = TIFFTileSize(tif);
|
|
640
|
+
if (bufsize == 0) {
|
|
641
|
+
TIFFErrorExt(tif->tif_clientdata, TIFFFileName(tif), "%s", "No space for tile buffer");
|
|
642
|
+
return (0);
|
|
643
|
+
}
|
|
644
|
+
|
|
645
|
+
TIFFGetField(tif, TIFFTAG_TILEWIDTH, &tw);
|
|
646
|
+
TIFFGetField(tif, TIFFTAG_TILELENGTH, &th);
|
|
647
|
+
|
|
648
|
+
flip = setorientation(img);
|
|
649
|
+
if (flip & FLIP_VERTICALLY) {
|
|
650
|
+
y = h - 1;
|
|
651
|
+
toskew = -(int32)(tw + w);
|
|
652
|
+
}
|
|
653
|
+
else {
|
|
654
|
+
y = 0;
|
|
655
|
+
toskew = -(int32)(tw - w);
|
|
656
|
+
}
|
|
657
|
+
|
|
658
|
+
/*
|
|
659
|
+
* Leftmost tile is clipped on left side if col_offset > 0.
|
|
660
|
+
*/
|
|
661
|
+
leftmost_fromskew = img->col_offset % tw;
|
|
662
|
+
leftmost_tw = tw - leftmost_fromskew;
|
|
663
|
+
leftmost_toskew = toskew + leftmost_fromskew;
|
|
664
|
+
for (row = 0; ret != 0 && row < h; row += nrow)
|
|
665
|
+
{
|
|
666
|
+
rowstoread = th - (row + img->row_offset) % th;
|
|
667
|
+
nrow = (row + rowstoread > h ? h - row : rowstoread);
|
|
668
|
+
fromskew = leftmost_fromskew;
|
|
669
|
+
this_tw = leftmost_tw;
|
|
670
|
+
this_toskew = leftmost_toskew;
|
|
671
|
+
tocol = 0;
|
|
672
|
+
col = img->col_offset;
|
|
673
|
+
while (tocol < w)
|
|
674
|
+
{
|
|
675
|
+
if (_TIFFReadTileAndAllocBuffer(tif, (void**) &buf, bufsize, col,
|
|
676
|
+
row+img->row_offset, 0, 0)==(tmsize_t)(-1) &&
|
|
677
|
+
(buf == NULL || img->stoponerr))
|
|
678
|
+
{
|
|
679
|
+
ret = 0;
|
|
680
|
+
break;
|
|
681
|
+
}
|
|
682
|
+
pos = ((row+img->row_offset) % th) * TIFFTileRowSize(tif) + \
|
|
683
|
+
((tmsize_t) fromskew * img->samplesperpixel);
|
|
684
|
+
if (tocol + this_tw > w)
|
|
685
|
+
{
|
|
686
|
+
/*
|
|
687
|
+
* Rightmost tile is clipped on right side.
|
|
688
|
+
*/
|
|
689
|
+
fromskew = tw - (w - tocol);
|
|
690
|
+
this_tw = tw - fromskew;
|
|
691
|
+
this_toskew = toskew + fromskew;
|
|
692
|
+
}
|
|
693
|
+
(*put)(img, raster+y*w+tocol, tocol, y, this_tw, nrow, fromskew, this_toskew, buf + pos);
|
|
694
|
+
tocol += this_tw;
|
|
695
|
+
col += this_tw;
|
|
696
|
+
/*
|
|
697
|
+
* After the leftmost tile, tiles are no longer clipped on left side.
|
|
698
|
+
*/
|
|
699
|
+
fromskew = 0;
|
|
700
|
+
this_tw = tw;
|
|
701
|
+
this_toskew = toskew;
|
|
702
|
+
}
|
|
703
|
+
|
|
704
|
+
y += ((flip & FLIP_VERTICALLY) ? -(int32) nrow : (int32) nrow);
|
|
705
|
+
}
|
|
706
|
+
_TIFFfree(buf);
|
|
707
|
+
|
|
708
|
+
if (flip & FLIP_HORIZONTALLY) {
|
|
709
|
+
uint32 line;
|
|
710
|
+
|
|
711
|
+
for (line = 0; line < h; line++) {
|
|
712
|
+
uint32 *left = raster + (line * w);
|
|
713
|
+
uint32 *right = left + w - 1;
|
|
714
|
+
|
|
715
|
+
while ( left < right ) {
|
|
716
|
+
uint32 temp = *left;
|
|
717
|
+
*left = *right;
|
|
718
|
+
*right = temp;
|
|
719
|
+
left++;
|
|
720
|
+
right--;
|
|
721
|
+
}
|
|
722
|
+
}
|
|
723
|
+
}
|
|
724
|
+
|
|
725
|
+
return (ret);
|
|
726
|
+
}
|
|
727
|
+
|
|
728
|
+
/*
|
|
729
|
+
* Get an tile-organized image that has
|
|
730
|
+
* SamplesPerPixel > 1
|
|
731
|
+
* PlanarConfiguration separated
|
|
732
|
+
* We assume that all such images are RGB.
|
|
733
|
+
*/
|
|
734
|
+
static int
|
|
735
|
+
gtTileSeparate(TIFFRGBAImage* img, uint32* raster, uint32 w, uint32 h)
|
|
736
|
+
{
|
|
737
|
+
TIFF* tif = img->tif;
|
|
738
|
+
tileSeparateRoutine put = img->put.separate;
|
|
739
|
+
uint32 col, row, y, rowstoread;
|
|
740
|
+
tmsize_t pos;
|
|
741
|
+
uint32 tw, th;
|
|
742
|
+
unsigned char* buf = NULL;
|
|
743
|
+
unsigned char* p0 = NULL;
|
|
744
|
+
unsigned char* p1 = NULL;
|
|
745
|
+
unsigned char* p2 = NULL;
|
|
746
|
+
unsigned char* pa = NULL;
|
|
747
|
+
tmsize_t tilesize;
|
|
748
|
+
tmsize_t bufsize;
|
|
749
|
+
int32 fromskew, toskew;
|
|
750
|
+
int alpha = img->alpha;
|
|
751
|
+
uint32 nrow;
|
|
752
|
+
int ret = 1, flip;
|
|
753
|
+
uint16 colorchannels;
|
|
754
|
+
uint32 this_tw, tocol;
|
|
755
|
+
int32 this_toskew, leftmost_toskew;
|
|
756
|
+
int32 leftmost_fromskew;
|
|
757
|
+
uint32 leftmost_tw;
|
|
758
|
+
|
|
759
|
+
tilesize = TIFFTileSize(tif);
|
|
760
|
+
bufsize = TIFFSafeMultiply(tmsize_t,alpha?4:3,tilesize);
|
|
761
|
+
if (bufsize == 0) {
|
|
762
|
+
TIFFErrorExt(tif->tif_clientdata, TIFFFileName(tif), "Integer overflow in %s", "gtTileSeparate");
|
|
763
|
+
return (0);
|
|
764
|
+
}
|
|
765
|
+
|
|
766
|
+
TIFFGetField(tif, TIFFTAG_TILEWIDTH, &tw);
|
|
767
|
+
TIFFGetField(tif, TIFFTAG_TILELENGTH, &th);
|
|
768
|
+
|
|
769
|
+
flip = setorientation(img);
|
|
770
|
+
if (flip & FLIP_VERTICALLY) {
|
|
771
|
+
y = h - 1;
|
|
772
|
+
toskew = -(int32)(tw + w);
|
|
773
|
+
}
|
|
774
|
+
else {
|
|
775
|
+
y = 0;
|
|
776
|
+
toskew = -(int32)(tw - w);
|
|
777
|
+
}
|
|
778
|
+
|
|
779
|
+
switch( img->photometric )
|
|
780
|
+
{
|
|
781
|
+
case PHOTOMETRIC_MINISWHITE:
|
|
782
|
+
case PHOTOMETRIC_MINISBLACK:
|
|
783
|
+
case PHOTOMETRIC_PALETTE:
|
|
784
|
+
colorchannels = 1;
|
|
785
|
+
break;
|
|
786
|
+
|
|
787
|
+
default:
|
|
788
|
+
colorchannels = 3;
|
|
789
|
+
break;
|
|
790
|
+
}
|
|
791
|
+
|
|
792
|
+
/*
|
|
793
|
+
* Leftmost tile is clipped on left side if col_offset > 0.
|
|
794
|
+
*/
|
|
795
|
+
leftmost_fromskew = img->col_offset % tw;
|
|
796
|
+
leftmost_tw = tw - leftmost_fromskew;
|
|
797
|
+
leftmost_toskew = toskew + leftmost_fromskew;
|
|
798
|
+
for (row = 0; ret != 0 && row < h; row += nrow)
|
|
799
|
+
{
|
|
800
|
+
rowstoread = th - (row + img->row_offset) % th;
|
|
801
|
+
nrow = (row + rowstoread > h ? h - row : rowstoread);
|
|
802
|
+
fromskew = leftmost_fromskew;
|
|
803
|
+
this_tw = leftmost_tw;
|
|
804
|
+
this_toskew = leftmost_toskew;
|
|
805
|
+
tocol = 0;
|
|
806
|
+
col = img->col_offset;
|
|
807
|
+
while (tocol < w)
|
|
808
|
+
{
|
|
809
|
+
if( buf == NULL )
|
|
810
|
+
{
|
|
811
|
+
if (_TIFFReadTileAndAllocBuffer(
|
|
812
|
+
tif, (void**) &buf, bufsize, col,
|
|
813
|
+
row+img->row_offset,0,0)==(tmsize_t)(-1)
|
|
814
|
+
&& (buf == NULL || img->stoponerr))
|
|
815
|
+
{
|
|
816
|
+
ret = 0;
|
|
817
|
+
break;
|
|
818
|
+
}
|
|
819
|
+
p0 = buf;
|
|
820
|
+
if( colorchannels == 1 )
|
|
821
|
+
{
|
|
822
|
+
p2 = p1 = p0;
|
|
823
|
+
pa = (alpha?(p0+3*tilesize):NULL);
|
|
824
|
+
}
|
|
825
|
+
else
|
|
826
|
+
{
|
|
827
|
+
p1 = p0 + tilesize;
|
|
828
|
+
p2 = p1 + tilesize;
|
|
829
|
+
pa = (alpha?(p2+tilesize):NULL);
|
|
830
|
+
}
|
|
831
|
+
}
|
|
832
|
+
else if (TIFFReadTile(tif, p0, col,
|
|
833
|
+
row+img->row_offset,0,0)==(tmsize_t)(-1) && img->stoponerr)
|
|
834
|
+
{
|
|
835
|
+
ret = 0;
|
|
836
|
+
break;
|
|
837
|
+
}
|
|
838
|
+
if (colorchannels > 1
|
|
839
|
+
&& TIFFReadTile(tif, p1, col,
|
|
840
|
+
row+img->row_offset,0,1) == (tmsize_t)(-1)
|
|
841
|
+
&& img->stoponerr)
|
|
842
|
+
{
|
|
843
|
+
ret = 0;
|
|
844
|
+
break;
|
|
845
|
+
}
|
|
846
|
+
if (colorchannels > 1
|
|
847
|
+
&& TIFFReadTile(tif, p2, col,
|
|
848
|
+
row+img->row_offset,0,2) == (tmsize_t)(-1)
|
|
849
|
+
&& img->stoponerr)
|
|
850
|
+
{
|
|
851
|
+
ret = 0;
|
|
852
|
+
break;
|
|
853
|
+
}
|
|
854
|
+
if (alpha
|
|
855
|
+
&& TIFFReadTile(tif,pa,col,
|
|
856
|
+
row+img->row_offset,0,colorchannels) == (tmsize_t)(-1)
|
|
857
|
+
&& img->stoponerr)
|
|
858
|
+
{
|
|
859
|
+
ret = 0;
|
|
860
|
+
break;
|
|
861
|
+
}
|
|
862
|
+
|
|
863
|
+
pos = ((row+img->row_offset) % th) * TIFFTileRowSize(tif) + \
|
|
864
|
+
((tmsize_t) fromskew * img->samplesperpixel);
|
|
865
|
+
if (tocol + this_tw > w)
|
|
866
|
+
{
|
|
867
|
+
/*
|
|
868
|
+
* Rightmost tile is clipped on right side.
|
|
869
|
+
*/
|
|
870
|
+
fromskew = tw - (w - tocol);
|
|
871
|
+
this_tw = tw - fromskew;
|
|
872
|
+
this_toskew = toskew + fromskew;
|
|
873
|
+
}
|
|
874
|
+
(*put)(img, raster+y*w+tocol, tocol, y, this_tw, nrow, fromskew, this_toskew, \
|
|
875
|
+
p0 + pos, p1 + pos, p2 + pos, (alpha?(pa+pos):NULL));
|
|
876
|
+
tocol += this_tw;
|
|
877
|
+
col += this_tw;
|
|
878
|
+
/*
|
|
879
|
+
* After the leftmost tile, tiles are no longer clipped on left side.
|
|
880
|
+
*/
|
|
881
|
+
fromskew = 0;
|
|
882
|
+
this_tw = tw;
|
|
883
|
+
this_toskew = toskew;
|
|
884
|
+
}
|
|
885
|
+
|
|
886
|
+
y += ((flip & FLIP_VERTICALLY) ?-(int32) nrow : (int32) nrow);
|
|
887
|
+
}
|
|
888
|
+
|
|
889
|
+
if (flip & FLIP_HORIZONTALLY) {
|
|
890
|
+
uint32 line;
|
|
891
|
+
|
|
892
|
+
for (line = 0; line < h; line++) {
|
|
893
|
+
uint32 *left = raster + (line * w);
|
|
894
|
+
uint32 *right = left + w - 1;
|
|
895
|
+
|
|
896
|
+
while ( left < right ) {
|
|
897
|
+
uint32 temp = *left;
|
|
898
|
+
*left = *right;
|
|
899
|
+
*right = temp;
|
|
900
|
+
left++;
|
|
901
|
+
right--;
|
|
902
|
+
}
|
|
903
|
+
}
|
|
904
|
+
}
|
|
905
|
+
|
|
906
|
+
_TIFFfree(buf);
|
|
907
|
+
return (ret);
|
|
908
|
+
}
|
|
909
|
+
|
|
910
|
+
/*
|
|
911
|
+
* Get a strip-organized image that has
|
|
912
|
+
* PlanarConfiguration contiguous if SamplesPerPixel > 1
|
|
913
|
+
* or
|
|
914
|
+
* SamplesPerPixel == 1
|
|
915
|
+
*/
|
|
916
|
+
static int
|
|
917
|
+
gtStripContig(TIFFRGBAImage* img, uint32* raster, uint32 w, uint32 h)
|
|
918
|
+
{
|
|
919
|
+
TIFF* tif = img->tif;
|
|
920
|
+
tileContigRoutine put = img->put.contig;
|
|
921
|
+
uint32 row, y, nrow, nrowsub, rowstoread;
|
|
922
|
+
tmsize_t pos;
|
|
923
|
+
unsigned char* buf = NULL;
|
|
924
|
+
uint32 rowsperstrip;
|
|
925
|
+
uint16 subsamplinghor,subsamplingver;
|
|
926
|
+
uint32 imagewidth = img->width;
|
|
927
|
+
tmsize_t scanline;
|
|
928
|
+
int32 fromskew, toskew;
|
|
929
|
+
int ret = 1, flip;
|
|
930
|
+
tmsize_t maxstripsize;
|
|
931
|
+
|
|
932
|
+
TIFFGetFieldDefaulted(tif, TIFFTAG_YCBCRSUBSAMPLING, &subsamplinghor, &subsamplingver);
|
|
933
|
+
if( subsamplingver == 0 ) {
|
|
934
|
+
TIFFErrorExt(tif->tif_clientdata, TIFFFileName(tif), "Invalid vertical YCbCr subsampling");
|
|
935
|
+
return (0);
|
|
936
|
+
}
|
|
937
|
+
|
|
938
|
+
maxstripsize = TIFFStripSize(tif);
|
|
939
|
+
|
|
940
|
+
flip = setorientation(img);
|
|
941
|
+
if (flip & FLIP_VERTICALLY) {
|
|
942
|
+
y = h - 1;
|
|
943
|
+
toskew = -(int32)(w + w);
|
|
944
|
+
} else {
|
|
945
|
+
y = 0;
|
|
946
|
+
toskew = -(int32)(w - w);
|
|
947
|
+
}
|
|
948
|
+
|
|
949
|
+
TIFFGetFieldDefaulted(tif, TIFFTAG_ROWSPERSTRIP, &rowsperstrip);
|
|
950
|
+
|
|
951
|
+
scanline = TIFFScanlineSize(tif);
|
|
952
|
+
fromskew = (w < imagewidth ? imagewidth - w : 0);
|
|
953
|
+
for (row = 0; row < h; row += nrow)
|
|
954
|
+
{
|
|
955
|
+
rowstoread = rowsperstrip - (row + img->row_offset) % rowsperstrip;
|
|
956
|
+
nrow = (row + rowstoread > h ? h - row : rowstoread);
|
|
957
|
+
nrowsub = nrow;
|
|
958
|
+
if ((nrowsub%subsamplingver)!=0)
|
|
959
|
+
nrowsub+=subsamplingver-nrowsub%subsamplingver;
|
|
960
|
+
if (_TIFFReadEncodedStripAndAllocBuffer(tif,
|
|
961
|
+
TIFFComputeStrip(tif,row+img->row_offset, 0),
|
|
962
|
+
(void**)(&buf),
|
|
963
|
+
maxstripsize,
|
|
964
|
+
((row + img->row_offset)%rowsperstrip + nrowsub) * scanline)==(tmsize_t)(-1)
|
|
965
|
+
&& (buf == NULL || img->stoponerr))
|
|
966
|
+
{
|
|
967
|
+
ret = 0;
|
|
968
|
+
break;
|
|
969
|
+
}
|
|
970
|
+
|
|
971
|
+
pos = ((row + img->row_offset) % rowsperstrip) * scanline + \
|
|
972
|
+
((tmsize_t) img->col_offset * img->samplesperpixel);
|
|
973
|
+
(*put)(img, raster+y*w, 0, y, w, nrow, fromskew, toskew, buf + pos);
|
|
974
|
+
y += ((flip & FLIP_VERTICALLY) ? -(int32) nrow : (int32) nrow);
|
|
975
|
+
}
|
|
976
|
+
|
|
977
|
+
if (flip & FLIP_HORIZONTALLY) {
|
|
978
|
+
uint32 line;
|
|
979
|
+
|
|
980
|
+
for (line = 0; line < h; line++) {
|
|
981
|
+
uint32 *left = raster + (line * w);
|
|
982
|
+
uint32 *right = left + w - 1;
|
|
983
|
+
|
|
984
|
+
while ( left < right ) {
|
|
985
|
+
uint32 temp = *left;
|
|
986
|
+
*left = *right;
|
|
987
|
+
*right = temp;
|
|
988
|
+
left++;
|
|
989
|
+
right--;
|
|
990
|
+
}
|
|
991
|
+
}
|
|
992
|
+
}
|
|
993
|
+
|
|
994
|
+
_TIFFfree(buf);
|
|
995
|
+
return (ret);
|
|
996
|
+
}
|
|
997
|
+
|
|
998
|
+
/*
|
|
999
|
+
* Get a strip-organized image with
|
|
1000
|
+
* SamplesPerPixel > 1
|
|
1001
|
+
* PlanarConfiguration separated
|
|
1002
|
+
* We assume that all such images are RGB.
|
|
1003
|
+
*/
|
|
1004
|
+
static int
|
|
1005
|
+
gtStripSeparate(TIFFRGBAImage* img, uint32* raster, uint32 w, uint32 h)
|
|
1006
|
+
{
|
|
1007
|
+
TIFF* tif = img->tif;
|
|
1008
|
+
tileSeparateRoutine put = img->put.separate;
|
|
1009
|
+
unsigned char *buf = NULL;
|
|
1010
|
+
unsigned char *p0 = NULL, *p1 = NULL, *p2 = NULL, *pa = NULL;
|
|
1011
|
+
uint32 row, y, nrow, rowstoread;
|
|
1012
|
+
tmsize_t pos;
|
|
1013
|
+
tmsize_t scanline;
|
|
1014
|
+
uint32 rowsperstrip, offset_row;
|
|
1015
|
+
uint32 imagewidth = img->width;
|
|
1016
|
+
tmsize_t stripsize;
|
|
1017
|
+
tmsize_t bufsize;
|
|
1018
|
+
int32 fromskew, toskew;
|
|
1019
|
+
int alpha = img->alpha;
|
|
1020
|
+
int ret = 1, flip;
|
|
1021
|
+
uint16 colorchannels;
|
|
1022
|
+
|
|
1023
|
+
stripsize = TIFFStripSize(tif);
|
|
1024
|
+
bufsize = TIFFSafeMultiply(tmsize_t,alpha?4:3,stripsize);
|
|
1025
|
+
if (bufsize == 0) {
|
|
1026
|
+
TIFFErrorExt(tif->tif_clientdata, TIFFFileName(tif), "Integer overflow in %s", "gtStripSeparate");
|
|
1027
|
+
return (0);
|
|
1028
|
+
}
|
|
1029
|
+
|
|
1030
|
+
flip = setorientation(img);
|
|
1031
|
+
if (flip & FLIP_VERTICALLY) {
|
|
1032
|
+
y = h - 1;
|
|
1033
|
+
toskew = -(int32)(w + w);
|
|
1034
|
+
}
|
|
1035
|
+
else {
|
|
1036
|
+
y = 0;
|
|
1037
|
+
toskew = -(int32)(w - w);
|
|
1038
|
+
}
|
|
1039
|
+
|
|
1040
|
+
switch( img->photometric )
|
|
1041
|
+
{
|
|
1042
|
+
case PHOTOMETRIC_MINISWHITE:
|
|
1043
|
+
case PHOTOMETRIC_MINISBLACK:
|
|
1044
|
+
case PHOTOMETRIC_PALETTE:
|
|
1045
|
+
colorchannels = 1;
|
|
1046
|
+
break;
|
|
1047
|
+
|
|
1048
|
+
default:
|
|
1049
|
+
colorchannels = 3;
|
|
1050
|
+
break;
|
|
1051
|
+
}
|
|
1052
|
+
|
|
1053
|
+
TIFFGetFieldDefaulted(tif, TIFFTAG_ROWSPERSTRIP, &rowsperstrip);
|
|
1054
|
+
scanline = TIFFScanlineSize(tif);
|
|
1055
|
+
fromskew = (w < imagewidth ? imagewidth - w : 0);
|
|
1056
|
+
for (row = 0; row < h; row += nrow)
|
|
1057
|
+
{
|
|
1058
|
+
rowstoread = rowsperstrip - (row + img->row_offset) % rowsperstrip;
|
|
1059
|
+
nrow = (row + rowstoread > h ? h - row : rowstoread);
|
|
1060
|
+
offset_row = row + img->row_offset;
|
|
1061
|
+
if( buf == NULL )
|
|
1062
|
+
{
|
|
1063
|
+
if (_TIFFReadEncodedStripAndAllocBuffer(
|
|
1064
|
+
tif, TIFFComputeStrip(tif, offset_row, 0),
|
|
1065
|
+
(void**) &buf, bufsize,
|
|
1066
|
+
((row + img->row_offset)%rowsperstrip + nrow) * scanline)==(tmsize_t)(-1)
|
|
1067
|
+
&& (buf == NULL || img->stoponerr))
|
|
1068
|
+
{
|
|
1069
|
+
ret = 0;
|
|
1070
|
+
break;
|
|
1071
|
+
}
|
|
1072
|
+
p0 = buf;
|
|
1073
|
+
if( colorchannels == 1 )
|
|
1074
|
+
{
|
|
1075
|
+
p2 = p1 = p0;
|
|
1076
|
+
pa = (alpha?(p0+3*stripsize):NULL);
|
|
1077
|
+
}
|
|
1078
|
+
else
|
|
1079
|
+
{
|
|
1080
|
+
p1 = p0 + stripsize;
|
|
1081
|
+
p2 = p1 + stripsize;
|
|
1082
|
+
pa = (alpha?(p2+stripsize):NULL);
|
|
1083
|
+
}
|
|
1084
|
+
}
|
|
1085
|
+
else if (TIFFReadEncodedStrip(tif, TIFFComputeStrip(tif, offset_row, 0),
|
|
1086
|
+
p0, ((row + img->row_offset)%rowsperstrip + nrow) * scanline)==(tmsize_t)(-1)
|
|
1087
|
+
&& img->stoponerr)
|
|
1088
|
+
{
|
|
1089
|
+
ret = 0;
|
|
1090
|
+
break;
|
|
1091
|
+
}
|
|
1092
|
+
if (colorchannels > 1
|
|
1093
|
+
&& TIFFReadEncodedStrip(tif, TIFFComputeStrip(tif, offset_row, 1),
|
|
1094
|
+
p1, ((row + img->row_offset)%rowsperstrip + nrow) * scanline) == (tmsize_t)(-1)
|
|
1095
|
+
&& img->stoponerr)
|
|
1096
|
+
{
|
|
1097
|
+
ret = 0;
|
|
1098
|
+
break;
|
|
1099
|
+
}
|
|
1100
|
+
if (colorchannels > 1
|
|
1101
|
+
&& TIFFReadEncodedStrip(tif, TIFFComputeStrip(tif, offset_row, 2),
|
|
1102
|
+
p2, ((row + img->row_offset)%rowsperstrip + nrow) * scanline) == (tmsize_t)(-1)
|
|
1103
|
+
&& img->stoponerr)
|
|
1104
|
+
{
|
|
1105
|
+
ret = 0;
|
|
1106
|
+
break;
|
|
1107
|
+
}
|
|
1108
|
+
if (alpha)
|
|
1109
|
+
{
|
|
1110
|
+
if (TIFFReadEncodedStrip(tif, TIFFComputeStrip(tif, offset_row, colorchannels),
|
|
1111
|
+
pa, ((row + img->row_offset)%rowsperstrip + nrow) * scanline)==(tmsize_t)(-1)
|
|
1112
|
+
&& img->stoponerr)
|
|
1113
|
+
{
|
|
1114
|
+
ret = 0;
|
|
1115
|
+
break;
|
|
1116
|
+
}
|
|
1117
|
+
}
|
|
1118
|
+
|
|
1119
|
+
pos = ((row + img->row_offset) % rowsperstrip) * scanline + \
|
|
1120
|
+
((tmsize_t) img->col_offset * img->samplesperpixel);
|
|
1121
|
+
(*put)(img, raster+y*w, 0, y, w, nrow, fromskew, toskew, p0 + pos, p1 + pos,
|
|
1122
|
+
p2 + pos, (alpha?(pa+pos):NULL));
|
|
1123
|
+
y += ((flip & FLIP_VERTICALLY) ? -(int32) nrow : (int32) nrow);
|
|
1124
|
+
}
|
|
1125
|
+
|
|
1126
|
+
if (flip & FLIP_HORIZONTALLY) {
|
|
1127
|
+
uint32 line;
|
|
1128
|
+
|
|
1129
|
+
for (line = 0; line < h; line++) {
|
|
1130
|
+
uint32 *left = raster + (line * w);
|
|
1131
|
+
uint32 *right = left + w - 1;
|
|
1132
|
+
|
|
1133
|
+
while ( left < right ) {
|
|
1134
|
+
uint32 temp = *left;
|
|
1135
|
+
*left = *right;
|
|
1136
|
+
*right = temp;
|
|
1137
|
+
left++;
|
|
1138
|
+
right--;
|
|
1139
|
+
}
|
|
1140
|
+
}
|
|
1141
|
+
}
|
|
1142
|
+
|
|
1143
|
+
_TIFFfree(buf);
|
|
1144
|
+
return (ret);
|
|
1145
|
+
}
|
|
1146
|
+
|
|
1147
|
+
/*
|
|
1148
|
+
* The following routines move decoded data returned
|
|
1149
|
+
* from the TIFF library into rasters filled with packed
|
|
1150
|
+
* ABGR pixels (i.e. suitable for passing to lrecwrite.)
|
|
1151
|
+
*
|
|
1152
|
+
* The routines have been created according to the most
|
|
1153
|
+
* important cases and optimized. PickContigCase and
|
|
1154
|
+
* PickSeparateCase analyze the parameters and select
|
|
1155
|
+
* the appropriate "get" and "put" routine to use.
|
|
1156
|
+
*/
|
|
1157
|
+
#define REPEAT8(op) REPEAT4(op); REPEAT4(op)
|
|
1158
|
+
#define REPEAT4(op) REPEAT2(op); REPEAT2(op)
|
|
1159
|
+
#define REPEAT2(op) op; op
|
|
1160
|
+
#define CASE8(x,op) \
|
|
1161
|
+
switch (x) { \
|
|
1162
|
+
case 7: op; /*-fallthrough*/ \
|
|
1163
|
+
case 6: op; /*-fallthrough*/ \
|
|
1164
|
+
case 5: op; /*-fallthrough*/ \
|
|
1165
|
+
case 4: op; /*-fallthrough*/ \
|
|
1166
|
+
case 3: op; /*-fallthrough*/ \
|
|
1167
|
+
case 2: op; /*-fallthrough*/ \
|
|
1168
|
+
case 1: op; \
|
|
1169
|
+
}
|
|
1170
|
+
#define CASE4(x,op) switch (x) { case 3: op; /*-fallthrough*/ case 2: op; /*-fallthrough*/ case 1: op; }
|
|
1171
|
+
#define NOP
|
|
1172
|
+
|
|
1173
|
+
#define UNROLL8(w, op1, op2) { \
|
|
1174
|
+
uint32 _x; \
|
|
1175
|
+
for (_x = w; _x >= 8; _x -= 8) { \
|
|
1176
|
+
op1; \
|
|
1177
|
+
REPEAT8(op2); \
|
|
1178
|
+
} \
|
|
1179
|
+
if (_x > 0) { \
|
|
1180
|
+
op1; \
|
|
1181
|
+
CASE8(_x,op2); \
|
|
1182
|
+
} \
|
|
1183
|
+
}
|
|
1184
|
+
#define UNROLL4(w, op1, op2) { \
|
|
1185
|
+
uint32 _x; \
|
|
1186
|
+
for (_x = w; _x >= 4; _x -= 4) { \
|
|
1187
|
+
op1; \
|
|
1188
|
+
REPEAT4(op2); \
|
|
1189
|
+
} \
|
|
1190
|
+
if (_x > 0) { \
|
|
1191
|
+
op1; \
|
|
1192
|
+
CASE4(_x,op2); \
|
|
1193
|
+
} \
|
|
1194
|
+
}
|
|
1195
|
+
#define UNROLL2(w, op1, op2) { \
|
|
1196
|
+
uint32 _x; \
|
|
1197
|
+
for (_x = w; _x >= 2; _x -= 2) { \
|
|
1198
|
+
op1; \
|
|
1199
|
+
REPEAT2(op2); \
|
|
1200
|
+
} \
|
|
1201
|
+
if (_x) { \
|
|
1202
|
+
op1; \
|
|
1203
|
+
op2; \
|
|
1204
|
+
} \
|
|
1205
|
+
}
|
|
1206
|
+
|
|
1207
|
+
#define SKEW(r,g,b,skew) { r += skew; g += skew; b += skew; }
|
|
1208
|
+
#define SKEW4(r,g,b,a,skew) { r += skew; g += skew; b += skew; a+= skew; }
|
|
1209
|
+
|
|
1210
|
+
#define A1 (((uint32)0xffL)<<24)
|
|
1211
|
+
#define PACK(r,g,b) \
|
|
1212
|
+
((uint32)(r)|((uint32)(g)<<8)|((uint32)(b)<<16)|A1)
|
|
1213
|
+
#define PACK4(r,g,b,a) \
|
|
1214
|
+
((uint32)(r)|((uint32)(g)<<8)|((uint32)(b)<<16)|((uint32)(a)<<24))
|
|
1215
|
+
#define W2B(v) (((v)>>8)&0xff)
|
|
1216
|
+
/* TODO: PACKW should have be made redundant in favor of Bitdepth16To8 LUT */
|
|
1217
|
+
#define PACKW(r,g,b) \
|
|
1218
|
+
((uint32)W2B(r)|((uint32)W2B(g)<<8)|((uint32)W2B(b)<<16)|A1)
|
|
1219
|
+
#define PACKW4(r,g,b,a) \
|
|
1220
|
+
((uint32)W2B(r)|((uint32)W2B(g)<<8)|((uint32)W2B(b)<<16)|((uint32)W2B(a)<<24))
|
|
1221
|
+
|
|
1222
|
+
#define DECLAREContigPutFunc(name) \
|
|
1223
|
+
static void name(\
|
|
1224
|
+
TIFFRGBAImage* img, \
|
|
1225
|
+
uint32* cp, \
|
|
1226
|
+
uint32 x, uint32 y, \
|
|
1227
|
+
uint32 w, uint32 h, \
|
|
1228
|
+
int32 fromskew, int32 toskew, \
|
|
1229
|
+
unsigned char* pp \
|
|
1230
|
+
)
|
|
1231
|
+
|
|
1232
|
+
/*
|
|
1233
|
+
* 8-bit palette => colormap/RGB
|
|
1234
|
+
*/
|
|
1235
|
+
DECLAREContigPutFunc(put8bitcmaptile)
|
|
1236
|
+
{
|
|
1237
|
+
uint32** PALmap = img->PALmap;
|
|
1238
|
+
int samplesperpixel = img->samplesperpixel;
|
|
1239
|
+
|
|
1240
|
+
(void) y;
|
|
1241
|
+
for( ; h > 0; --h) {
|
|
1242
|
+
for (x = w; x > 0; --x)
|
|
1243
|
+
{
|
|
1244
|
+
*cp++ = PALmap[*pp][0];
|
|
1245
|
+
pp += samplesperpixel;
|
|
1246
|
+
}
|
|
1247
|
+
cp += toskew;
|
|
1248
|
+
pp += fromskew;
|
|
1249
|
+
}
|
|
1250
|
+
}
|
|
1251
|
+
|
|
1252
|
+
/*
|
|
1253
|
+
* 4-bit palette => colormap/RGB
|
|
1254
|
+
*/
|
|
1255
|
+
DECLAREContigPutFunc(put4bitcmaptile)
|
|
1256
|
+
{
|
|
1257
|
+
uint32** PALmap = img->PALmap;
|
|
1258
|
+
|
|
1259
|
+
(void) x; (void) y;
|
|
1260
|
+
fromskew /= 2;
|
|
1261
|
+
for( ; h > 0; --h) {
|
|
1262
|
+
uint32* bw;
|
|
1263
|
+
UNROLL2(w, bw = PALmap[*pp++], *cp++ = *bw++);
|
|
1264
|
+
cp += toskew;
|
|
1265
|
+
pp += fromskew;
|
|
1266
|
+
}
|
|
1267
|
+
}
|
|
1268
|
+
|
|
1269
|
+
/*
|
|
1270
|
+
* 2-bit palette => colormap/RGB
|
|
1271
|
+
*/
|
|
1272
|
+
DECLAREContigPutFunc(put2bitcmaptile)
|
|
1273
|
+
{
|
|
1274
|
+
uint32** PALmap = img->PALmap;
|
|
1275
|
+
|
|
1276
|
+
(void) x; (void) y;
|
|
1277
|
+
fromskew /= 4;
|
|
1278
|
+
for( ; h > 0; --h) {
|
|
1279
|
+
uint32* bw;
|
|
1280
|
+
UNROLL4(w, bw = PALmap[*pp++], *cp++ = *bw++);
|
|
1281
|
+
cp += toskew;
|
|
1282
|
+
pp += fromskew;
|
|
1283
|
+
}
|
|
1284
|
+
}
|
|
1285
|
+
|
|
1286
|
+
/*
|
|
1287
|
+
* 1-bit palette => colormap/RGB
|
|
1288
|
+
*/
|
|
1289
|
+
DECLAREContigPutFunc(put1bitcmaptile)
|
|
1290
|
+
{
|
|
1291
|
+
uint32** PALmap = img->PALmap;
|
|
1292
|
+
|
|
1293
|
+
(void) x; (void) y;
|
|
1294
|
+
fromskew /= 8;
|
|
1295
|
+
for( ; h > 0; --h) {
|
|
1296
|
+
uint32* bw;
|
|
1297
|
+
UNROLL8(w, bw = PALmap[*pp++], *cp++ = *bw++);
|
|
1298
|
+
cp += toskew;
|
|
1299
|
+
pp += fromskew;
|
|
1300
|
+
}
|
|
1301
|
+
}
|
|
1302
|
+
|
|
1303
|
+
/*
|
|
1304
|
+
* 8-bit greyscale => colormap/RGB
|
|
1305
|
+
*/
|
|
1306
|
+
DECLAREContigPutFunc(putgreytile)
|
|
1307
|
+
{
|
|
1308
|
+
int samplesperpixel = img->samplesperpixel;
|
|
1309
|
+
uint32** BWmap = img->BWmap;
|
|
1310
|
+
|
|
1311
|
+
(void) y;
|
|
1312
|
+
for( ; h > 0; --h) {
|
|
1313
|
+
for (x = w; x > 0; --x)
|
|
1314
|
+
{
|
|
1315
|
+
*cp++ = BWmap[*pp][0];
|
|
1316
|
+
pp += samplesperpixel;
|
|
1317
|
+
}
|
|
1318
|
+
cp += toskew;
|
|
1319
|
+
pp += fromskew;
|
|
1320
|
+
}
|
|
1321
|
+
}
|
|
1322
|
+
|
|
1323
|
+
/*
|
|
1324
|
+
* 8-bit greyscale with associated alpha => colormap/RGBA
|
|
1325
|
+
*/
|
|
1326
|
+
DECLAREContigPutFunc(putagreytile)
|
|
1327
|
+
{
|
|
1328
|
+
int samplesperpixel = img->samplesperpixel;
|
|
1329
|
+
uint32** BWmap = img->BWmap;
|
|
1330
|
+
|
|
1331
|
+
(void) y;
|
|
1332
|
+
for( ; h > 0; --h) {
|
|
1333
|
+
for (x = w; x > 0; --x)
|
|
1334
|
+
{
|
|
1335
|
+
*cp++ = BWmap[*pp][0] & ((uint32)*(pp+1) << 24 | ~A1);
|
|
1336
|
+
pp += samplesperpixel;
|
|
1337
|
+
}
|
|
1338
|
+
cp += toskew;
|
|
1339
|
+
pp += fromskew;
|
|
1340
|
+
}
|
|
1341
|
+
}
|
|
1342
|
+
|
|
1343
|
+
/*
|
|
1344
|
+
* 16-bit greyscale => colormap/RGB
|
|
1345
|
+
*/
|
|
1346
|
+
DECLAREContigPutFunc(put16bitbwtile)
|
|
1347
|
+
{
|
|
1348
|
+
int samplesperpixel = img->samplesperpixel;
|
|
1349
|
+
uint32** BWmap = img->BWmap;
|
|
1350
|
+
|
|
1351
|
+
(void) y;
|
|
1352
|
+
for( ; h > 0; --h) {
|
|
1353
|
+
uint16 *wp = (uint16 *) pp;
|
|
1354
|
+
|
|
1355
|
+
for (x = w; x > 0; --x)
|
|
1356
|
+
{
|
|
1357
|
+
/* use high order byte of 16bit value */
|
|
1358
|
+
|
|
1359
|
+
*cp++ = BWmap[*wp >> 8][0];
|
|
1360
|
+
pp += 2 * samplesperpixel;
|
|
1361
|
+
wp += samplesperpixel;
|
|
1362
|
+
}
|
|
1363
|
+
cp += toskew;
|
|
1364
|
+
pp += fromskew;
|
|
1365
|
+
}
|
|
1366
|
+
}
|
|
1367
|
+
|
|
1368
|
+
/*
|
|
1369
|
+
* 1-bit bilevel => colormap/RGB
|
|
1370
|
+
*/
|
|
1371
|
+
DECLAREContigPutFunc(put1bitbwtile)
|
|
1372
|
+
{
|
|
1373
|
+
uint32** BWmap = img->BWmap;
|
|
1374
|
+
|
|
1375
|
+
(void) x; (void) y;
|
|
1376
|
+
fromskew /= 8;
|
|
1377
|
+
for( ; h > 0; --h) {
|
|
1378
|
+
uint32* bw;
|
|
1379
|
+
UNROLL8(w, bw = BWmap[*pp++], *cp++ = *bw++);
|
|
1380
|
+
cp += toskew;
|
|
1381
|
+
pp += fromskew;
|
|
1382
|
+
}
|
|
1383
|
+
}
|
|
1384
|
+
|
|
1385
|
+
/*
|
|
1386
|
+
* 2-bit greyscale => colormap/RGB
|
|
1387
|
+
*/
|
|
1388
|
+
DECLAREContigPutFunc(put2bitbwtile)
|
|
1389
|
+
{
|
|
1390
|
+
uint32** BWmap = img->BWmap;
|
|
1391
|
+
|
|
1392
|
+
(void) x; (void) y;
|
|
1393
|
+
fromskew /= 4;
|
|
1394
|
+
for( ; h > 0; --h) {
|
|
1395
|
+
uint32* bw;
|
|
1396
|
+
UNROLL4(w, bw = BWmap[*pp++], *cp++ = *bw++);
|
|
1397
|
+
cp += toskew;
|
|
1398
|
+
pp += fromskew;
|
|
1399
|
+
}
|
|
1400
|
+
}
|
|
1401
|
+
|
|
1402
|
+
/*
|
|
1403
|
+
* 4-bit greyscale => colormap/RGB
|
|
1404
|
+
*/
|
|
1405
|
+
DECLAREContigPutFunc(put4bitbwtile)
|
|
1406
|
+
{
|
|
1407
|
+
uint32** BWmap = img->BWmap;
|
|
1408
|
+
|
|
1409
|
+
(void) x; (void) y;
|
|
1410
|
+
fromskew /= 2;
|
|
1411
|
+
for( ; h > 0; --h) {
|
|
1412
|
+
uint32* bw;
|
|
1413
|
+
UNROLL2(w, bw = BWmap[*pp++], *cp++ = *bw++);
|
|
1414
|
+
cp += toskew;
|
|
1415
|
+
pp += fromskew;
|
|
1416
|
+
}
|
|
1417
|
+
}
|
|
1418
|
+
|
|
1419
|
+
/*
|
|
1420
|
+
* 8-bit packed samples, no Map => RGB
|
|
1421
|
+
*/
|
|
1422
|
+
DECLAREContigPutFunc(putRGBcontig8bittile)
|
|
1423
|
+
{
|
|
1424
|
+
int samplesperpixel = img->samplesperpixel;
|
|
1425
|
+
|
|
1426
|
+
(void) x; (void) y;
|
|
1427
|
+
fromskew *= samplesperpixel;
|
|
1428
|
+
for( ; h > 0; --h) {
|
|
1429
|
+
UNROLL8(w, NOP,
|
|
1430
|
+
*cp++ = PACK(pp[0], pp[1], pp[2]);
|
|
1431
|
+
pp += samplesperpixel);
|
|
1432
|
+
cp += toskew;
|
|
1433
|
+
pp += fromskew;
|
|
1434
|
+
}
|
|
1435
|
+
}
|
|
1436
|
+
|
|
1437
|
+
/*
|
|
1438
|
+
* 8-bit packed samples => RGBA w/ associated alpha
|
|
1439
|
+
* (known to have Map == NULL)
|
|
1440
|
+
*/
|
|
1441
|
+
DECLAREContigPutFunc(putRGBAAcontig8bittile)
|
|
1442
|
+
{
|
|
1443
|
+
int samplesperpixel = img->samplesperpixel;
|
|
1444
|
+
|
|
1445
|
+
(void) x; (void) y;
|
|
1446
|
+
fromskew *= samplesperpixel;
|
|
1447
|
+
for( ; h > 0; --h) {
|
|
1448
|
+
UNROLL8(w, NOP,
|
|
1449
|
+
*cp++ = PACK4(pp[0], pp[1], pp[2], pp[3]);
|
|
1450
|
+
pp += samplesperpixel);
|
|
1451
|
+
cp += toskew;
|
|
1452
|
+
pp += fromskew;
|
|
1453
|
+
}
|
|
1454
|
+
}
|
|
1455
|
+
|
|
1456
|
+
/*
|
|
1457
|
+
* 8-bit packed samples => RGBA w/ unassociated alpha
|
|
1458
|
+
* (known to have Map == NULL)
|
|
1459
|
+
*/
|
|
1460
|
+
DECLAREContigPutFunc(putRGBUAcontig8bittile)
|
|
1461
|
+
{
|
|
1462
|
+
int samplesperpixel = img->samplesperpixel;
|
|
1463
|
+
(void) y;
|
|
1464
|
+
fromskew *= samplesperpixel;
|
|
1465
|
+
for( ; h > 0; --h) {
|
|
1466
|
+
uint32 r, g, b, a;
|
|
1467
|
+
uint8* m;
|
|
1468
|
+
for (x = w; x > 0; --x) {
|
|
1469
|
+
a = pp[3];
|
|
1470
|
+
m = img->UaToAa+((size_t) a<<8);
|
|
1471
|
+
r = m[pp[0]];
|
|
1472
|
+
g = m[pp[1]];
|
|
1473
|
+
b = m[pp[2]];
|
|
1474
|
+
*cp++ = PACK4(r,g,b,a);
|
|
1475
|
+
pp += samplesperpixel;
|
|
1476
|
+
}
|
|
1477
|
+
cp += toskew;
|
|
1478
|
+
pp += fromskew;
|
|
1479
|
+
}
|
|
1480
|
+
}
|
|
1481
|
+
|
|
1482
|
+
/*
|
|
1483
|
+
* 16-bit packed samples => RGB
|
|
1484
|
+
*/
|
|
1485
|
+
DECLAREContigPutFunc(putRGBcontig16bittile)
|
|
1486
|
+
{
|
|
1487
|
+
int samplesperpixel = img->samplesperpixel;
|
|
1488
|
+
uint16 *wp = (uint16 *)pp;
|
|
1489
|
+
(void) y;
|
|
1490
|
+
fromskew *= samplesperpixel;
|
|
1491
|
+
for( ; h > 0; --h) {
|
|
1492
|
+
for (x = w; x > 0; --x) {
|
|
1493
|
+
*cp++ = PACK(img->Bitdepth16To8[wp[0]],
|
|
1494
|
+
img->Bitdepth16To8[wp[1]],
|
|
1495
|
+
img->Bitdepth16To8[wp[2]]);
|
|
1496
|
+
wp += samplesperpixel;
|
|
1497
|
+
}
|
|
1498
|
+
cp += toskew;
|
|
1499
|
+
wp += fromskew;
|
|
1500
|
+
}
|
|
1501
|
+
}
|
|
1502
|
+
|
|
1503
|
+
/*
|
|
1504
|
+
* 16-bit packed samples => RGBA w/ associated alpha
|
|
1505
|
+
* (known to have Map == NULL)
|
|
1506
|
+
*/
|
|
1507
|
+
DECLAREContigPutFunc(putRGBAAcontig16bittile)
|
|
1508
|
+
{
|
|
1509
|
+
int samplesperpixel = img->samplesperpixel;
|
|
1510
|
+
uint16 *wp = (uint16 *)pp;
|
|
1511
|
+
(void) y;
|
|
1512
|
+
fromskew *= samplesperpixel;
|
|
1513
|
+
for( ; h > 0; --h) {
|
|
1514
|
+
for (x = w; x > 0; --x) {
|
|
1515
|
+
*cp++ = PACK4(img->Bitdepth16To8[wp[0]],
|
|
1516
|
+
img->Bitdepth16To8[wp[1]],
|
|
1517
|
+
img->Bitdepth16To8[wp[2]],
|
|
1518
|
+
img->Bitdepth16To8[wp[3]]);
|
|
1519
|
+
wp += samplesperpixel;
|
|
1520
|
+
}
|
|
1521
|
+
cp += toskew;
|
|
1522
|
+
wp += fromskew;
|
|
1523
|
+
}
|
|
1524
|
+
}
|
|
1525
|
+
|
|
1526
|
+
/*
|
|
1527
|
+
* 16-bit packed samples => RGBA w/ unassociated alpha
|
|
1528
|
+
* (known to have Map == NULL)
|
|
1529
|
+
*/
|
|
1530
|
+
DECLAREContigPutFunc(putRGBUAcontig16bittile)
|
|
1531
|
+
{
|
|
1532
|
+
int samplesperpixel = img->samplesperpixel;
|
|
1533
|
+
uint16 *wp = (uint16 *)pp;
|
|
1534
|
+
(void) y;
|
|
1535
|
+
fromskew *= samplesperpixel;
|
|
1536
|
+
for( ; h > 0; --h) {
|
|
1537
|
+
uint32 r,g,b,a;
|
|
1538
|
+
uint8* m;
|
|
1539
|
+
for (x = w; x > 0; --x) {
|
|
1540
|
+
a = img->Bitdepth16To8[wp[3]];
|
|
1541
|
+
m = img->UaToAa+((size_t) a<<8);
|
|
1542
|
+
r = m[img->Bitdepth16To8[wp[0]]];
|
|
1543
|
+
g = m[img->Bitdepth16To8[wp[1]]];
|
|
1544
|
+
b = m[img->Bitdepth16To8[wp[2]]];
|
|
1545
|
+
*cp++ = PACK4(r,g,b,a);
|
|
1546
|
+
wp += samplesperpixel;
|
|
1547
|
+
}
|
|
1548
|
+
cp += toskew;
|
|
1549
|
+
wp += fromskew;
|
|
1550
|
+
}
|
|
1551
|
+
}
|
|
1552
|
+
|
|
1553
|
+
/*
|
|
1554
|
+
* 8-bit packed CMYK samples w/o Map => RGB
|
|
1555
|
+
*
|
|
1556
|
+
* NB: The conversion of CMYK->RGB is *very* crude.
|
|
1557
|
+
*/
|
|
1558
|
+
DECLAREContigPutFunc(putRGBcontig8bitCMYKtile)
|
|
1559
|
+
{
|
|
1560
|
+
int samplesperpixel = img->samplesperpixel;
|
|
1561
|
+
uint16 r, g, b, k;
|
|
1562
|
+
|
|
1563
|
+
(void) x; (void) y;
|
|
1564
|
+
fromskew *= samplesperpixel;
|
|
1565
|
+
for( ; h > 0; --h) {
|
|
1566
|
+
UNROLL8(w, NOP,
|
|
1567
|
+
k = 255 - pp[3];
|
|
1568
|
+
r = (k*(255-pp[0]))/255;
|
|
1569
|
+
g = (k*(255-pp[1]))/255;
|
|
1570
|
+
b = (k*(255-pp[2]))/255;
|
|
1571
|
+
*cp++ = PACK(r, g, b);
|
|
1572
|
+
pp += samplesperpixel);
|
|
1573
|
+
cp += toskew;
|
|
1574
|
+
pp += fromskew;
|
|
1575
|
+
}
|
|
1576
|
+
}
|
|
1577
|
+
|
|
1578
|
+
/*
|
|
1579
|
+
* 8-bit packed CMYK samples w/Map => RGB
|
|
1580
|
+
*
|
|
1581
|
+
* NB: The conversion of CMYK->RGB is *very* crude.
|
|
1582
|
+
*/
|
|
1583
|
+
DECLAREContigPutFunc(putRGBcontig8bitCMYKMaptile)
|
|
1584
|
+
{
|
|
1585
|
+
int samplesperpixel = img->samplesperpixel;
|
|
1586
|
+
TIFFRGBValue* Map = img->Map;
|
|
1587
|
+
uint16 r, g, b, k;
|
|
1588
|
+
|
|
1589
|
+
(void) y;
|
|
1590
|
+
fromskew *= samplesperpixel;
|
|
1591
|
+
for( ; h > 0; --h) {
|
|
1592
|
+
for (x = w; x > 0; --x) {
|
|
1593
|
+
k = 255 - pp[3];
|
|
1594
|
+
r = (k*(255-pp[0]))/255;
|
|
1595
|
+
g = (k*(255-pp[1]))/255;
|
|
1596
|
+
b = (k*(255-pp[2]))/255;
|
|
1597
|
+
*cp++ = PACK(Map[r], Map[g], Map[b]);
|
|
1598
|
+
pp += samplesperpixel;
|
|
1599
|
+
}
|
|
1600
|
+
pp += fromskew;
|
|
1601
|
+
cp += toskew;
|
|
1602
|
+
}
|
|
1603
|
+
}
|
|
1604
|
+
|
|
1605
|
+
#define DECLARESepPutFunc(name) \
|
|
1606
|
+
static void name(\
|
|
1607
|
+
TIFFRGBAImage* img,\
|
|
1608
|
+
uint32* cp,\
|
|
1609
|
+
uint32 x, uint32 y, \
|
|
1610
|
+
uint32 w, uint32 h,\
|
|
1611
|
+
int32 fromskew, int32 toskew,\
|
|
1612
|
+
unsigned char* r, unsigned char* g, unsigned char* b, unsigned char* a\
|
|
1613
|
+
)
|
|
1614
|
+
|
|
1615
|
+
/*
|
|
1616
|
+
* 8-bit unpacked samples => RGB
|
|
1617
|
+
*/
|
|
1618
|
+
DECLARESepPutFunc(putRGBseparate8bittile)
|
|
1619
|
+
{
|
|
1620
|
+
(void) img; (void) x; (void) y; (void) a;
|
|
1621
|
+
for( ; h > 0; --h) {
|
|
1622
|
+
UNROLL8(w, NOP, *cp++ = PACK(*r++, *g++, *b++));
|
|
1623
|
+
SKEW(r, g, b, fromskew);
|
|
1624
|
+
cp += toskew;
|
|
1625
|
+
}
|
|
1626
|
+
}
|
|
1627
|
+
|
|
1628
|
+
/*
|
|
1629
|
+
* 8-bit unpacked samples => RGBA w/ associated alpha
|
|
1630
|
+
*/
|
|
1631
|
+
DECLARESepPutFunc(putRGBAAseparate8bittile)
|
|
1632
|
+
{
|
|
1633
|
+
(void) img; (void) x; (void) y;
|
|
1634
|
+
for( ; h > 0; --h) {
|
|
1635
|
+
UNROLL8(w, NOP, *cp++ = PACK4(*r++, *g++, *b++, *a++));
|
|
1636
|
+
SKEW4(r, g, b, a, fromskew);
|
|
1637
|
+
cp += toskew;
|
|
1638
|
+
}
|
|
1639
|
+
}
|
|
1640
|
+
|
|
1641
|
+
/*
|
|
1642
|
+
* 8-bit unpacked CMYK samples => RGBA
|
|
1643
|
+
*/
|
|
1644
|
+
DECLARESepPutFunc(putCMYKseparate8bittile)
|
|
1645
|
+
{
|
|
1646
|
+
(void) img; (void) y;
|
|
1647
|
+
for( ; h > 0; --h) {
|
|
1648
|
+
uint32 rv, gv, bv, kv;
|
|
1649
|
+
for (x = w; x > 0; --x) {
|
|
1650
|
+
kv = 255 - *a++;
|
|
1651
|
+
rv = (kv*(255-*r++))/255;
|
|
1652
|
+
gv = (kv*(255-*g++))/255;
|
|
1653
|
+
bv = (kv*(255-*b++))/255;
|
|
1654
|
+
*cp++ = PACK4(rv,gv,bv,255);
|
|
1655
|
+
}
|
|
1656
|
+
SKEW4(r, g, b, a, fromskew);
|
|
1657
|
+
cp += toskew;
|
|
1658
|
+
}
|
|
1659
|
+
}
|
|
1660
|
+
|
|
1661
|
+
/*
|
|
1662
|
+
* 8-bit unpacked samples => RGBA w/ unassociated alpha
|
|
1663
|
+
*/
|
|
1664
|
+
DECLARESepPutFunc(putRGBUAseparate8bittile)
|
|
1665
|
+
{
|
|
1666
|
+
(void) img; (void) y;
|
|
1667
|
+
for( ; h > 0; --h) {
|
|
1668
|
+
uint32 rv, gv, bv, av;
|
|
1669
|
+
uint8* m;
|
|
1670
|
+
for (x = w; x > 0; --x) {
|
|
1671
|
+
av = *a++;
|
|
1672
|
+
m = img->UaToAa+((size_t) av<<8);
|
|
1673
|
+
rv = m[*r++];
|
|
1674
|
+
gv = m[*g++];
|
|
1675
|
+
bv = m[*b++];
|
|
1676
|
+
*cp++ = PACK4(rv,gv,bv,av);
|
|
1677
|
+
}
|
|
1678
|
+
SKEW4(r, g, b, a, fromskew);
|
|
1679
|
+
cp += toskew;
|
|
1680
|
+
}
|
|
1681
|
+
}
|
|
1682
|
+
|
|
1683
|
+
/*
|
|
1684
|
+
* 16-bit unpacked samples => RGB
|
|
1685
|
+
*/
|
|
1686
|
+
DECLARESepPutFunc(putRGBseparate16bittile)
|
|
1687
|
+
{
|
|
1688
|
+
uint16 *wr = (uint16*) r;
|
|
1689
|
+
uint16 *wg = (uint16*) g;
|
|
1690
|
+
uint16 *wb = (uint16*) b;
|
|
1691
|
+
(void) img; (void) y; (void) a;
|
|
1692
|
+
for( ; h > 0; --h) {
|
|
1693
|
+
for (x = 0; x < w; x++)
|
|
1694
|
+
*cp++ = PACK(img->Bitdepth16To8[*wr++],
|
|
1695
|
+
img->Bitdepth16To8[*wg++],
|
|
1696
|
+
img->Bitdepth16To8[*wb++]);
|
|
1697
|
+
SKEW(wr, wg, wb, fromskew);
|
|
1698
|
+
cp += toskew;
|
|
1699
|
+
}
|
|
1700
|
+
}
|
|
1701
|
+
|
|
1702
|
+
/*
|
|
1703
|
+
* 16-bit unpacked samples => RGBA w/ associated alpha
|
|
1704
|
+
*/
|
|
1705
|
+
DECLARESepPutFunc(putRGBAAseparate16bittile)
|
|
1706
|
+
{
|
|
1707
|
+
uint16 *wr = (uint16*) r;
|
|
1708
|
+
uint16 *wg = (uint16*) g;
|
|
1709
|
+
uint16 *wb = (uint16*) b;
|
|
1710
|
+
uint16 *wa = (uint16*) a;
|
|
1711
|
+
(void) img; (void) y;
|
|
1712
|
+
for( ; h > 0; --h) {
|
|
1713
|
+
for (x = 0; x < w; x++)
|
|
1714
|
+
*cp++ = PACK4(img->Bitdepth16To8[*wr++],
|
|
1715
|
+
img->Bitdepth16To8[*wg++],
|
|
1716
|
+
img->Bitdepth16To8[*wb++],
|
|
1717
|
+
img->Bitdepth16To8[*wa++]);
|
|
1718
|
+
SKEW4(wr, wg, wb, wa, fromskew);
|
|
1719
|
+
cp += toskew;
|
|
1720
|
+
}
|
|
1721
|
+
}
|
|
1722
|
+
|
|
1723
|
+
/*
|
|
1724
|
+
* 16-bit unpacked samples => RGBA w/ unassociated alpha
|
|
1725
|
+
*/
|
|
1726
|
+
DECLARESepPutFunc(putRGBUAseparate16bittile)
|
|
1727
|
+
{
|
|
1728
|
+
uint16 *wr = (uint16*) r;
|
|
1729
|
+
uint16 *wg = (uint16*) g;
|
|
1730
|
+
uint16 *wb = (uint16*) b;
|
|
1731
|
+
uint16 *wa = (uint16*) a;
|
|
1732
|
+
(void) img; (void) y;
|
|
1733
|
+
for( ; h > 0; --h) {
|
|
1734
|
+
uint32 r2,g2,b2,a2;
|
|
1735
|
+
uint8* m;
|
|
1736
|
+
for (x = w; x > 0; --x) {
|
|
1737
|
+
a2 = img->Bitdepth16To8[*wa++];
|
|
1738
|
+
m = img->UaToAa+((size_t) a2<<8);
|
|
1739
|
+
r2 = m[img->Bitdepth16To8[*wr++]];
|
|
1740
|
+
g2 = m[img->Bitdepth16To8[*wg++]];
|
|
1741
|
+
b2 = m[img->Bitdepth16To8[*wb++]];
|
|
1742
|
+
*cp++ = PACK4(r2,g2,b2,a2);
|
|
1743
|
+
}
|
|
1744
|
+
SKEW4(wr, wg, wb, wa, fromskew);
|
|
1745
|
+
cp += toskew;
|
|
1746
|
+
}
|
|
1747
|
+
}
|
|
1748
|
+
|
|
1749
|
+
/*
|
|
1750
|
+
* 8-bit packed CIE L*a*b 1976 samples => RGB
|
|
1751
|
+
*/
|
|
1752
|
+
DECLAREContigPutFunc(putcontig8bitCIELab)
|
|
1753
|
+
{
|
|
1754
|
+
float X, Y, Z;
|
|
1755
|
+
uint32 r, g, b;
|
|
1756
|
+
(void) y;
|
|
1757
|
+
fromskew *= 3;
|
|
1758
|
+
for( ; h > 0; --h) {
|
|
1759
|
+
for (x = w; x > 0; --x) {
|
|
1760
|
+
TIFFCIELabToXYZ(img->cielab,
|
|
1761
|
+
(unsigned char)pp[0],
|
|
1762
|
+
(signed char)pp[1],
|
|
1763
|
+
(signed char)pp[2],
|
|
1764
|
+
&X, &Y, &Z);
|
|
1765
|
+
TIFFXYZToRGB(img->cielab, X, Y, Z, &r, &g, &b);
|
|
1766
|
+
*cp++ = PACK(r, g, b);
|
|
1767
|
+
pp += 3;
|
|
1768
|
+
}
|
|
1769
|
+
cp += toskew;
|
|
1770
|
+
pp += fromskew;
|
|
1771
|
+
}
|
|
1772
|
+
}
|
|
1773
|
+
|
|
1774
|
+
/*
|
|
1775
|
+
* YCbCr -> RGB conversion and packing routines.
|
|
1776
|
+
*/
|
|
1777
|
+
|
|
1778
|
+
#define YCbCrtoRGB(dst, Y) { \
|
|
1779
|
+
uint32 r, g, b; \
|
|
1780
|
+
TIFFYCbCrtoRGB(img->ycbcr, (Y), Cb, Cr, &r, &g, &b); \
|
|
1781
|
+
dst = PACK(r, g, b); \
|
|
1782
|
+
}
|
|
1783
|
+
|
|
1784
|
+
/*
|
|
1785
|
+
* 8-bit packed YCbCr samples => RGB
|
|
1786
|
+
* This function is generic for different sampling sizes,
|
|
1787
|
+
* and can handle blocks sizes that aren't multiples of the
|
|
1788
|
+
* sampling size. However, it is substantially less optimized
|
|
1789
|
+
* than the specific sampling cases. It is used as a fallback
|
|
1790
|
+
* for difficult blocks.
|
|
1791
|
+
*/
|
|
1792
|
+
#ifdef notdef
|
|
1793
|
+
static void putcontig8bitYCbCrGenericTile(
|
|
1794
|
+
TIFFRGBAImage* img,
|
|
1795
|
+
uint32* cp,
|
|
1796
|
+
uint32 x, uint32 y,
|
|
1797
|
+
uint32 w, uint32 h,
|
|
1798
|
+
int32 fromskew, int32 toskew,
|
|
1799
|
+
unsigned char* pp,
|
|
1800
|
+
int h_group,
|
|
1801
|
+
int v_group )
|
|
1802
|
+
|
|
1803
|
+
{
|
|
1804
|
+
uint32* cp1 = cp+w+toskew;
|
|
1805
|
+
uint32* cp2 = cp1+w+toskew;
|
|
1806
|
+
uint32* cp3 = cp2+w+toskew;
|
|
1807
|
+
int32 incr = 3*w+4*toskew;
|
|
1808
|
+
int32 Cb, Cr;
|
|
1809
|
+
int group_size = v_group * h_group + 2;
|
|
1810
|
+
|
|
1811
|
+
(void) y;
|
|
1812
|
+
fromskew = (fromskew * group_size) / h_group;
|
|
1813
|
+
|
|
1814
|
+
for( yy = 0; yy < h; yy++ )
|
|
1815
|
+
{
|
|
1816
|
+
unsigned char *pp_line;
|
|
1817
|
+
int y_line_group = yy / v_group;
|
|
1818
|
+
int y_remainder = yy - y_line_group * v_group;
|
|
1819
|
+
|
|
1820
|
+
pp_line = pp + v_line_group *
|
|
1821
|
+
|
|
1822
|
+
|
|
1823
|
+
for( xx = 0; xx < w; xx++ )
|
|
1824
|
+
{
|
|
1825
|
+
Cb = pp
|
|
1826
|
+
}
|
|
1827
|
+
}
|
|
1828
|
+
for (; h >= 4; h -= 4) {
|
|
1829
|
+
x = w>>2;
|
|
1830
|
+
do {
|
|
1831
|
+
Cb = pp[16];
|
|
1832
|
+
Cr = pp[17];
|
|
1833
|
+
|
|
1834
|
+
YCbCrtoRGB(cp [0], pp[ 0]);
|
|
1835
|
+
YCbCrtoRGB(cp [1], pp[ 1]);
|
|
1836
|
+
YCbCrtoRGB(cp [2], pp[ 2]);
|
|
1837
|
+
YCbCrtoRGB(cp [3], pp[ 3]);
|
|
1838
|
+
YCbCrtoRGB(cp1[0], pp[ 4]);
|
|
1839
|
+
YCbCrtoRGB(cp1[1], pp[ 5]);
|
|
1840
|
+
YCbCrtoRGB(cp1[2], pp[ 6]);
|
|
1841
|
+
YCbCrtoRGB(cp1[3], pp[ 7]);
|
|
1842
|
+
YCbCrtoRGB(cp2[0], pp[ 8]);
|
|
1843
|
+
YCbCrtoRGB(cp2[1], pp[ 9]);
|
|
1844
|
+
YCbCrtoRGB(cp2[2], pp[10]);
|
|
1845
|
+
YCbCrtoRGB(cp2[3], pp[11]);
|
|
1846
|
+
YCbCrtoRGB(cp3[0], pp[12]);
|
|
1847
|
+
YCbCrtoRGB(cp3[1], pp[13]);
|
|
1848
|
+
YCbCrtoRGB(cp3[2], pp[14]);
|
|
1849
|
+
YCbCrtoRGB(cp3[3], pp[15]);
|
|
1850
|
+
|
|
1851
|
+
cp += 4, cp1 += 4, cp2 += 4, cp3 += 4;
|
|
1852
|
+
pp += 18;
|
|
1853
|
+
} while (--x);
|
|
1854
|
+
cp += incr, cp1 += incr, cp2 += incr, cp3 += incr;
|
|
1855
|
+
pp += fromskew;
|
|
1856
|
+
}
|
|
1857
|
+
}
|
|
1858
|
+
#endif
|
|
1859
|
+
|
|
1860
|
+
/*
|
|
1861
|
+
* 8-bit packed YCbCr samples w/ 4,4 subsampling => RGB
|
|
1862
|
+
*/
|
|
1863
|
+
DECLAREContigPutFunc(putcontig8bitYCbCr44tile)
|
|
1864
|
+
{
|
|
1865
|
+
uint32* cp1 = cp+w+toskew;
|
|
1866
|
+
uint32* cp2 = cp1+w+toskew;
|
|
1867
|
+
uint32* cp3 = cp2+w+toskew;
|
|
1868
|
+
int32 incr = 3*w+4*toskew;
|
|
1869
|
+
|
|
1870
|
+
(void) y;
|
|
1871
|
+
/* adjust fromskew */
|
|
1872
|
+
fromskew = (fromskew / 4) * (4*2+2);
|
|
1873
|
+
if ((h & 3) == 0 && (w & 3) == 0) {
|
|
1874
|
+
for (; h >= 4; h -= 4) {
|
|
1875
|
+
x = w>>2;
|
|
1876
|
+
do {
|
|
1877
|
+
int32 Cb = pp[16];
|
|
1878
|
+
int32 Cr = pp[17];
|
|
1879
|
+
|
|
1880
|
+
YCbCrtoRGB(cp [0], pp[ 0]);
|
|
1881
|
+
YCbCrtoRGB(cp [1], pp[ 1]);
|
|
1882
|
+
YCbCrtoRGB(cp [2], pp[ 2]);
|
|
1883
|
+
YCbCrtoRGB(cp [3], pp[ 3]);
|
|
1884
|
+
YCbCrtoRGB(cp1[0], pp[ 4]);
|
|
1885
|
+
YCbCrtoRGB(cp1[1], pp[ 5]);
|
|
1886
|
+
YCbCrtoRGB(cp1[2], pp[ 6]);
|
|
1887
|
+
YCbCrtoRGB(cp1[3], pp[ 7]);
|
|
1888
|
+
YCbCrtoRGB(cp2[0], pp[ 8]);
|
|
1889
|
+
YCbCrtoRGB(cp2[1], pp[ 9]);
|
|
1890
|
+
YCbCrtoRGB(cp2[2], pp[10]);
|
|
1891
|
+
YCbCrtoRGB(cp2[3], pp[11]);
|
|
1892
|
+
YCbCrtoRGB(cp3[0], pp[12]);
|
|
1893
|
+
YCbCrtoRGB(cp3[1], pp[13]);
|
|
1894
|
+
YCbCrtoRGB(cp3[2], pp[14]);
|
|
1895
|
+
YCbCrtoRGB(cp3[3], pp[15]);
|
|
1896
|
+
|
|
1897
|
+
cp += 4;
|
|
1898
|
+
cp1 += 4;
|
|
1899
|
+
cp2 += 4;
|
|
1900
|
+
cp3 += 4;
|
|
1901
|
+
pp += 18;
|
|
1902
|
+
} while (--x);
|
|
1903
|
+
cp += incr;
|
|
1904
|
+
cp1 += incr;
|
|
1905
|
+
cp2 += incr;
|
|
1906
|
+
cp3 += incr;
|
|
1907
|
+
pp += fromskew;
|
|
1908
|
+
}
|
|
1909
|
+
} else {
|
|
1910
|
+
while (h > 0) {
|
|
1911
|
+
for (x = w; x > 0;) {
|
|
1912
|
+
int32 Cb = pp[16];
|
|
1913
|
+
int32 Cr = pp[17];
|
|
1914
|
+
switch (x) {
|
|
1915
|
+
default:
|
|
1916
|
+
switch (h) {
|
|
1917
|
+
default: YCbCrtoRGB(cp3[3], pp[15]); /* FALLTHROUGH */
|
|
1918
|
+
case 3: YCbCrtoRGB(cp2[3], pp[11]); /* FALLTHROUGH */
|
|
1919
|
+
case 2: YCbCrtoRGB(cp1[3], pp[ 7]); /* FALLTHROUGH */
|
|
1920
|
+
case 1: YCbCrtoRGB(cp [3], pp[ 3]); /* FALLTHROUGH */
|
|
1921
|
+
} /* FALLTHROUGH */
|
|
1922
|
+
case 3:
|
|
1923
|
+
switch (h) {
|
|
1924
|
+
default: YCbCrtoRGB(cp3[2], pp[14]); /* FALLTHROUGH */
|
|
1925
|
+
case 3: YCbCrtoRGB(cp2[2], pp[10]); /* FALLTHROUGH */
|
|
1926
|
+
case 2: YCbCrtoRGB(cp1[2], pp[ 6]); /* FALLTHROUGH */
|
|
1927
|
+
case 1: YCbCrtoRGB(cp [2], pp[ 2]); /* FALLTHROUGH */
|
|
1928
|
+
} /* FALLTHROUGH */
|
|
1929
|
+
case 2:
|
|
1930
|
+
switch (h) {
|
|
1931
|
+
default: YCbCrtoRGB(cp3[1], pp[13]); /* FALLTHROUGH */
|
|
1932
|
+
case 3: YCbCrtoRGB(cp2[1], pp[ 9]); /* FALLTHROUGH */
|
|
1933
|
+
case 2: YCbCrtoRGB(cp1[1], pp[ 5]); /* FALLTHROUGH */
|
|
1934
|
+
case 1: YCbCrtoRGB(cp [1], pp[ 1]); /* FALLTHROUGH */
|
|
1935
|
+
} /* FALLTHROUGH */
|
|
1936
|
+
case 1:
|
|
1937
|
+
switch (h) {
|
|
1938
|
+
default: YCbCrtoRGB(cp3[0], pp[12]); /* FALLTHROUGH */
|
|
1939
|
+
case 3: YCbCrtoRGB(cp2[0], pp[ 8]); /* FALLTHROUGH */
|
|
1940
|
+
case 2: YCbCrtoRGB(cp1[0], pp[ 4]); /* FALLTHROUGH */
|
|
1941
|
+
case 1: YCbCrtoRGB(cp [0], pp[ 0]); /* FALLTHROUGH */
|
|
1942
|
+
} /* FALLTHROUGH */
|
|
1943
|
+
}
|
|
1944
|
+
if (x < 4) {
|
|
1945
|
+
cp += x; cp1 += x; cp2 += x; cp3 += x;
|
|
1946
|
+
x = 0;
|
|
1947
|
+
}
|
|
1948
|
+
else {
|
|
1949
|
+
cp += 4; cp1 += 4; cp2 += 4; cp3 += 4;
|
|
1950
|
+
x -= 4;
|
|
1951
|
+
}
|
|
1952
|
+
pp += 18;
|
|
1953
|
+
}
|
|
1954
|
+
if (h <= 4)
|
|
1955
|
+
break;
|
|
1956
|
+
h -= 4;
|
|
1957
|
+
cp += incr;
|
|
1958
|
+
cp1 += incr;
|
|
1959
|
+
cp2 += incr;
|
|
1960
|
+
cp3 += incr;
|
|
1961
|
+
pp += fromskew;
|
|
1962
|
+
}
|
|
1963
|
+
}
|
|
1964
|
+
}
|
|
1965
|
+
|
|
1966
|
+
/*
|
|
1967
|
+
* 8-bit packed YCbCr samples w/ 4,2 subsampling => RGB
|
|
1968
|
+
*/
|
|
1969
|
+
DECLAREContigPutFunc(putcontig8bitYCbCr42tile)
|
|
1970
|
+
{
|
|
1971
|
+
uint32* cp1 = cp+w+toskew;
|
|
1972
|
+
int32 incr = 2*toskew+w;
|
|
1973
|
+
|
|
1974
|
+
(void) y;
|
|
1975
|
+
fromskew = (fromskew / 4) * (4*2+2);
|
|
1976
|
+
if ((w & 3) == 0 && (h & 1) == 0) {
|
|
1977
|
+
for (; h >= 2; h -= 2) {
|
|
1978
|
+
x = w>>2;
|
|
1979
|
+
do {
|
|
1980
|
+
int32 Cb = pp[8];
|
|
1981
|
+
int32 Cr = pp[9];
|
|
1982
|
+
|
|
1983
|
+
YCbCrtoRGB(cp [0], pp[0]);
|
|
1984
|
+
YCbCrtoRGB(cp [1], pp[1]);
|
|
1985
|
+
YCbCrtoRGB(cp [2], pp[2]);
|
|
1986
|
+
YCbCrtoRGB(cp [3], pp[3]);
|
|
1987
|
+
YCbCrtoRGB(cp1[0], pp[4]);
|
|
1988
|
+
YCbCrtoRGB(cp1[1], pp[5]);
|
|
1989
|
+
YCbCrtoRGB(cp1[2], pp[6]);
|
|
1990
|
+
YCbCrtoRGB(cp1[3], pp[7]);
|
|
1991
|
+
|
|
1992
|
+
cp += 4;
|
|
1993
|
+
cp1 += 4;
|
|
1994
|
+
pp += 10;
|
|
1995
|
+
} while (--x);
|
|
1996
|
+
cp += incr;
|
|
1997
|
+
cp1 += incr;
|
|
1998
|
+
pp += fromskew;
|
|
1999
|
+
}
|
|
2000
|
+
} else {
|
|
2001
|
+
while (h > 0) {
|
|
2002
|
+
for (x = w; x > 0;) {
|
|
2003
|
+
int32 Cb = pp[8];
|
|
2004
|
+
int32 Cr = pp[9];
|
|
2005
|
+
switch (x) {
|
|
2006
|
+
default:
|
|
2007
|
+
switch (h) {
|
|
2008
|
+
default: YCbCrtoRGB(cp1[3], pp[ 7]); /* FALLTHROUGH */
|
|
2009
|
+
case 1: YCbCrtoRGB(cp [3], pp[ 3]); /* FALLTHROUGH */
|
|
2010
|
+
} /* FALLTHROUGH */
|
|
2011
|
+
case 3:
|
|
2012
|
+
switch (h) {
|
|
2013
|
+
default: YCbCrtoRGB(cp1[2], pp[ 6]); /* FALLTHROUGH */
|
|
2014
|
+
case 1: YCbCrtoRGB(cp [2], pp[ 2]); /* FALLTHROUGH */
|
|
2015
|
+
} /* FALLTHROUGH */
|
|
2016
|
+
case 2:
|
|
2017
|
+
switch (h) {
|
|
2018
|
+
default: YCbCrtoRGB(cp1[1], pp[ 5]); /* FALLTHROUGH */
|
|
2019
|
+
case 1: YCbCrtoRGB(cp [1], pp[ 1]); /* FALLTHROUGH */
|
|
2020
|
+
} /* FALLTHROUGH */
|
|
2021
|
+
case 1:
|
|
2022
|
+
switch (h) {
|
|
2023
|
+
default: YCbCrtoRGB(cp1[0], pp[ 4]); /* FALLTHROUGH */
|
|
2024
|
+
case 1: YCbCrtoRGB(cp [0], pp[ 0]); /* FALLTHROUGH */
|
|
2025
|
+
} /* FALLTHROUGH */
|
|
2026
|
+
}
|
|
2027
|
+
if (x < 4) {
|
|
2028
|
+
cp += x; cp1 += x;
|
|
2029
|
+
x = 0;
|
|
2030
|
+
}
|
|
2031
|
+
else {
|
|
2032
|
+
cp += 4; cp1 += 4;
|
|
2033
|
+
x -= 4;
|
|
2034
|
+
}
|
|
2035
|
+
pp += 10;
|
|
2036
|
+
}
|
|
2037
|
+
if (h <= 2)
|
|
2038
|
+
break;
|
|
2039
|
+
h -= 2;
|
|
2040
|
+
cp += incr;
|
|
2041
|
+
cp1 += incr;
|
|
2042
|
+
pp += fromskew;
|
|
2043
|
+
}
|
|
2044
|
+
}
|
|
2045
|
+
}
|
|
2046
|
+
|
|
2047
|
+
/*
|
|
2048
|
+
* 8-bit packed YCbCr samples w/ 4,1 subsampling => RGB
|
|
2049
|
+
*/
|
|
2050
|
+
DECLAREContigPutFunc(putcontig8bitYCbCr41tile)
|
|
2051
|
+
{
|
|
2052
|
+
(void) y;
|
|
2053
|
+
fromskew = (fromskew / 4) * (4*1+2);
|
|
2054
|
+
do {
|
|
2055
|
+
x = w>>2;
|
|
2056
|
+
while(x>0) {
|
|
2057
|
+
int32 Cb = pp[4];
|
|
2058
|
+
int32 Cr = pp[5];
|
|
2059
|
+
|
|
2060
|
+
YCbCrtoRGB(cp [0], pp[0]);
|
|
2061
|
+
YCbCrtoRGB(cp [1], pp[1]);
|
|
2062
|
+
YCbCrtoRGB(cp [2], pp[2]);
|
|
2063
|
+
YCbCrtoRGB(cp [3], pp[3]);
|
|
2064
|
+
|
|
2065
|
+
cp += 4;
|
|
2066
|
+
pp += 6;
|
|
2067
|
+
x--;
|
|
2068
|
+
}
|
|
2069
|
+
|
|
2070
|
+
if( (w&3) != 0 )
|
|
2071
|
+
{
|
|
2072
|
+
int32 Cb = pp[4];
|
|
2073
|
+
int32 Cr = pp[5];
|
|
2074
|
+
|
|
2075
|
+
switch( (w&3) ) {
|
|
2076
|
+
case 3: YCbCrtoRGB(cp [2], pp[2]); /*-fallthrough*/
|
|
2077
|
+
case 2: YCbCrtoRGB(cp [1], pp[1]); /*-fallthrough*/
|
|
2078
|
+
case 1: YCbCrtoRGB(cp [0], pp[0]); /*-fallthrough*/
|
|
2079
|
+
case 0: break;
|
|
2080
|
+
}
|
|
2081
|
+
|
|
2082
|
+
cp += (w&3);
|
|
2083
|
+
pp += 6;
|
|
2084
|
+
}
|
|
2085
|
+
|
|
2086
|
+
cp += toskew;
|
|
2087
|
+
pp += fromskew;
|
|
2088
|
+
} while (--h);
|
|
2089
|
+
|
|
2090
|
+
}
|
|
2091
|
+
|
|
2092
|
+
/*
|
|
2093
|
+
* 8-bit packed YCbCr samples w/ 2,2 subsampling => RGB
|
|
2094
|
+
*/
|
|
2095
|
+
DECLAREContigPutFunc(putcontig8bitYCbCr22tile)
|
|
2096
|
+
{
|
|
2097
|
+
uint32* cp2;
|
|
2098
|
+
int32 incr = 2*toskew+w;
|
|
2099
|
+
(void) y;
|
|
2100
|
+
fromskew = (fromskew / 2) * (2*2+2);
|
|
2101
|
+
cp2 = cp+w+toskew;
|
|
2102
|
+
while (h>=2) {
|
|
2103
|
+
x = w;
|
|
2104
|
+
while (x>=2) {
|
|
2105
|
+
uint32 Cb = pp[4];
|
|
2106
|
+
uint32 Cr = pp[5];
|
|
2107
|
+
YCbCrtoRGB(cp[0], pp[0]);
|
|
2108
|
+
YCbCrtoRGB(cp[1], pp[1]);
|
|
2109
|
+
YCbCrtoRGB(cp2[0], pp[2]);
|
|
2110
|
+
YCbCrtoRGB(cp2[1], pp[3]);
|
|
2111
|
+
cp += 2;
|
|
2112
|
+
cp2 += 2;
|
|
2113
|
+
pp += 6;
|
|
2114
|
+
x -= 2;
|
|
2115
|
+
}
|
|
2116
|
+
if (x==1) {
|
|
2117
|
+
uint32 Cb = pp[4];
|
|
2118
|
+
uint32 Cr = pp[5];
|
|
2119
|
+
YCbCrtoRGB(cp[0], pp[0]);
|
|
2120
|
+
YCbCrtoRGB(cp2[0], pp[2]);
|
|
2121
|
+
cp ++ ;
|
|
2122
|
+
cp2 ++ ;
|
|
2123
|
+
pp += 6;
|
|
2124
|
+
}
|
|
2125
|
+
cp += incr;
|
|
2126
|
+
cp2 += incr;
|
|
2127
|
+
pp += fromskew;
|
|
2128
|
+
h-=2;
|
|
2129
|
+
}
|
|
2130
|
+
if (h==1) {
|
|
2131
|
+
x = w;
|
|
2132
|
+
while (x>=2) {
|
|
2133
|
+
uint32 Cb = pp[4];
|
|
2134
|
+
uint32 Cr = pp[5];
|
|
2135
|
+
YCbCrtoRGB(cp[0], pp[0]);
|
|
2136
|
+
YCbCrtoRGB(cp[1], pp[1]);
|
|
2137
|
+
cp += 2;
|
|
2138
|
+
cp2 += 2;
|
|
2139
|
+
pp += 6;
|
|
2140
|
+
x -= 2;
|
|
2141
|
+
}
|
|
2142
|
+
if (x==1) {
|
|
2143
|
+
uint32 Cb = pp[4];
|
|
2144
|
+
uint32 Cr = pp[5];
|
|
2145
|
+
YCbCrtoRGB(cp[0], pp[0]);
|
|
2146
|
+
}
|
|
2147
|
+
}
|
|
2148
|
+
}
|
|
2149
|
+
|
|
2150
|
+
/*
|
|
2151
|
+
* 8-bit packed YCbCr samples w/ 2,1 subsampling => RGB
|
|
2152
|
+
*/
|
|
2153
|
+
DECLAREContigPutFunc(putcontig8bitYCbCr21tile)
|
|
2154
|
+
{
|
|
2155
|
+
(void) y;
|
|
2156
|
+
fromskew = (fromskew / 2) * (2*1+2);
|
|
2157
|
+
do {
|
|
2158
|
+
x = w>>1;
|
|
2159
|
+
while(x>0) {
|
|
2160
|
+
int32 Cb = pp[2];
|
|
2161
|
+
int32 Cr = pp[3];
|
|
2162
|
+
|
|
2163
|
+
YCbCrtoRGB(cp[0], pp[0]);
|
|
2164
|
+
YCbCrtoRGB(cp[1], pp[1]);
|
|
2165
|
+
|
|
2166
|
+
cp += 2;
|
|
2167
|
+
pp += 4;
|
|
2168
|
+
x --;
|
|
2169
|
+
}
|
|
2170
|
+
|
|
2171
|
+
if( (w&1) != 0 )
|
|
2172
|
+
{
|
|
2173
|
+
int32 Cb = pp[2];
|
|
2174
|
+
int32 Cr = pp[3];
|
|
2175
|
+
|
|
2176
|
+
YCbCrtoRGB(cp[0], pp[0]);
|
|
2177
|
+
|
|
2178
|
+
cp += 1;
|
|
2179
|
+
pp += 4;
|
|
2180
|
+
}
|
|
2181
|
+
|
|
2182
|
+
cp += toskew;
|
|
2183
|
+
pp += fromskew;
|
|
2184
|
+
} while (--h);
|
|
2185
|
+
}
|
|
2186
|
+
|
|
2187
|
+
/*
|
|
2188
|
+
* 8-bit packed YCbCr samples w/ 1,2 subsampling => RGB
|
|
2189
|
+
*/
|
|
2190
|
+
DECLAREContigPutFunc(putcontig8bitYCbCr12tile)
|
|
2191
|
+
{
|
|
2192
|
+
uint32* cp2;
|
|
2193
|
+
int32 incr = 2*toskew+w;
|
|
2194
|
+
(void) y;
|
|
2195
|
+
fromskew = (fromskew / 1) * (1 * 2 + 2);
|
|
2196
|
+
cp2 = cp+w+toskew;
|
|
2197
|
+
while (h>=2) {
|
|
2198
|
+
x = w;
|
|
2199
|
+
do {
|
|
2200
|
+
uint32 Cb = pp[2];
|
|
2201
|
+
uint32 Cr = pp[3];
|
|
2202
|
+
YCbCrtoRGB(cp[0], pp[0]);
|
|
2203
|
+
YCbCrtoRGB(cp2[0], pp[1]);
|
|
2204
|
+
cp ++;
|
|
2205
|
+
cp2 ++;
|
|
2206
|
+
pp += 4;
|
|
2207
|
+
} while (--x);
|
|
2208
|
+
cp += incr;
|
|
2209
|
+
cp2 += incr;
|
|
2210
|
+
pp += fromskew;
|
|
2211
|
+
h-=2;
|
|
2212
|
+
}
|
|
2213
|
+
if (h==1) {
|
|
2214
|
+
x = w;
|
|
2215
|
+
do {
|
|
2216
|
+
uint32 Cb = pp[2];
|
|
2217
|
+
uint32 Cr = pp[3];
|
|
2218
|
+
YCbCrtoRGB(cp[0], pp[0]);
|
|
2219
|
+
cp ++;
|
|
2220
|
+
pp += 4;
|
|
2221
|
+
} while (--x);
|
|
2222
|
+
}
|
|
2223
|
+
}
|
|
2224
|
+
|
|
2225
|
+
/*
|
|
2226
|
+
* 8-bit packed YCbCr samples w/ no subsampling => RGB
|
|
2227
|
+
*/
|
|
2228
|
+
DECLAREContigPutFunc(putcontig8bitYCbCr11tile)
|
|
2229
|
+
{
|
|
2230
|
+
(void) y;
|
|
2231
|
+
fromskew = (fromskew / 1) * (1 * 1 + 2);
|
|
2232
|
+
do {
|
|
2233
|
+
x = w; /* was x = w>>1; patched 2000/09/25 warmerda@home.com */
|
|
2234
|
+
do {
|
|
2235
|
+
int32 Cb = pp[1];
|
|
2236
|
+
int32 Cr = pp[2];
|
|
2237
|
+
|
|
2238
|
+
YCbCrtoRGB(*cp++, pp[0]);
|
|
2239
|
+
|
|
2240
|
+
pp += 3;
|
|
2241
|
+
} while (--x);
|
|
2242
|
+
cp += toskew;
|
|
2243
|
+
pp += fromskew;
|
|
2244
|
+
} while (--h);
|
|
2245
|
+
}
|
|
2246
|
+
|
|
2247
|
+
/*
|
|
2248
|
+
* 8-bit packed YCbCr samples w/ no subsampling => RGB
|
|
2249
|
+
*/
|
|
2250
|
+
DECLARESepPutFunc(putseparate8bitYCbCr11tile)
|
|
2251
|
+
{
|
|
2252
|
+
(void) y;
|
|
2253
|
+
(void) a;
|
|
2254
|
+
/* TODO: naming of input vars is still off, change obfuscating declaration inside define, or resolve obfuscation */
|
|
2255
|
+
for( ; h > 0; --h) {
|
|
2256
|
+
x = w;
|
|
2257
|
+
do {
|
|
2258
|
+
uint32 dr, dg, db;
|
|
2259
|
+
TIFFYCbCrtoRGB(img->ycbcr,*r++,*g++,*b++,&dr,&dg,&db);
|
|
2260
|
+
*cp++ = PACK(dr,dg,db);
|
|
2261
|
+
} while (--x);
|
|
2262
|
+
SKEW(r, g, b, fromskew);
|
|
2263
|
+
cp += toskew;
|
|
2264
|
+
}
|
|
2265
|
+
}
|
|
2266
|
+
#undef YCbCrtoRGB
|
|
2267
|
+
|
|
2268
|
+
static int isInRefBlackWhiteRange(float f)
|
|
2269
|
+
{
|
|
2270
|
+
return f > (float)(-0x7FFFFFFF + 128) && f < (float)0x7FFFFFFF;
|
|
2271
|
+
}
|
|
2272
|
+
|
|
2273
|
+
static int
|
|
2274
|
+
initYCbCrConversion(TIFFRGBAImage* img)
|
|
2275
|
+
{
|
|
2276
|
+
static const char module[] = "initYCbCrConversion";
|
|
2277
|
+
|
|
2278
|
+
float *luma, *refBlackWhite;
|
|
2279
|
+
|
|
2280
|
+
if (img->ycbcr == NULL) {
|
|
2281
|
+
img->ycbcr = (TIFFYCbCrToRGB*) _TIFFmalloc(
|
|
2282
|
+
TIFFroundup_32(sizeof (TIFFYCbCrToRGB), sizeof (long))
|
|
2283
|
+
+ 4*256*sizeof (TIFFRGBValue)
|
|
2284
|
+
+ 2*256*sizeof (int)
|
|
2285
|
+
+ 3*256*sizeof (int32)
|
|
2286
|
+
);
|
|
2287
|
+
if (img->ycbcr == NULL) {
|
|
2288
|
+
TIFFErrorExt(img->tif->tif_clientdata, module,
|
|
2289
|
+
"No space for YCbCr->RGB conversion state");
|
|
2290
|
+
return (0);
|
|
2291
|
+
}
|
|
2292
|
+
}
|
|
2293
|
+
|
|
2294
|
+
TIFFGetFieldDefaulted(img->tif, TIFFTAG_YCBCRCOEFFICIENTS, &luma);
|
|
2295
|
+
TIFFGetFieldDefaulted(img->tif, TIFFTAG_REFERENCEBLACKWHITE,
|
|
2296
|
+
&refBlackWhite);
|
|
2297
|
+
|
|
2298
|
+
/* Do some validation to avoid later issues. Detect NaN for now */
|
|
2299
|
+
/* and also if lumaGreen is zero since we divide by it later */
|
|
2300
|
+
if( luma[0] != luma[0] ||
|
|
2301
|
+
luma[1] != luma[1] ||
|
|
2302
|
+
luma[1] == 0.0 ||
|
|
2303
|
+
luma[2] != luma[2] )
|
|
2304
|
+
{
|
|
2305
|
+
TIFFErrorExt(img->tif->tif_clientdata, module,
|
|
2306
|
+
"Invalid values for YCbCrCoefficients tag");
|
|
2307
|
+
return (0);
|
|
2308
|
+
}
|
|
2309
|
+
|
|
2310
|
+
if( !isInRefBlackWhiteRange(refBlackWhite[0]) ||
|
|
2311
|
+
!isInRefBlackWhiteRange(refBlackWhite[1]) ||
|
|
2312
|
+
!isInRefBlackWhiteRange(refBlackWhite[2]) ||
|
|
2313
|
+
!isInRefBlackWhiteRange(refBlackWhite[3]) ||
|
|
2314
|
+
!isInRefBlackWhiteRange(refBlackWhite[4]) ||
|
|
2315
|
+
!isInRefBlackWhiteRange(refBlackWhite[5]) )
|
|
2316
|
+
{
|
|
2317
|
+
TIFFErrorExt(img->tif->tif_clientdata, module,
|
|
2318
|
+
"Invalid values for ReferenceBlackWhite tag");
|
|
2319
|
+
return (0);
|
|
2320
|
+
}
|
|
2321
|
+
|
|
2322
|
+
if (TIFFYCbCrToRGBInit(img->ycbcr, luma, refBlackWhite) < 0)
|
|
2323
|
+
return(0);
|
|
2324
|
+
return (1);
|
|
2325
|
+
}
|
|
2326
|
+
|
|
2327
|
+
static tileContigRoutine
|
|
2328
|
+
initCIELabConversion(TIFFRGBAImage* img)
|
|
2329
|
+
{
|
|
2330
|
+
static const char module[] = "initCIELabConversion";
|
|
2331
|
+
|
|
2332
|
+
float *whitePoint;
|
|
2333
|
+
float refWhite[3];
|
|
2334
|
+
|
|
2335
|
+
TIFFGetFieldDefaulted(img->tif, TIFFTAG_WHITEPOINT, &whitePoint);
|
|
2336
|
+
if (whitePoint[1] == 0.0f ) {
|
|
2337
|
+
TIFFErrorExt(img->tif->tif_clientdata, module,
|
|
2338
|
+
"Invalid value for WhitePoint tag.");
|
|
2339
|
+
return NULL;
|
|
2340
|
+
}
|
|
2341
|
+
|
|
2342
|
+
if (!img->cielab) {
|
|
2343
|
+
img->cielab = (TIFFCIELabToRGB *)
|
|
2344
|
+
_TIFFmalloc(sizeof(TIFFCIELabToRGB));
|
|
2345
|
+
if (!img->cielab) {
|
|
2346
|
+
TIFFErrorExt(img->tif->tif_clientdata, module,
|
|
2347
|
+
"No space for CIE L*a*b*->RGB conversion state.");
|
|
2348
|
+
return NULL;
|
|
2349
|
+
}
|
|
2350
|
+
}
|
|
2351
|
+
|
|
2352
|
+
refWhite[1] = 100.0F;
|
|
2353
|
+
refWhite[0] = whitePoint[0] / whitePoint[1] * refWhite[1];
|
|
2354
|
+
refWhite[2] = (1.0F - whitePoint[0] - whitePoint[1])
|
|
2355
|
+
/ whitePoint[1] * refWhite[1];
|
|
2356
|
+
if (TIFFCIELabToRGBInit(img->cielab, &display_sRGB, refWhite) < 0) {
|
|
2357
|
+
TIFFErrorExt(img->tif->tif_clientdata, module,
|
|
2358
|
+
"Failed to initialize CIE L*a*b*->RGB conversion state.");
|
|
2359
|
+
_TIFFfree(img->cielab);
|
|
2360
|
+
return NULL;
|
|
2361
|
+
}
|
|
2362
|
+
|
|
2363
|
+
return putcontig8bitCIELab;
|
|
2364
|
+
}
|
|
2365
|
+
|
|
2366
|
+
/*
|
|
2367
|
+
* Greyscale images with less than 8 bits/sample are handled
|
|
2368
|
+
* with a table to avoid lots of shifts and masks. The table
|
|
2369
|
+
* is setup so that put*bwtile (below) can retrieve 8/bitspersample
|
|
2370
|
+
* pixel values simply by indexing into the table with one
|
|
2371
|
+
* number.
|
|
2372
|
+
*/
|
|
2373
|
+
static int
|
|
2374
|
+
makebwmap(TIFFRGBAImage* img)
|
|
2375
|
+
{
|
|
2376
|
+
TIFFRGBValue* Map = img->Map;
|
|
2377
|
+
int bitspersample = img->bitspersample;
|
|
2378
|
+
int nsamples = 8 / bitspersample;
|
|
2379
|
+
int i;
|
|
2380
|
+
uint32* p;
|
|
2381
|
+
|
|
2382
|
+
if( nsamples == 0 )
|
|
2383
|
+
nsamples = 1;
|
|
2384
|
+
|
|
2385
|
+
img->BWmap = (uint32**) _TIFFmalloc(
|
|
2386
|
+
256*sizeof (uint32 *)+(256*nsamples*sizeof(uint32)));
|
|
2387
|
+
if (img->BWmap == NULL) {
|
|
2388
|
+
TIFFErrorExt(img->tif->tif_clientdata, TIFFFileName(img->tif), "No space for B&W mapping table");
|
|
2389
|
+
return (0);
|
|
2390
|
+
}
|
|
2391
|
+
p = (uint32*)(img->BWmap + 256);
|
|
2392
|
+
for (i = 0; i < 256; i++) {
|
|
2393
|
+
TIFFRGBValue c;
|
|
2394
|
+
img->BWmap[i] = p;
|
|
2395
|
+
switch (bitspersample) {
|
|
2396
|
+
#define GREY(x) c = Map[x]; *p++ = PACK(c,c,c);
|
|
2397
|
+
case 1:
|
|
2398
|
+
GREY(i>>7);
|
|
2399
|
+
GREY((i>>6)&1);
|
|
2400
|
+
GREY((i>>5)&1);
|
|
2401
|
+
GREY((i>>4)&1);
|
|
2402
|
+
GREY((i>>3)&1);
|
|
2403
|
+
GREY((i>>2)&1);
|
|
2404
|
+
GREY((i>>1)&1);
|
|
2405
|
+
GREY(i&1);
|
|
2406
|
+
break;
|
|
2407
|
+
case 2:
|
|
2408
|
+
GREY(i>>6);
|
|
2409
|
+
GREY((i>>4)&3);
|
|
2410
|
+
GREY((i>>2)&3);
|
|
2411
|
+
GREY(i&3);
|
|
2412
|
+
break;
|
|
2413
|
+
case 4:
|
|
2414
|
+
GREY(i>>4);
|
|
2415
|
+
GREY(i&0xf);
|
|
2416
|
+
break;
|
|
2417
|
+
case 8:
|
|
2418
|
+
case 16:
|
|
2419
|
+
GREY(i);
|
|
2420
|
+
break;
|
|
2421
|
+
}
|
|
2422
|
+
#undef GREY
|
|
2423
|
+
}
|
|
2424
|
+
return (1);
|
|
2425
|
+
}
|
|
2426
|
+
|
|
2427
|
+
/*
|
|
2428
|
+
* Construct a mapping table to convert from the range
|
|
2429
|
+
* of the data samples to [0,255] --for display. This
|
|
2430
|
+
* process also handles inverting B&W images when needed.
|
|
2431
|
+
*/
|
|
2432
|
+
static int
|
|
2433
|
+
setupMap(TIFFRGBAImage* img)
|
|
2434
|
+
{
|
|
2435
|
+
int32 x, range;
|
|
2436
|
+
|
|
2437
|
+
range = (int32)((1L<<img->bitspersample)-1);
|
|
2438
|
+
|
|
2439
|
+
/* treat 16 bit the same as eight bit */
|
|
2440
|
+
if( img->bitspersample == 16 )
|
|
2441
|
+
range = (int32) 255;
|
|
2442
|
+
|
|
2443
|
+
img->Map = (TIFFRGBValue*) _TIFFmalloc((range+1) * sizeof (TIFFRGBValue));
|
|
2444
|
+
if (img->Map == NULL) {
|
|
2445
|
+
TIFFErrorExt(img->tif->tif_clientdata, TIFFFileName(img->tif),
|
|
2446
|
+
"No space for photometric conversion table");
|
|
2447
|
+
return (0);
|
|
2448
|
+
}
|
|
2449
|
+
if (img->photometric == PHOTOMETRIC_MINISWHITE) {
|
|
2450
|
+
for (x = 0; x <= range; x++)
|
|
2451
|
+
img->Map[x] = (TIFFRGBValue) (((range - x) * 255) / range);
|
|
2452
|
+
} else {
|
|
2453
|
+
for (x = 0; x <= range; x++)
|
|
2454
|
+
img->Map[x] = (TIFFRGBValue) ((x * 255) / range);
|
|
2455
|
+
}
|
|
2456
|
+
if (img->bitspersample <= 16 &&
|
|
2457
|
+
(img->photometric == PHOTOMETRIC_MINISBLACK ||
|
|
2458
|
+
img->photometric == PHOTOMETRIC_MINISWHITE)) {
|
|
2459
|
+
/*
|
|
2460
|
+
* Use photometric mapping table to construct
|
|
2461
|
+
* unpacking tables for samples <= 8 bits.
|
|
2462
|
+
*/
|
|
2463
|
+
if (!makebwmap(img))
|
|
2464
|
+
return (0);
|
|
2465
|
+
/* no longer need Map, free it */
|
|
2466
|
+
_TIFFfree(img->Map);
|
|
2467
|
+
img->Map = NULL;
|
|
2468
|
+
}
|
|
2469
|
+
return (1);
|
|
2470
|
+
}
|
|
2471
|
+
|
|
2472
|
+
static int
|
|
2473
|
+
checkcmap(TIFFRGBAImage* img)
|
|
2474
|
+
{
|
|
2475
|
+
uint16* r = img->redcmap;
|
|
2476
|
+
uint16* g = img->greencmap;
|
|
2477
|
+
uint16* b = img->bluecmap;
|
|
2478
|
+
long n = 1L<<img->bitspersample;
|
|
2479
|
+
|
|
2480
|
+
while (n-- > 0)
|
|
2481
|
+
if (*r++ >= 256 || *g++ >= 256 || *b++ >= 256)
|
|
2482
|
+
return (16);
|
|
2483
|
+
return (8);
|
|
2484
|
+
}
|
|
2485
|
+
|
|
2486
|
+
static void
|
|
2487
|
+
cvtcmap(TIFFRGBAImage* img)
|
|
2488
|
+
{
|
|
2489
|
+
uint16* r = img->redcmap;
|
|
2490
|
+
uint16* g = img->greencmap;
|
|
2491
|
+
uint16* b = img->bluecmap;
|
|
2492
|
+
long i;
|
|
2493
|
+
|
|
2494
|
+
for (i = (1L<<img->bitspersample)-1; i >= 0; i--) {
|
|
2495
|
+
#define CVT(x) ((uint16)((x)>>8))
|
|
2496
|
+
r[i] = CVT(r[i]);
|
|
2497
|
+
g[i] = CVT(g[i]);
|
|
2498
|
+
b[i] = CVT(b[i]);
|
|
2499
|
+
#undef CVT
|
|
2500
|
+
}
|
|
2501
|
+
}
|
|
2502
|
+
|
|
2503
|
+
/*
|
|
2504
|
+
* Palette images with <= 8 bits/sample are handled
|
|
2505
|
+
* with a table to avoid lots of shifts and masks. The table
|
|
2506
|
+
* is setup so that put*cmaptile (below) can retrieve 8/bitspersample
|
|
2507
|
+
* pixel values simply by indexing into the table with one
|
|
2508
|
+
* number.
|
|
2509
|
+
*/
|
|
2510
|
+
static int
|
|
2511
|
+
makecmap(TIFFRGBAImage* img)
|
|
2512
|
+
{
|
|
2513
|
+
int bitspersample = img->bitspersample;
|
|
2514
|
+
int nsamples = 8 / bitspersample;
|
|
2515
|
+
uint16* r = img->redcmap;
|
|
2516
|
+
uint16* g = img->greencmap;
|
|
2517
|
+
uint16* b = img->bluecmap;
|
|
2518
|
+
uint32 *p;
|
|
2519
|
+
int i;
|
|
2520
|
+
|
|
2521
|
+
img->PALmap = (uint32**) _TIFFmalloc(
|
|
2522
|
+
256*sizeof (uint32 *)+(256*nsamples*sizeof(uint32)));
|
|
2523
|
+
if (img->PALmap == NULL) {
|
|
2524
|
+
TIFFErrorExt(img->tif->tif_clientdata, TIFFFileName(img->tif), "No space for Palette mapping table");
|
|
2525
|
+
return (0);
|
|
2526
|
+
}
|
|
2527
|
+
p = (uint32*)(img->PALmap + 256);
|
|
2528
|
+
for (i = 0; i < 256; i++) {
|
|
2529
|
+
TIFFRGBValue c;
|
|
2530
|
+
img->PALmap[i] = p;
|
|
2531
|
+
#define CMAP(x) c = (TIFFRGBValue) x; *p++ = PACK(r[c]&0xff, g[c]&0xff, b[c]&0xff);
|
|
2532
|
+
switch (bitspersample) {
|
|
2533
|
+
case 1:
|
|
2534
|
+
CMAP(i>>7);
|
|
2535
|
+
CMAP((i>>6)&1);
|
|
2536
|
+
CMAP((i>>5)&1);
|
|
2537
|
+
CMAP((i>>4)&1);
|
|
2538
|
+
CMAP((i>>3)&1);
|
|
2539
|
+
CMAP((i>>2)&1);
|
|
2540
|
+
CMAP((i>>1)&1);
|
|
2541
|
+
CMAP(i&1);
|
|
2542
|
+
break;
|
|
2543
|
+
case 2:
|
|
2544
|
+
CMAP(i>>6);
|
|
2545
|
+
CMAP((i>>4)&3);
|
|
2546
|
+
CMAP((i>>2)&3);
|
|
2547
|
+
CMAP(i&3);
|
|
2548
|
+
break;
|
|
2549
|
+
case 4:
|
|
2550
|
+
CMAP(i>>4);
|
|
2551
|
+
CMAP(i&0xf);
|
|
2552
|
+
break;
|
|
2553
|
+
case 8:
|
|
2554
|
+
CMAP(i);
|
|
2555
|
+
break;
|
|
2556
|
+
}
|
|
2557
|
+
#undef CMAP
|
|
2558
|
+
}
|
|
2559
|
+
return (1);
|
|
2560
|
+
}
|
|
2561
|
+
|
|
2562
|
+
/*
|
|
2563
|
+
* Construct any mapping table used
|
|
2564
|
+
* by the associated put routine.
|
|
2565
|
+
*/
|
|
2566
|
+
static int
|
|
2567
|
+
buildMap(TIFFRGBAImage* img)
|
|
2568
|
+
{
|
|
2569
|
+
switch (img->photometric) {
|
|
2570
|
+
case PHOTOMETRIC_RGB:
|
|
2571
|
+
case PHOTOMETRIC_YCBCR:
|
|
2572
|
+
case PHOTOMETRIC_SEPARATED:
|
|
2573
|
+
if (img->bitspersample == 8)
|
|
2574
|
+
break;
|
|
2575
|
+
/* fall through... */
|
|
2576
|
+
case PHOTOMETRIC_MINISBLACK:
|
|
2577
|
+
case PHOTOMETRIC_MINISWHITE:
|
|
2578
|
+
if (!setupMap(img))
|
|
2579
|
+
return (0);
|
|
2580
|
+
break;
|
|
2581
|
+
case PHOTOMETRIC_PALETTE:
|
|
2582
|
+
/*
|
|
2583
|
+
* Convert 16-bit colormap to 8-bit (unless it looks
|
|
2584
|
+
* like an old-style 8-bit colormap).
|
|
2585
|
+
*/
|
|
2586
|
+
if (checkcmap(img) == 16)
|
|
2587
|
+
cvtcmap(img);
|
|
2588
|
+
else
|
|
2589
|
+
TIFFWarningExt(img->tif->tif_clientdata, TIFFFileName(img->tif), "Assuming 8-bit colormap");
|
|
2590
|
+
/*
|
|
2591
|
+
* Use mapping table and colormap to construct
|
|
2592
|
+
* unpacking tables for samples < 8 bits.
|
|
2593
|
+
*/
|
|
2594
|
+
if (img->bitspersample <= 8 && !makecmap(img))
|
|
2595
|
+
return (0);
|
|
2596
|
+
break;
|
|
2597
|
+
}
|
|
2598
|
+
return (1);
|
|
2599
|
+
}
|
|
2600
|
+
|
|
2601
|
+
/*
|
|
2602
|
+
* Select the appropriate conversion routine for packed data.
|
|
2603
|
+
*/
|
|
2604
|
+
static int
|
|
2605
|
+
PickContigCase(TIFFRGBAImage* img)
|
|
2606
|
+
{
|
|
2607
|
+
img->get = TIFFIsTiled(img->tif) ? gtTileContig : gtStripContig;
|
|
2608
|
+
img->put.contig = NULL;
|
|
2609
|
+
switch (img->photometric) {
|
|
2610
|
+
case PHOTOMETRIC_RGB:
|
|
2611
|
+
switch (img->bitspersample) {
|
|
2612
|
+
case 8:
|
|
2613
|
+
if (img->alpha == EXTRASAMPLE_ASSOCALPHA &&
|
|
2614
|
+
img->samplesperpixel >= 4)
|
|
2615
|
+
img->put.contig = putRGBAAcontig8bittile;
|
|
2616
|
+
else if (img->alpha == EXTRASAMPLE_UNASSALPHA &&
|
|
2617
|
+
img->samplesperpixel >= 4)
|
|
2618
|
+
{
|
|
2619
|
+
if (BuildMapUaToAa(img))
|
|
2620
|
+
img->put.contig = putRGBUAcontig8bittile;
|
|
2621
|
+
}
|
|
2622
|
+
else if( img->samplesperpixel >= 3 )
|
|
2623
|
+
img->put.contig = putRGBcontig8bittile;
|
|
2624
|
+
break;
|
|
2625
|
+
case 16:
|
|
2626
|
+
if (img->alpha == EXTRASAMPLE_ASSOCALPHA &&
|
|
2627
|
+
img->samplesperpixel >=4 )
|
|
2628
|
+
{
|
|
2629
|
+
if (BuildMapBitdepth16To8(img))
|
|
2630
|
+
img->put.contig = putRGBAAcontig16bittile;
|
|
2631
|
+
}
|
|
2632
|
+
else if (img->alpha == EXTRASAMPLE_UNASSALPHA &&
|
|
2633
|
+
img->samplesperpixel >=4 )
|
|
2634
|
+
{
|
|
2635
|
+
if (BuildMapBitdepth16To8(img) &&
|
|
2636
|
+
BuildMapUaToAa(img))
|
|
2637
|
+
img->put.contig = putRGBUAcontig16bittile;
|
|
2638
|
+
}
|
|
2639
|
+
else if( img->samplesperpixel >=3 )
|
|
2640
|
+
{
|
|
2641
|
+
if (BuildMapBitdepth16To8(img))
|
|
2642
|
+
img->put.contig = putRGBcontig16bittile;
|
|
2643
|
+
}
|
|
2644
|
+
break;
|
|
2645
|
+
}
|
|
2646
|
+
break;
|
|
2647
|
+
case PHOTOMETRIC_SEPARATED:
|
|
2648
|
+
if (img->samplesperpixel >=4 && buildMap(img)) {
|
|
2649
|
+
if (img->bitspersample == 8) {
|
|
2650
|
+
if (!img->Map)
|
|
2651
|
+
img->put.contig = putRGBcontig8bitCMYKtile;
|
|
2652
|
+
else
|
|
2653
|
+
img->put.contig = putRGBcontig8bitCMYKMaptile;
|
|
2654
|
+
}
|
|
2655
|
+
}
|
|
2656
|
+
break;
|
|
2657
|
+
case PHOTOMETRIC_PALETTE:
|
|
2658
|
+
if (buildMap(img)) {
|
|
2659
|
+
switch (img->bitspersample) {
|
|
2660
|
+
case 8:
|
|
2661
|
+
img->put.contig = put8bitcmaptile;
|
|
2662
|
+
break;
|
|
2663
|
+
case 4:
|
|
2664
|
+
img->put.contig = put4bitcmaptile;
|
|
2665
|
+
break;
|
|
2666
|
+
case 2:
|
|
2667
|
+
img->put.contig = put2bitcmaptile;
|
|
2668
|
+
break;
|
|
2669
|
+
case 1:
|
|
2670
|
+
img->put.contig = put1bitcmaptile;
|
|
2671
|
+
break;
|
|
2672
|
+
}
|
|
2673
|
+
}
|
|
2674
|
+
break;
|
|
2675
|
+
case PHOTOMETRIC_MINISWHITE:
|
|
2676
|
+
case PHOTOMETRIC_MINISBLACK:
|
|
2677
|
+
if (buildMap(img)) {
|
|
2678
|
+
switch (img->bitspersample) {
|
|
2679
|
+
case 16:
|
|
2680
|
+
img->put.contig = put16bitbwtile;
|
|
2681
|
+
break;
|
|
2682
|
+
case 8:
|
|
2683
|
+
if (img->alpha && img->samplesperpixel == 2)
|
|
2684
|
+
img->put.contig = putagreytile;
|
|
2685
|
+
else
|
|
2686
|
+
img->put.contig = putgreytile;
|
|
2687
|
+
break;
|
|
2688
|
+
case 4:
|
|
2689
|
+
img->put.contig = put4bitbwtile;
|
|
2690
|
+
break;
|
|
2691
|
+
case 2:
|
|
2692
|
+
img->put.contig = put2bitbwtile;
|
|
2693
|
+
break;
|
|
2694
|
+
case 1:
|
|
2695
|
+
img->put.contig = put1bitbwtile;
|
|
2696
|
+
break;
|
|
2697
|
+
}
|
|
2698
|
+
}
|
|
2699
|
+
break;
|
|
2700
|
+
case PHOTOMETRIC_YCBCR:
|
|
2701
|
+
if ((img->bitspersample==8) && (img->samplesperpixel==3))
|
|
2702
|
+
{
|
|
2703
|
+
if (initYCbCrConversion(img)!=0)
|
|
2704
|
+
{
|
|
2705
|
+
/*
|
|
2706
|
+
* The 6.0 spec says that subsampling must be
|
|
2707
|
+
* one of 1, 2, or 4, and that vertical subsampling
|
|
2708
|
+
* must always be <= horizontal subsampling; so
|
|
2709
|
+
* there are only a few possibilities and we just
|
|
2710
|
+
* enumerate the cases.
|
|
2711
|
+
* Joris: added support for the [1,2] case, nonetheless, to accommodate
|
|
2712
|
+
* some OJPEG files
|
|
2713
|
+
*/
|
|
2714
|
+
uint16 SubsamplingHor;
|
|
2715
|
+
uint16 SubsamplingVer;
|
|
2716
|
+
TIFFGetFieldDefaulted(img->tif, TIFFTAG_YCBCRSUBSAMPLING, &SubsamplingHor, &SubsamplingVer);
|
|
2717
|
+
switch ((SubsamplingHor<<4)|SubsamplingVer) {
|
|
2718
|
+
case 0x44:
|
|
2719
|
+
img->put.contig = putcontig8bitYCbCr44tile;
|
|
2720
|
+
break;
|
|
2721
|
+
case 0x42:
|
|
2722
|
+
img->put.contig = putcontig8bitYCbCr42tile;
|
|
2723
|
+
break;
|
|
2724
|
+
case 0x41:
|
|
2725
|
+
img->put.contig = putcontig8bitYCbCr41tile;
|
|
2726
|
+
break;
|
|
2727
|
+
case 0x22:
|
|
2728
|
+
img->put.contig = putcontig8bitYCbCr22tile;
|
|
2729
|
+
break;
|
|
2730
|
+
case 0x21:
|
|
2731
|
+
img->put.contig = putcontig8bitYCbCr21tile;
|
|
2732
|
+
break;
|
|
2733
|
+
case 0x12:
|
|
2734
|
+
img->put.contig = putcontig8bitYCbCr12tile;
|
|
2735
|
+
break;
|
|
2736
|
+
case 0x11:
|
|
2737
|
+
img->put.contig = putcontig8bitYCbCr11tile;
|
|
2738
|
+
break;
|
|
2739
|
+
}
|
|
2740
|
+
}
|
|
2741
|
+
}
|
|
2742
|
+
break;
|
|
2743
|
+
case PHOTOMETRIC_CIELAB:
|
|
2744
|
+
if (img->samplesperpixel == 3 && buildMap(img)) {
|
|
2745
|
+
if (img->bitspersample == 8)
|
|
2746
|
+
img->put.contig = initCIELabConversion(img);
|
|
2747
|
+
break;
|
|
2748
|
+
}
|
|
2749
|
+
}
|
|
2750
|
+
return ((img->get!=NULL) && (img->put.contig!=NULL));
|
|
2751
|
+
}
|
|
2752
|
+
|
|
2753
|
+
/*
|
|
2754
|
+
* Select the appropriate conversion routine for unpacked data.
|
|
2755
|
+
*
|
|
2756
|
+
* NB: we assume that unpacked single channel data is directed
|
|
2757
|
+
* to the "packed routines.
|
|
2758
|
+
*/
|
|
2759
|
+
static int
|
|
2760
|
+
PickSeparateCase(TIFFRGBAImage* img)
|
|
2761
|
+
{
|
|
2762
|
+
img->get = TIFFIsTiled(img->tif) ? gtTileSeparate : gtStripSeparate;
|
|
2763
|
+
img->put.separate = NULL;
|
|
2764
|
+
switch (img->photometric) {
|
|
2765
|
+
case PHOTOMETRIC_MINISWHITE:
|
|
2766
|
+
case PHOTOMETRIC_MINISBLACK:
|
|
2767
|
+
/* greyscale images processed pretty much as RGB by gtTileSeparate */
|
|
2768
|
+
case PHOTOMETRIC_RGB:
|
|
2769
|
+
switch (img->bitspersample) {
|
|
2770
|
+
case 8:
|
|
2771
|
+
if (img->alpha == EXTRASAMPLE_ASSOCALPHA)
|
|
2772
|
+
img->put.separate = putRGBAAseparate8bittile;
|
|
2773
|
+
else if (img->alpha == EXTRASAMPLE_UNASSALPHA)
|
|
2774
|
+
{
|
|
2775
|
+
if (BuildMapUaToAa(img))
|
|
2776
|
+
img->put.separate = putRGBUAseparate8bittile;
|
|
2777
|
+
}
|
|
2778
|
+
else
|
|
2779
|
+
img->put.separate = putRGBseparate8bittile;
|
|
2780
|
+
break;
|
|
2781
|
+
case 16:
|
|
2782
|
+
if (img->alpha == EXTRASAMPLE_ASSOCALPHA)
|
|
2783
|
+
{
|
|
2784
|
+
if (BuildMapBitdepth16To8(img))
|
|
2785
|
+
img->put.separate = putRGBAAseparate16bittile;
|
|
2786
|
+
}
|
|
2787
|
+
else if (img->alpha == EXTRASAMPLE_UNASSALPHA)
|
|
2788
|
+
{
|
|
2789
|
+
if (BuildMapBitdepth16To8(img) &&
|
|
2790
|
+
BuildMapUaToAa(img))
|
|
2791
|
+
img->put.separate = putRGBUAseparate16bittile;
|
|
2792
|
+
}
|
|
2793
|
+
else
|
|
2794
|
+
{
|
|
2795
|
+
if (BuildMapBitdepth16To8(img))
|
|
2796
|
+
img->put.separate = putRGBseparate16bittile;
|
|
2797
|
+
}
|
|
2798
|
+
break;
|
|
2799
|
+
}
|
|
2800
|
+
break;
|
|
2801
|
+
case PHOTOMETRIC_SEPARATED:
|
|
2802
|
+
if (img->bitspersample == 8 && img->samplesperpixel == 4)
|
|
2803
|
+
{
|
|
2804
|
+
img->alpha = 1; // Not alpha, but seems like the only way to get 4th band
|
|
2805
|
+
img->put.separate = putCMYKseparate8bittile;
|
|
2806
|
+
}
|
|
2807
|
+
break;
|
|
2808
|
+
case PHOTOMETRIC_YCBCR:
|
|
2809
|
+
if ((img->bitspersample==8) && (img->samplesperpixel==3))
|
|
2810
|
+
{
|
|
2811
|
+
if (initYCbCrConversion(img)!=0)
|
|
2812
|
+
{
|
|
2813
|
+
uint16 hs, vs;
|
|
2814
|
+
TIFFGetFieldDefaulted(img->tif, TIFFTAG_YCBCRSUBSAMPLING, &hs, &vs);
|
|
2815
|
+
switch ((hs<<4)|vs) {
|
|
2816
|
+
case 0x11:
|
|
2817
|
+
img->put.separate = putseparate8bitYCbCr11tile;
|
|
2818
|
+
break;
|
|
2819
|
+
/* TODO: add other cases here */
|
|
2820
|
+
}
|
|
2821
|
+
}
|
|
2822
|
+
}
|
|
2823
|
+
break;
|
|
2824
|
+
}
|
|
2825
|
+
return ((img->get!=NULL) && (img->put.separate!=NULL));
|
|
2826
|
+
}
|
|
2827
|
+
|
|
2828
|
+
static int
|
|
2829
|
+
BuildMapUaToAa(TIFFRGBAImage* img)
|
|
2830
|
+
{
|
|
2831
|
+
static const char module[]="BuildMapUaToAa";
|
|
2832
|
+
uint8* m;
|
|
2833
|
+
uint16 na,nv;
|
|
2834
|
+
assert(img->UaToAa==NULL);
|
|
2835
|
+
img->UaToAa=_TIFFmalloc(65536);
|
|
2836
|
+
if (img->UaToAa==NULL)
|
|
2837
|
+
{
|
|
2838
|
+
TIFFErrorExt(img->tif->tif_clientdata,module,"Out of memory");
|
|
2839
|
+
return(0);
|
|
2840
|
+
}
|
|
2841
|
+
m=img->UaToAa;
|
|
2842
|
+
for (na=0; na<256; na++)
|
|
2843
|
+
{
|
|
2844
|
+
for (nv=0; nv<256; nv++)
|
|
2845
|
+
*m++=(uint8)((nv*na+127)/255);
|
|
2846
|
+
}
|
|
2847
|
+
return(1);
|
|
2848
|
+
}
|
|
2849
|
+
|
|
2850
|
+
static int
|
|
2851
|
+
BuildMapBitdepth16To8(TIFFRGBAImage* img)
|
|
2852
|
+
{
|
|
2853
|
+
static const char module[]="BuildMapBitdepth16To8";
|
|
2854
|
+
uint8* m;
|
|
2855
|
+
uint32 n;
|
|
2856
|
+
assert(img->Bitdepth16To8==NULL);
|
|
2857
|
+
img->Bitdepth16To8=_TIFFmalloc(65536);
|
|
2858
|
+
if (img->Bitdepth16To8==NULL)
|
|
2859
|
+
{
|
|
2860
|
+
TIFFErrorExt(img->tif->tif_clientdata,module,"Out of memory");
|
|
2861
|
+
return(0);
|
|
2862
|
+
}
|
|
2863
|
+
m=img->Bitdepth16To8;
|
|
2864
|
+
for (n=0; n<65536; n++)
|
|
2865
|
+
*m++=(uint8)((n+128)/257);
|
|
2866
|
+
return(1);
|
|
2867
|
+
}
|
|
2868
|
+
|
|
2869
|
+
|
|
2870
|
+
/*
|
|
2871
|
+
* Read a whole strip off data from the file, and convert to RGBA form.
|
|
2872
|
+
* If this is the last strip, then it will only contain the portion of
|
|
2873
|
+
* the strip that is actually within the image space. The result is
|
|
2874
|
+
* organized in bottom to top form.
|
|
2875
|
+
*/
|
|
2876
|
+
|
|
2877
|
+
|
|
2878
|
+
int
|
|
2879
|
+
TIFFReadRGBAStrip(TIFF* tif, uint32 row, uint32 * raster )
|
|
2880
|
+
|
|
2881
|
+
{
|
|
2882
|
+
return TIFFReadRGBAStripExt(tif, row, raster, 0 );
|
|
2883
|
+
}
|
|
2884
|
+
|
|
2885
|
+
int
|
|
2886
|
+
TIFFReadRGBAStripExt(TIFF* tif, uint32 row, uint32 * raster, int stop_on_error)
|
|
2887
|
+
|
|
2888
|
+
{
|
|
2889
|
+
char emsg[1024] = "";
|
|
2890
|
+
TIFFRGBAImage img;
|
|
2891
|
+
int ok;
|
|
2892
|
+
uint32 rowsperstrip, rows_to_read;
|
|
2893
|
+
|
|
2894
|
+
if( TIFFIsTiled( tif ) )
|
|
2895
|
+
{
|
|
2896
|
+
TIFFErrorExt(tif->tif_clientdata, TIFFFileName(tif),
|
|
2897
|
+
"Can't use TIFFReadRGBAStrip() with tiled file.");
|
|
2898
|
+
return (0);
|
|
2899
|
+
}
|
|
2900
|
+
|
|
2901
|
+
TIFFGetFieldDefaulted(tif, TIFFTAG_ROWSPERSTRIP, &rowsperstrip);
|
|
2902
|
+
if( (row % rowsperstrip) != 0 )
|
|
2903
|
+
{
|
|
2904
|
+
TIFFErrorExt(tif->tif_clientdata, TIFFFileName(tif),
|
|
2905
|
+
"Row passed to TIFFReadRGBAStrip() must be first in a strip.");
|
|
2906
|
+
return (0);
|
|
2907
|
+
}
|
|
2908
|
+
|
|
2909
|
+
if (TIFFRGBAImageOK(tif, emsg) && TIFFRGBAImageBegin(&img, tif, stop_on_error, emsg)) {
|
|
2910
|
+
|
|
2911
|
+
img.row_offset = row;
|
|
2912
|
+
img.col_offset = 0;
|
|
2913
|
+
|
|
2914
|
+
if( row + rowsperstrip > img.height )
|
|
2915
|
+
rows_to_read = img.height - row;
|
|
2916
|
+
else
|
|
2917
|
+
rows_to_read = rowsperstrip;
|
|
2918
|
+
|
|
2919
|
+
ok = TIFFRGBAImageGet(&img, raster, img.width, rows_to_read );
|
|
2920
|
+
|
|
2921
|
+
TIFFRGBAImageEnd(&img);
|
|
2922
|
+
} else {
|
|
2923
|
+
TIFFErrorExt(tif->tif_clientdata, TIFFFileName(tif), "%s", emsg);
|
|
2924
|
+
ok = 0;
|
|
2925
|
+
}
|
|
2926
|
+
|
|
2927
|
+
return (ok);
|
|
2928
|
+
}
|
|
2929
|
+
|
|
2930
|
+
/*
|
|
2931
|
+
* Read a whole tile off data from the file, and convert to RGBA form.
|
|
2932
|
+
* The returned RGBA data is organized from bottom to top of tile,
|
|
2933
|
+
* and may include zeroed areas if the tile extends off the image.
|
|
2934
|
+
*/
|
|
2935
|
+
|
|
2936
|
+
int
|
|
2937
|
+
TIFFReadRGBATile(TIFF* tif, uint32 col, uint32 row, uint32 * raster)
|
|
2938
|
+
|
|
2939
|
+
{
|
|
2940
|
+
return TIFFReadRGBATileExt(tif, col, row, raster, 0 );
|
|
2941
|
+
}
|
|
2942
|
+
|
|
2943
|
+
|
|
2944
|
+
int
|
|
2945
|
+
TIFFReadRGBATileExt(TIFF* tif, uint32 col, uint32 row, uint32 * raster, int stop_on_error )
|
|
2946
|
+
{
|
|
2947
|
+
char emsg[1024] = "";
|
|
2948
|
+
TIFFRGBAImage img;
|
|
2949
|
+
int ok;
|
|
2950
|
+
uint32 tile_xsize, tile_ysize;
|
|
2951
|
+
uint32 read_xsize, read_ysize;
|
|
2952
|
+
uint32 i_row;
|
|
2953
|
+
|
|
2954
|
+
/*
|
|
2955
|
+
* Verify that our request is legal - on a tile file, and on a
|
|
2956
|
+
* tile boundary.
|
|
2957
|
+
*/
|
|
2958
|
+
|
|
2959
|
+
if( !TIFFIsTiled( tif ) )
|
|
2960
|
+
{
|
|
2961
|
+
TIFFErrorExt(tif->tif_clientdata, TIFFFileName(tif),
|
|
2962
|
+
"Can't use TIFFReadRGBATile() with stripped file.");
|
|
2963
|
+
return (0);
|
|
2964
|
+
}
|
|
2965
|
+
|
|
2966
|
+
TIFFGetFieldDefaulted(tif, TIFFTAG_TILEWIDTH, &tile_xsize);
|
|
2967
|
+
TIFFGetFieldDefaulted(tif, TIFFTAG_TILELENGTH, &tile_ysize);
|
|
2968
|
+
if( (col % tile_xsize) != 0 || (row % tile_ysize) != 0 )
|
|
2969
|
+
{
|
|
2970
|
+
TIFFErrorExt(tif->tif_clientdata, TIFFFileName(tif),
|
|
2971
|
+
"Row/col passed to TIFFReadRGBATile() must be top"
|
|
2972
|
+
"left corner of a tile.");
|
|
2973
|
+
return (0);
|
|
2974
|
+
}
|
|
2975
|
+
|
|
2976
|
+
/*
|
|
2977
|
+
* Setup the RGBA reader.
|
|
2978
|
+
*/
|
|
2979
|
+
|
|
2980
|
+
if (!TIFFRGBAImageOK(tif, emsg)
|
|
2981
|
+
|| !TIFFRGBAImageBegin(&img, tif, stop_on_error, emsg)) {
|
|
2982
|
+
TIFFErrorExt(tif->tif_clientdata, TIFFFileName(tif), "%s", emsg);
|
|
2983
|
+
return( 0 );
|
|
2984
|
+
}
|
|
2985
|
+
|
|
2986
|
+
/*
|
|
2987
|
+
* The TIFFRGBAImageGet() function doesn't allow us to get off the
|
|
2988
|
+
* edge of the image, even to fill an otherwise valid tile. So we
|
|
2989
|
+
* figure out how much we can read, and fix up the tile buffer to
|
|
2990
|
+
* a full tile configuration afterwards.
|
|
2991
|
+
*/
|
|
2992
|
+
|
|
2993
|
+
if( row + tile_ysize > img.height )
|
|
2994
|
+
read_ysize = img.height - row;
|
|
2995
|
+
else
|
|
2996
|
+
read_ysize = tile_ysize;
|
|
2997
|
+
|
|
2998
|
+
if( col + tile_xsize > img.width )
|
|
2999
|
+
read_xsize = img.width - col;
|
|
3000
|
+
else
|
|
3001
|
+
read_xsize = tile_xsize;
|
|
3002
|
+
|
|
3003
|
+
/*
|
|
3004
|
+
* Read the chunk of imagery.
|
|
3005
|
+
*/
|
|
3006
|
+
|
|
3007
|
+
img.row_offset = row;
|
|
3008
|
+
img.col_offset = col;
|
|
3009
|
+
|
|
3010
|
+
ok = TIFFRGBAImageGet(&img, raster, read_xsize, read_ysize );
|
|
3011
|
+
|
|
3012
|
+
TIFFRGBAImageEnd(&img);
|
|
3013
|
+
|
|
3014
|
+
/*
|
|
3015
|
+
* If our read was incomplete we will need to fix up the tile by
|
|
3016
|
+
* shifting the data around as if a full tile of data is being returned.
|
|
3017
|
+
*
|
|
3018
|
+
* This is all the more complicated because the image is organized in
|
|
3019
|
+
* bottom to top format.
|
|
3020
|
+
*/
|
|
3021
|
+
|
|
3022
|
+
if( read_xsize == tile_xsize && read_ysize == tile_ysize )
|
|
3023
|
+
return( ok );
|
|
3024
|
+
|
|
3025
|
+
for( i_row = 0; i_row < read_ysize; i_row++ ) {
|
|
3026
|
+
memmove( raster + (tile_ysize - i_row - 1) * tile_xsize,
|
|
3027
|
+
raster + (read_ysize - i_row - 1) * read_xsize,
|
|
3028
|
+
read_xsize * sizeof(uint32) );
|
|
3029
|
+
_TIFFmemset( raster + (tile_ysize - i_row - 1) * tile_xsize+read_xsize,
|
|
3030
|
+
0, sizeof(uint32) * (tile_xsize - read_xsize) );
|
|
3031
|
+
}
|
|
3032
|
+
|
|
3033
|
+
for( i_row = read_ysize; i_row < tile_ysize; i_row++ ) {
|
|
3034
|
+
_TIFFmemset( raster + (tile_ysize - i_row - 1) * tile_xsize,
|
|
3035
|
+
0, sizeof(uint32) * tile_xsize );
|
|
3036
|
+
}
|
|
3037
|
+
|
|
3038
|
+
return (ok);
|
|
3039
|
+
}
|
|
3040
|
+
|
|
3041
|
+
/* vim: set ts=8 sts=8 sw=8 noet: */
|
|
3042
|
+
/*
|
|
3043
|
+
* Local Variables:
|
|
3044
|
+
* mode: c
|
|
3045
|
+
* c-basic-offset: 8
|
|
3046
|
+
* fill-column: 78
|
|
3047
|
+
* End:
|
|
3048
|
+
*/
|