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,162 @@
|
|
1
|
+
<!-- Creator : groff version 1.18.1 -->
|
2
|
+
<!-- CreationDate: Sat Feb 24 18:37:19 2007 -->
|
3
|
+
<html>
|
4
|
+
<head>
|
5
|
+
<meta name="generator" content="groff -Thtml, see www.gnu.org">
|
6
|
+
<meta name="Content-Style" content="text/css">
|
7
|
+
<title>TIFF2RGBA</title>
|
8
|
+
</head>
|
9
|
+
<body>
|
10
|
+
|
11
|
+
<h1 align=center>TIFF2RGBA</h1>
|
12
|
+
<a href="#NAME">NAME</a><br>
|
13
|
+
<a href="#SYNOPSIS">SYNOPSIS</a><br>
|
14
|
+
<a href="#DESCRIPTION">DESCRIPTION</a><br>
|
15
|
+
<a href="#OPTIONS">OPTIONS</a><br>
|
16
|
+
<a href="#SEE ALSO">SEE ALSO</a><br>
|
17
|
+
|
18
|
+
<hr>
|
19
|
+
<a name="NAME"></a>
|
20
|
+
<h2>NAME</h2>
|
21
|
+
<!-- INDENTATION -->
|
22
|
+
<table width="100%" border=0 rules="none" frame="void"
|
23
|
+
cols="2" cellspacing="0" cellpadding="0">
|
24
|
+
<tr valign="top" align="left">
|
25
|
+
<td width="8%"></td>
|
26
|
+
<td width="91%">
|
27
|
+
<p>tiff2rgba − convert a <small>TIFF</small> image to
|
28
|
+
RGBA color space</p>
|
29
|
+
</td>
|
30
|
+
</table>
|
31
|
+
<a name="SYNOPSIS"></a>
|
32
|
+
<h2>SYNOPSIS</h2>
|
33
|
+
<!-- INDENTATION -->
|
34
|
+
<table width="100%" border=0 rules="none" frame="void"
|
35
|
+
cols="2" cellspacing="0" cellpadding="0">
|
36
|
+
<tr valign="top" align="left">
|
37
|
+
<td width="8%"></td>
|
38
|
+
<td width="91%">
|
39
|
+
<p><b>tiff2rgba</b> [ <i>options</i> ] <i>input.tif
|
40
|
+
output.tif</i></p>
|
41
|
+
</td>
|
42
|
+
</table>
|
43
|
+
<a name="DESCRIPTION"></a>
|
44
|
+
<h2>DESCRIPTION</h2>
|
45
|
+
<!-- INDENTATION -->
|
46
|
+
<table width="100%" border=0 rules="none" frame="void"
|
47
|
+
cols="2" cellspacing="0" cellpadding="0">
|
48
|
+
<tr valign="top" align="left">
|
49
|
+
<td width="8%"></td>
|
50
|
+
<td width="91%">
|
51
|
+
<p><i>Tiff2rgba</i> converts a wide variety of TIFF images
|
52
|
+
into an RGBA TIFF image. This includes the ability to
|
53
|
+
translate different color spaces and photometric
|
54
|
+
interpretation into RGBA, support for alpha blending, and
|
55
|
+
translation of many different bit depths into a 32bit RGBA
|
56
|
+
image.</p>
|
57
|
+
<!-- INDENTATION -->
|
58
|
+
<p>Internally this program is implemented using the
|
59
|
+
<i>TIFFReadRGBAImage()</i> function, and it suffers any
|
60
|
+
limitations of that image. This includes limited support for
|
61
|
+
> 8 BitsPerSample images, and flaws with some esoteric
|
62
|
+
combinations of BitsPerSample, photometric interpretation,
|
63
|
+
block organization and planar configuration.</p>
|
64
|
+
<!-- INDENTATION -->
|
65
|
+
<p>The generated images are stripped images with four
|
66
|
+
samples per pixel (red, green, blue and alpha) or if the
|
67
|
+
<b>−n</b> flag is used, three samples per pixel (red,
|
68
|
+
green, and blue). The resulting images are always planar
|
69
|
+
configuration contiguous. For this reason, this program is a
|
70
|
+
useful utility for transform exotic TIFF files into a form
|
71
|
+
ingestible by almost any TIFF supporting software.</p>
|
72
|
+
</td>
|
73
|
+
</table>
|
74
|
+
<a name="OPTIONS"></a>
|
75
|
+
<h2>OPTIONS</h2>
|
76
|
+
<!-- TABS -->
|
77
|
+
<table width="100%" border=0 rules="none" frame="void"
|
78
|
+
cols="5" cellspacing="0" cellpadding="0">
|
79
|
+
<tr valign="top" align="left">
|
80
|
+
<td width="11%"></td>
|
81
|
+
<td width="2%">
|
82
|
+
|
83
|
+
<p><b>−c</b></p>
|
84
|
+
</td>
|
85
|
+
<td width="5%"></td>
|
86
|
+
<td width="80%">
|
87
|
+
|
88
|
+
<p>Specify a compression scheme to use when writing image
|
89
|
+
data: <b>−c none</b> for no compression (the default),
|
90
|
+
<b>−c packbits</b> for the PackBits compression
|
91
|
+
algorithm, <b>−c zip</b> for the Deflate compression
|
92
|
+
algorithm, <b>−c jpeg</b> for the JPEG compression
|
93
|
+
algorithm, and <b>−c lzw</b> for Lempel-Ziv &
|
94
|
+
Welch.</p>
|
95
|
+
</td>
|
96
|
+
<td width="0%">
|
97
|
+
</td>
|
98
|
+
<tr valign="top" align="left">
|
99
|
+
<td width="11%"></td>
|
100
|
+
<td width="2%">
|
101
|
+
|
102
|
+
<p><b>−r</b></p>
|
103
|
+
</td>
|
104
|
+
<td width="5%"></td>
|
105
|
+
<td width="80%">
|
106
|
+
|
107
|
+
<p>Write data with a specified number of rows per strip; by
|
108
|
+
default the number of rows/strip is selected so that each
|
109
|
+
strip is approximately 8 kilobytes.</p>
|
110
|
+
</td>
|
111
|
+
<td width="0%">
|
112
|
+
</td>
|
113
|
+
<tr valign="top" align="left">
|
114
|
+
<td width="11%"></td>
|
115
|
+
<td width="2%">
|
116
|
+
|
117
|
+
<p><b>−b</b></p>
|
118
|
+
</td>
|
119
|
+
<td width="5%"></td>
|
120
|
+
<td width="80%">
|
121
|
+
|
122
|
+
<p>Process the image one block (strip/tile) at a time
|
123
|
+
instead of by reading the whole image into memory at once.
|
124
|
+
This may be necessary for very large images on systems with
|
125
|
+
limited RAM.</p>
|
126
|
+
</td>
|
127
|
+
<td width="0%">
|
128
|
+
</td>
|
129
|
+
<tr valign="top" align="left">
|
130
|
+
<td width="11%"></td>
|
131
|
+
<td width="2%">
|
132
|
+
|
133
|
+
<p><b>−n</b></p>
|
134
|
+
</td>
|
135
|
+
<td width="5%"></td>
|
136
|
+
<td width="80%">
|
137
|
+
|
138
|
+
<p>Drop the alpha component from the output file, producing
|
139
|
+
a pure RGB file. Currently this does not work if the
|
140
|
+
<b>−b</b> flag is also in effect.</p>
|
141
|
+
</td>
|
142
|
+
<td width="0%">
|
143
|
+
</td>
|
144
|
+
</table>
|
145
|
+
<a name="SEE ALSO"></a>
|
146
|
+
<h2>SEE ALSO</h2>
|
147
|
+
<!-- INDENTATION -->
|
148
|
+
<table width="100%" border=0 rules="none" frame="void"
|
149
|
+
cols="2" cellspacing="0" cellpadding="0">
|
150
|
+
<tr valign="top" align="left">
|
151
|
+
<td width="8%"></td>
|
152
|
+
<td width="91%">
|
153
|
+
<p><b>tiff2bw</b>(1), <b>TIFFReadRGBAImage</b>(3t),
|
154
|
+
<b>libtiff</b>(3)</p>
|
155
|
+
<!-- INDENTATION -->
|
156
|
+
<p>Libtiff library home page:
|
157
|
+
<b>http://www.simplesystems.org/libtiff/</b></p>
|
158
|
+
</td>
|
159
|
+
</table>
|
160
|
+
<hr>
|
161
|
+
</body>
|
162
|
+
</html>
|
@@ -0,0 +1,156 @@
|
|
1
|
+
<!-- Creator : groff version 1.18.1 -->
|
2
|
+
<!-- CreationDate: Sat Feb 24 18:37:19 2007 -->
|
3
|
+
<html>
|
4
|
+
<head>
|
5
|
+
<meta name="generator" content="groff -Thtml, see www.gnu.org">
|
6
|
+
<meta name="Content-Style" content="text/css">
|
7
|
+
<title>TIFFCMP</title>
|
8
|
+
</head>
|
9
|
+
<body>
|
10
|
+
|
11
|
+
<h1 align=center>TIFFCMP</h1>
|
12
|
+
<a href="#NAME">NAME</a><br>
|
13
|
+
<a href="#SYNOPSIS">SYNOPSIS</a><br>
|
14
|
+
<a href="#DESCRIPTION">DESCRIPTION</a><br>
|
15
|
+
<a href="#OPTIONS">OPTIONS</a><br>
|
16
|
+
<a href="#BUGS">BUGS</a><br>
|
17
|
+
<a href="#SEE ALSO">SEE ALSO</a><br>
|
18
|
+
|
19
|
+
<hr>
|
20
|
+
<a name="NAME"></a>
|
21
|
+
<h2>NAME</h2>
|
22
|
+
<!-- INDENTATION -->
|
23
|
+
<table width="100%" border=0 rules="none" frame="void"
|
24
|
+
cols="2" cellspacing="0" cellpadding="0">
|
25
|
+
<tr valign="top" align="left">
|
26
|
+
<td width="8%"></td>
|
27
|
+
<td width="91%">
|
28
|
+
<p>tiffcmp − compare two <small>TIFF</small> files</p>
|
29
|
+
</td>
|
30
|
+
</table>
|
31
|
+
<a name="SYNOPSIS"></a>
|
32
|
+
<h2>SYNOPSIS</h2>
|
33
|
+
<!-- INDENTATION -->
|
34
|
+
<table width="100%" border=0 rules="none" frame="void"
|
35
|
+
cols="2" cellspacing="0" cellpadding="0">
|
36
|
+
<tr valign="top" align="left">
|
37
|
+
<td width="8%"></td>
|
38
|
+
<td width="91%">
|
39
|
+
<p><b>tiffcmp</b> [ <i>options</i> ] <i>file1.tif
|
40
|
+
file2.tif</i></p>
|
41
|
+
</td>
|
42
|
+
</table>
|
43
|
+
<a name="DESCRIPTION"></a>
|
44
|
+
<h2>DESCRIPTION</h2>
|
45
|
+
<!-- INDENTATION -->
|
46
|
+
<table width="100%" border=0 rules="none" frame="void"
|
47
|
+
cols="2" cellspacing="0" cellpadding="0">
|
48
|
+
<tr valign="top" align="left">
|
49
|
+
<td width="8%"></td>
|
50
|
+
<td width="91%">
|
51
|
+
<p><i>Tiffcmp</i> compares the tags and data in two files
|
52
|
+
created according to the Tagged Image File Format, Revision
|
53
|
+
6.0. The schemes used for compressing data in each file are
|
54
|
+
immaterial when data are compared−data are compared on
|
55
|
+
a scanline-by-scanline basis after decompression. Most
|
56
|
+
directory tags are checked; notable exceptions are:
|
57
|
+
<i>GrayResponseCurve</i>, <i>ColorResponseCurve</i>, and
|
58
|
+
<i>ColorMap</i> tags. Data will not be compared if any of
|
59
|
+
the <i>BitsPerSample</i>, <i>SamplesPerPixel</i>, or
|
60
|
+
<i>ImageWidth</i> values are not equal. By default,
|
61
|
+
<i>tiffcmp</i> will terminate if it encounters any
|
62
|
+
difference.</p>
|
63
|
+
</td>
|
64
|
+
</table>
|
65
|
+
<a name="OPTIONS"></a>
|
66
|
+
<h2>OPTIONS</h2>
|
67
|
+
<!-- TABS -->
|
68
|
+
<table width="100%" border=0 rules="none" frame="void"
|
69
|
+
cols="5" cellspacing="0" cellpadding="0">
|
70
|
+
<tr valign="top" align="left">
|
71
|
+
<td width="11%"></td>
|
72
|
+
<td width="2%">
|
73
|
+
|
74
|
+
<p><b>−l</b></p>
|
75
|
+
</td>
|
76
|
+
<td width="5%"></td>
|
77
|
+
<td width="80%">
|
78
|
+
|
79
|
+
<p>List each byte of image data that differs between the
|
80
|
+
files.</p>
|
81
|
+
</td>
|
82
|
+
<td width="0%">
|
83
|
+
</td>
|
84
|
+
</table>
|
85
|
+
<!-- INDENTATION -->
|
86
|
+
<table width="100%" border=0 rules="none" frame="void"
|
87
|
+
cols="2" cellspacing="0" cellpadding="0">
|
88
|
+
<tr valign="top" align="left">
|
89
|
+
<td width="8%"></td>
|
90
|
+
<td width="91%">
|
91
|
+
<p><b>−z</b> <i>number</i></p></td>
|
92
|
+
</table>
|
93
|
+
<!-- INDENTATION -->
|
94
|
+
<table width="100%" border=0 rules="none" frame="void"
|
95
|
+
cols="2" cellspacing="0" cellpadding="0">
|
96
|
+
<tr valign="top" align="left">
|
97
|
+
<td width="19%"></td>
|
98
|
+
<td width="80%">
|
99
|
+
<p>List specified number of image data bytes that differs
|
100
|
+
between the files.</p>
|
101
|
+
</td>
|
102
|
+
</table>
|
103
|
+
<!-- TABS -->
|
104
|
+
<table width="100%" border=0 rules="none" frame="void"
|
105
|
+
cols="5" cellspacing="0" cellpadding="0">
|
106
|
+
<tr valign="top" align="left">
|
107
|
+
<td width="10%"></td>
|
108
|
+
<td width="2%">
|
109
|
+
|
110
|
+
<p><b>−t</b></p>
|
111
|
+
</td>
|
112
|
+
<td width="11%"></td>
|
113
|
+
<td width="52%">
|
114
|
+
|
115
|
+
<p>Ignore any differences in directory tags.</p>
|
116
|
+
</td>
|
117
|
+
<td width="23%">
|
118
|
+
</td>
|
119
|
+
</table>
|
120
|
+
<a name="BUGS"></a>
|
121
|
+
<h2>BUGS</h2>
|
122
|
+
<!-- INDENTATION -->
|
123
|
+
<table width="100%" border=0 rules="none" frame="void"
|
124
|
+
cols="2" cellspacing="0" cellpadding="0">
|
125
|
+
<tr valign="top" align="left">
|
126
|
+
<td width="8%"></td>
|
127
|
+
<td width="91%">
|
128
|
+
<p>Tags that are not recognized by the library are not
|
129
|
+
compared; they may also generate spurious diagnostics.</p>
|
130
|
+
<!-- INDENTATION -->
|
131
|
+
<p>The image data of tiled files is not compared, since the
|
132
|
+
<i>TIFFReadScanline()</i> function is used. An error will be
|
133
|
+
reported for tiled files.</p>
|
134
|
+
<!-- INDENTATION -->
|
135
|
+
<p>The pixel and/or sample number reported in differences
|
136
|
+
may be off in some exotic cases.</p>
|
137
|
+
</td>
|
138
|
+
</table>
|
139
|
+
<a name="SEE ALSO"></a>
|
140
|
+
<h2>SEE ALSO</h2>
|
141
|
+
<!-- INDENTATION -->
|
142
|
+
<table width="100%" border=0 rules="none" frame="void"
|
143
|
+
cols="2" cellspacing="0" cellpadding="0">
|
144
|
+
<tr valign="top" align="left">
|
145
|
+
<td width="8%"></td>
|
146
|
+
<td width="91%">
|
147
|
+
<p><b>pal2rgb</b>(1), <b>tiffcp</b>(1),
|
148
|
+
<b>tiffmedian</b>(1), <b>libtiff</b>(3TIFF)</p>
|
149
|
+
<!-- INDENTATION -->
|
150
|
+
<p>Libtiff library home page:
|
151
|
+
<b>http://www.simplesystems.org/libtiff/</b></p>
|
152
|
+
</td>
|
153
|
+
</table>
|
154
|
+
<hr>
|
155
|
+
</body>
|
156
|
+
</html>
|
@@ -0,0 +1,569 @@
|
|
1
|
+
<!-- Creator : groff version 1.18.1 -->
|
2
|
+
<!-- CreationDate: Sat Feb 24 18:37:20 2007 -->
|
3
|
+
<html>
|
4
|
+
<head>
|
5
|
+
<meta name="generator" content="groff -Thtml, see www.gnu.org">
|
6
|
+
<meta name="Content-Style" content="text/css">
|
7
|
+
<title>TIFFCP</title>
|
8
|
+
</head>
|
9
|
+
<body>
|
10
|
+
|
11
|
+
<h1 align=center>TIFFCP</h1>
|
12
|
+
<a href="#NAME">NAME</a><br>
|
13
|
+
<a href="#SYNOPSIS">SYNOPSIS</a><br>
|
14
|
+
<a href="#DESCRIPTION">DESCRIPTION</a><br>
|
15
|
+
<a href="#OPTIONS">OPTIONS</a><br>
|
16
|
+
<a href="#EXAMPLES">EXAMPLES</a><br>
|
17
|
+
<a href="#SEE ALSO">SEE ALSO</a><br>
|
18
|
+
|
19
|
+
<hr>
|
20
|
+
<a name="NAME"></a>
|
21
|
+
<h2>NAME</h2>
|
22
|
+
<!-- INDENTATION -->
|
23
|
+
<table width="100%" border=0 rules="none" frame="void"
|
24
|
+
cols="2" cellspacing="0" cellpadding="0">
|
25
|
+
<tr valign="top" align="left">
|
26
|
+
<td width="8%"></td>
|
27
|
+
<td width="91%">
|
28
|
+
<p>tiffcp − copy (and possibly convert) a
|
29
|
+
<small>TIFF</small> file</p>
|
30
|
+
</td>
|
31
|
+
</table>
|
32
|
+
<a name="SYNOPSIS"></a>
|
33
|
+
<h2>SYNOPSIS</h2>
|
34
|
+
<!-- INDENTATION -->
|
35
|
+
<table width="100%" border=0 rules="none" frame="void"
|
36
|
+
cols="2" cellspacing="0" cellpadding="0">
|
37
|
+
<tr valign="top" align="left">
|
38
|
+
<td width="8%"></td>
|
39
|
+
<td width="91%">
|
40
|
+
<p><b>tiffcp</b> [ <i>options</i> ] <i>src1.tif ... srcN.tif
|
41
|
+
dst.tif</i></p>
|
42
|
+
</td>
|
43
|
+
</table>
|
44
|
+
<a name="DESCRIPTION"></a>
|
45
|
+
<h2>DESCRIPTION</h2>
|
46
|
+
<!-- INDENTATION -->
|
47
|
+
<table width="100%" border=0 rules="none" frame="void"
|
48
|
+
cols="2" cellspacing="0" cellpadding="0">
|
49
|
+
<tr valign="top" align="left">
|
50
|
+
<td width="8%"></td>
|
51
|
+
<td width="91%">
|
52
|
+
<p><i>tiffcp</i> combines one or more files created
|
53
|
+
according to the Tag Image File Format, Revision 6.0 into a
|
54
|
+
single <small>TIFF</small> file. Because the output file may
|
55
|
+
be compressed using a different algorithm than the input
|
56
|
+
files, <i>tiffcp</i> is most often used to convert between
|
57
|
+
different compression schemes.</p>
|
58
|
+
<!-- INDENTATION -->
|
59
|
+
<p>By default, <i>tiffcp</i> will copy all the understood
|
60
|
+
tags in a <small>TIFF</small> directory of an input file to
|
61
|
+
the associated directory in the output file.</p>
|
62
|
+
<!-- INDENTATION -->
|
63
|
+
<p><i>tiffcp</i> can be used to reorganize the storage
|
64
|
+
characteristics of data in a file, but it is explicitly
|
65
|
+
intended to not alter or convert the image data content in
|
66
|
+
any way.</p>
|
67
|
+
</td>
|
68
|
+
</table>
|
69
|
+
<a name="OPTIONS"></a>
|
70
|
+
<h2>OPTIONS</h2>
|
71
|
+
<!-- INDENTATION -->
|
72
|
+
<table width="100%" border=0 rules="none" frame="void"
|
73
|
+
cols="5" cellspacing="0" cellpadding="0">
|
74
|
+
<tr valign="top" align="left">
|
75
|
+
<td width="10%"></td>
|
76
|
+
<td width="3%">
|
77
|
+
<p><b>−a</b></p>
|
78
|
+
</td>
|
79
|
+
<td width="5%"></td>
|
80
|
+
<td width="80%">
|
81
|
+
|
82
|
+
<p>Append to an existing output file instead of overwriting it.</p>
|
83
|
+
</td>
|
84
|
+
<td width="0%">
|
85
|
+
</td>
|
86
|
+
</tr>
|
87
|
+
<tr valign="top" align="left">
|
88
|
+
<td width="10%"></td>
|
89
|
+
<td width="3%">
|
90
|
+
<p><b>−b</b></p></td>
|
91
|
+
<td width="5%"></td>
|
92
|
+
<td width="80%">
|
93
|
+
<p>subtract the following monochrome image from all others
|
94
|
+
processed. This can be used to remove a noise bias from a
|
95
|
+
set of images. This bias image is typically an image of
|
96
|
+
noise the camera saw with its shutter closed.</p>
|
97
|
+
</td>
|
98
|
+
<td width="0%">
|
99
|
+
</td>
|
100
|
+
<tr valign="top" align="left">
|
101
|
+
<td width="10%"></td>
|
102
|
+
<td width="3%">
|
103
|
+
|
104
|
+
<p><b>−B</b></p>
|
105
|
+
</td>
|
106
|
+
<td width="5%"></td>
|
107
|
+
<td width="80%">
|
108
|
+
|
109
|
+
<p>Force output to be written with Big-Endian byte order.
|
110
|
+
This option only has an effect when the output file is
|
111
|
+
created or overwritten and not when it is appended to.</p>
|
112
|
+
</td>
|
113
|
+
<td width="0%">
|
114
|
+
</td>
|
115
|
+
<tr valign="top" align="left">
|
116
|
+
<td width="10%"></td>
|
117
|
+
<td width="3%">
|
118
|
+
|
119
|
+
<p><b>−C</b></p>
|
120
|
+
</td>
|
121
|
+
<td width="5%"></td>
|
122
|
+
<td width="80%">
|
123
|
+
|
124
|
+
<p>Suppress the use of ‘‘strip
|
125
|
+
chopping’’ when reading images that have a
|
126
|
+
single strip/tile of uncompressed data.</p>
|
127
|
+
</td>
|
128
|
+
<td width="0%">
|
129
|
+
</td>
|
130
|
+
<tr valign="top" align="left">
|
131
|
+
<td width="10%"></td>
|
132
|
+
<td width="3%">
|
133
|
+
|
134
|
+
<p><b>−c</b></p>
|
135
|
+
</td>
|
136
|
+
<td width="5%"></td>
|
137
|
+
<td width="80%">
|
138
|
+
|
139
|
+
<p>Specify the compression to use for data written to the
|
140
|
+
output file: <b>none</b> for no compression, <b>packbits</b>
|
141
|
+
for PackBits compression, <b>lzw</b> for Lempel-Ziv &
|
142
|
+
Welch compression, <b>jpeg</b> for baseline JPEG
|
143
|
+
compression, <b>zip</b> for Deflate compression, <b>g3</b>
|
144
|
+
for CCITT Group 3 (T.4) compression, <b>g4</b> for CCITT
|
145
|
+
Group 4 (T.6) compression, or <b>sgilog</b> for SGILOG compression.
|
146
|
+
By default <i>tiffcp</i> will
|
147
|
+
compress data according to the value of the
|
148
|
+
<i>Compression</i> tag found in the source file.</p>
|
149
|
+
</td>
|
150
|
+
<td width="0%">
|
151
|
+
</td>
|
152
|
+
</table>
|
153
|
+
<!-- INDENTATION -->
|
154
|
+
<table width="100%" border=0 rules="none" frame="void"
|
155
|
+
cols="2" cellspacing="0" cellpadding="0">
|
156
|
+
<tr valign="top" align="left">
|
157
|
+
<td width="17%"></td>
|
158
|
+
<td width="82%">
|
159
|
+
<p>The <small>CCITT</small> Group 3 and Group 4 compression
|
160
|
+
algorithms can only be used with bilevel data.</p>
|
161
|
+
<!-- INDENTATION -->
|
162
|
+
<p>Group 3 compression can be specified together with
|
163
|
+
several T.4-specific options: <b>1d</b> for 1-dimensional
|
164
|
+
encoding, <b>2d</b> for 2-dimensional encoding, and
|
165
|
+
<b>fill</b> to force each encoded scanline to be zero-filled
|
166
|
+
so that the terminating EOL code lies on a byte boundary.
|
167
|
+
Group 3-specific options are specified by appending a
|
168
|
+
‘‘:’’-separated list to the
|
169
|
+
‘‘g3’’ option; e.g. <b>−c
|
170
|
+
g3:2d:fill</b> to get 2D-encoded data with byte-aligned EOL
|
171
|
+
codes.</p>
|
172
|
+
<!-- INDENTATION -->
|
173
|
+
<p><small>LZW</small> compression can be specified together
|
174
|
+
with a <i>predictor</i> value. A predictor value of 2 causes
|
175
|
+
each scanline of the output image to undergo horizontal
|
176
|
+
differencing before it is encoded; a value of 1 forces each
|
177
|
+
scanline to be encoded without differencing. LZW-specific
|
178
|
+
options are specified by appending a
|
179
|
+
‘‘:’’-separated list to the
|
180
|
+
‘‘lzw’’ option; e.g. <b>−c
|
181
|
+
lzw:2</b> for <small>LZW</small> compression with horizontal
|
182
|
+
differencing.</p>
|
183
|
+
</td>
|
184
|
+
</table>
|
185
|
+
<!-- TABS -->
|
186
|
+
<table width="100%" border=0 rules="none" frame="void"
|
187
|
+
cols="5" cellspacing="0" cellpadding="0">
|
188
|
+
<tr valign="top" align="left">
|
189
|
+
<td width="10%"></td>
|
190
|
+
<td width="3%">
|
191
|
+
|
192
|
+
<p><b>−f</b></p>
|
193
|
+
</td>
|
194
|
+
<td width="5%"></td>
|
195
|
+
<td width="80%">
|
196
|
+
|
197
|
+
<p>Specify the bit fill order to use in writing output
|
198
|
+
data. By default, <i>tiffcp</i> will create a new file with
|
199
|
+
the same fill order as the original. Specifying <b>−f
|
200
|
+
lsb2msb</b> will force data to be written with the FillOrder
|
201
|
+
tag set to <small>LSB2MSB,</small> while <b>−f
|
202
|
+
msb2lsb</b> will force data to be written with the FillOrder
|
203
|
+
tag set to <small>MSB2LSB.</small></p>
|
204
|
+
</td>
|
205
|
+
<td width="0%">
|
206
|
+
</td>
|
207
|
+
<tr valign="top" align="left">
|
208
|
+
<td width="10%"></td>
|
209
|
+
<td width="3%">
|
210
|
+
|
211
|
+
<p><b>−i</b></p>
|
212
|
+
</td>
|
213
|
+
<td width="5%"></td>
|
214
|
+
<td width="80%">
|
215
|
+
|
216
|
+
<p>Ignore non-fatal read errors and continue processing of
|
217
|
+
the input file.</p>
|
218
|
+
</td>
|
219
|
+
<td width="0%">
|
220
|
+
</td>
|
221
|
+
<tr valign="top" align="left">
|
222
|
+
<td width="10%"></td>
|
223
|
+
<td width="3%">
|
224
|
+
|
225
|
+
<p><b>−l</b></p>
|
226
|
+
</td>
|
227
|
+
<td width="5%"></td>
|
228
|
+
<td width="80%">
|
229
|
+
|
230
|
+
<p>Specify the length of a tile (in pixels). <i>tiffcp</i>
|
231
|
+
attempts to set the tile dimensions so that no more than 8
|
232
|
+
kilobytes of data appear in a tile.</p>
|
233
|
+
</td>
|
234
|
+
<td width="0%">
|
235
|
+
</td>
|
236
|
+
<tr valign="top" align="left">
|
237
|
+
<td width="10%"></td>
|
238
|
+
<td width="3%">
|
239
|
+
|
240
|
+
<p><b>−L</b></p>
|
241
|
+
</td>
|
242
|
+
<td width="5%"></td>
|
243
|
+
<td width="80%">
|
244
|
+
|
245
|
+
<p>Force output to be written with Little-Endian byte
|
246
|
+
order. This option only has an effect when the output file
|
247
|
+
is created or overwritten and not when it is appended
|
248
|
+
to.</p>
|
249
|
+
</td>
|
250
|
+
<td width="0%">
|
251
|
+
</td>
|
252
|
+
<tr valign="top" align="left">
|
253
|
+
<td width="10%"></td>
|
254
|
+
<td width="3%">
|
255
|
+
|
256
|
+
<p><b>−M</b></p>
|
257
|
+
</td>
|
258
|
+
<td width="5%"></td>
|
259
|
+
<td width="80%">
|
260
|
+
|
261
|
+
<p>Suppress the use of memory-mapped files when reading
|
262
|
+
images.</p>
|
263
|
+
</td>
|
264
|
+
<td width="0%">
|
265
|
+
</td>
|
266
|
+
<tr valign="top" align="left">
|
267
|
+
<td width="10%"></td>
|
268
|
+
<td width="3%">
|
269
|
+
|
270
|
+
<p><b>−o</b></p>
|
271
|
+
</td>
|
272
|
+
<td width="5%"></td>
|
273
|
+
<td width="80%">
|
274
|
+
|
275
|
+
<p>Set initial directory offset.</p>
|
276
|
+
</td>
|
277
|
+
<td width="0%">
|
278
|
+
</td>
|
279
|
+
<tr valign="top" align="left">
|
280
|
+
<td width="10%"></td>
|
281
|
+
<td width="3%">
|
282
|
+
|
283
|
+
<p><b>−p</b></p>
|
284
|
+
</td>
|
285
|
+
<td width="5%"></td>
|
286
|
+
<td width="80%">
|
287
|
+
|
288
|
+
<p>Specify the planar configuration to use in writing image
|
289
|
+
data that has one 8-bit sample per pixel. By default,
|
290
|
+
<i>tiffcp</i> will create a new file with the same planar
|
291
|
+
configuration as the original. Specifying <b>−p
|
292
|
+
contig</b> will force data to be written with multi-sample
|
293
|
+
data packed together, while <b>−p separate</b> will
|
294
|
+
force samples to be written in separate planes.</p>
|
295
|
+
</td>
|
296
|
+
<td width="0%">
|
297
|
+
</td>
|
298
|
+
<tr valign="top" align="left">
|
299
|
+
<td width="10%"></td>
|
300
|
+
<td width="3%">
|
301
|
+
|
302
|
+
<p><b>−r</b></p>
|
303
|
+
</td>
|
304
|
+
<td width="5%"></td>
|
305
|
+
<td width="80%">
|
306
|
+
|
307
|
+
<p>Specify the number of rows (scanlines) in each strip of
|
308
|
+
data written to the output file. By default (or when value
|
309
|
+
<b>0</b> is specified), <i>tiffcp</i> attempts to set the
|
310
|
+
rows/strip that no more than 8 kilobytes of data appear in a
|
311
|
+
strip. If you specify special value <b>−1</b> it will
|
312
|
+
results in infinite number of the rows per strip. The entire
|
313
|
+
image will be the one strip in that case.</p>
|
314
|
+
</td>
|
315
|
+
<td width="0%">
|
316
|
+
</td>
|
317
|
+
<tr valign="top" align="left">
|
318
|
+
<td width="10%"></td>
|
319
|
+
<td width="3%">
|
320
|
+
|
321
|
+
<p><b>−s</b></p>
|
322
|
+
</td>
|
323
|
+
<td width="5%"></td>
|
324
|
+
<td width="80%">
|
325
|
+
|
326
|
+
<p>Force the output file to be written with data organized
|
327
|
+
in strips (rather than tiles).</p>
|
328
|
+
</td>
|
329
|
+
<td width="0%">
|
330
|
+
</td>
|
331
|
+
<tr valign="top" align="left">
|
332
|
+
<td width="10%"></td>
|
333
|
+
<td width="3%">
|
334
|
+
|
335
|
+
<p><b>−t</b></p>
|
336
|
+
</td>
|
337
|
+
<td width="5%"></td>
|
338
|
+
<td width="80%">
|
339
|
+
|
340
|
+
<p>Force the output file to be written with data organized
|
341
|
+
in tiles (rather than strips). options can be used to force
|
342
|
+
the resultant image to be written as strips or tiles of
|
343
|
+
data, respectively.</p>
|
344
|
+
</td>
|
345
|
+
<td width="0%">
|
346
|
+
</td>
|
347
|
+
<tr valign="top" align="left">
|
348
|
+
<td width="10%"></td>
|
349
|
+
<td width="3%">
|
350
|
+
|
351
|
+
<p><b>−w</b></p>
|
352
|
+
</td>
|
353
|
+
<td width="5%"></td>
|
354
|
+
<td width="80%">
|
355
|
+
|
356
|
+
<p>Specify the width of a tile (in pixels). <i>tiffcp</i>
|
357
|
+
attempts to set the tile dimensions so that no more than 8
|
358
|
+
kilobytes of data appear in a tile. <i>tiffcp</i> attempts
|
359
|
+
to set the tile dimensions so that no more than 8 kilobytes
|
360
|
+
of data appear in a tile.</p>
|
361
|
+
</td>
|
362
|
+
<td width="0%">
|
363
|
+
</td>
|
364
|
+
<tr valign="top" align="left">
|
365
|
+
<td width="10%"></td>
|
366
|
+
<td width="3%">
|
367
|
+
|
368
|
+
<p><b>−x</b></p>
|
369
|
+
</td>
|
370
|
+
<td width="5%"></td>
|
371
|
+
<td width="80%">
|
372
|
+
|
373
|
+
<p>Force the output file to be written with PAGENUMBER value
|
374
|
+
in sequence.</p>
|
375
|
+
</td>
|
376
|
+
<td width="0%">
|
377
|
+
</td>
|
378
|
+
<tr valign="top" align="left">
|
379
|
+
<td width="10%"></td>
|
380
|
+
<td width="3%">
|
381
|
+
|
382
|
+
<p><b>−8</b></p>
|
383
|
+
</td>
|
384
|
+
<td width="5%"></td>
|
385
|
+
<td width="80%">
|
386
|
+
|
387
|
+
<p>Write BigTIFF instead of classic TIFF format.</p>
|
388
|
+
</td>
|
389
|
+
<td width="0%">
|
390
|
+
</td>
|
391
|
+
</table>
|
392
|
+
<!-- INDENTATION -->
|
393
|
+
<table width="100%" border=0 rules="none" frame="void"
|
394
|
+
cols="2" cellspacing="0" cellpadding="0">
|
395
|
+
<tr valign="top" align="left">
|
396
|
+
<td width="8%"></td>
|
397
|
+
<td width="91%">
|
398
|
+
<p><b>−,=</b><i>character</i></p></td>
|
399
|
+
</table>
|
400
|
+
<!-- INDENTATION -->
|
401
|
+
<table width="100%" border=0 rules="none" frame="void"
|
402
|
+
cols="2" cellspacing="0" cellpadding="0">
|
403
|
+
<tr valign="top" align="left">
|
404
|
+
<td width="19%"></td>
|
405
|
+
<td width="80%">
|
406
|
+
<p>substitute <i>character</i> for ‘,’ in
|
407
|
+
parsing image directory indices in files. This is necessary
|
408
|
+
if filenames contain commas. Note that <b>−,=</b> with
|
409
|
+
whitespace immediately following will disable the special
|
410
|
+
meaning of the ‘,’ entirely. See examples.</p>
|
411
|
+
</td>
|
412
|
+
</table>
|
413
|
+
<a name="EXAMPLES"></a>
|
414
|
+
<h2>EXAMPLES</h2>
|
415
|
+
<!-- INDENTATION -->
|
416
|
+
<table width="100%" border=0 rules="none" frame="void"
|
417
|
+
cols="2" cellspacing="0" cellpadding="0">
|
418
|
+
<tr valign="top" align="left">
|
419
|
+
<td width="8%"></td>
|
420
|
+
<td width="91%">
|
421
|
+
<p>The following concatenates two files and writes the
|
422
|
+
result using <small>LZW</small> encoding:</p></td>
|
423
|
+
</table>
|
424
|
+
<!-- INDENTATION -->
|
425
|
+
<table width="100%" border=0 rules="none" frame="void"
|
426
|
+
cols="2" cellspacing="0" cellpadding="0">
|
427
|
+
<tr valign="top" align="left">
|
428
|
+
<td width="17%"></td>
|
429
|
+
<td width="82%">
|
430
|
+
<pre>tiffcp −c lzw a.tif b.tif result.tif
|
431
|
+
</pre>
|
432
|
+
</td>
|
433
|
+
</table>
|
434
|
+
<!-- INDENTATION -->
|
435
|
+
|
436
|
+
<table width="100%" border=0 rules="none" frame="void"
|
437
|
+
cols="2" cellspacing="0" cellpadding="0">
|
438
|
+
<tr valign="top" align="left">
|
439
|
+
<td width="8%"></td>
|
440
|
+
<td width="91%">
|
441
|
+
<p>To convert a G3 1d-encoded <small>TIFF</small> to a
|
442
|
+
single strip of G4-encoded data the following might be
|
443
|
+
used:</p></td>
|
444
|
+
</table>
|
445
|
+
<!-- INDENTATION -->
|
446
|
+
<table width="100%" border=0 rules="none" frame="void"
|
447
|
+
cols="2" cellspacing="0" cellpadding="0">
|
448
|
+
<tr valign="top" align="left">
|
449
|
+
<td width="17%"></td>
|
450
|
+
<td width="82%">
|
451
|
+
<pre>tiffcp −c g4 −r 10000 g3.tif g4.tif
|
452
|
+
</pre>
|
453
|
+
</td>
|
454
|
+
</table>
|
455
|
+
<!-- INDENTATION -->
|
456
|
+
|
457
|
+
<table width="100%" border=0 rules="none" frame="void"
|
458
|
+
cols="2" cellspacing="0" cellpadding="0">
|
459
|
+
<tr valign="top" align="left">
|
460
|
+
<td width="8%"></td>
|
461
|
+
<td width="91%">
|
462
|
+
<p>(1000 is just a number that is larger than the number of
|
463
|
+
rows in the source file.)</p>
|
464
|
+
<!-- INDENTATION -->
|
465
|
+
<p>To extract a selected set of images from a multi-image
|
466
|
+
TIFF file, the file name may be immediately followed by a
|
467
|
+
‘,’ separated list of image directory indices.
|
468
|
+
The first image is always in directory 0. Thus, to copy the
|
469
|
+
1st and 3rd images of image file
|
470
|
+
‘‘album.tif’’ to
|
471
|
+
‘‘result.tif’’:</p></td>
|
472
|
+
</table>
|
473
|
+
<!-- INDENTATION -->
|
474
|
+
<table width="100%" border=0 rules="none" frame="void"
|
475
|
+
cols="2" cellspacing="0" cellpadding="0">
|
476
|
+
<tr valign="top" align="left">
|
477
|
+
<td width="17%"></td>
|
478
|
+
<td width="82%">
|
479
|
+
<pre>tiffcp album.tif,0,2 result.tif
|
480
|
+
</pre>
|
481
|
+
</td>
|
482
|
+
</table>
|
483
|
+
<!-- INDENTATION -->
|
484
|
+
|
485
|
+
<table width="100%" border=0 rules="none" frame="void"
|
486
|
+
cols="2" cellspacing="0" cellpadding="0">
|
487
|
+
<tr valign="top" align="left">
|
488
|
+
<td width="8%"></td>
|
489
|
+
<td width="91%">
|
490
|
+
<p>A trailing comma denotes remaining images in sequence.
|
491
|
+
The following command will copy all image with except the
|
492
|
+
first one:</p></td>
|
493
|
+
</table>
|
494
|
+
<!-- INDENTATION -->
|
495
|
+
<table width="100%" border=0 rules="none" frame="void"
|
496
|
+
cols="2" cellspacing="0" cellpadding="0">
|
497
|
+
<tr valign="top" align="left">
|
498
|
+
<td width="17%"></td>
|
499
|
+
<td width="82%">
|
500
|
+
<pre>tiffcp album.tif,1, result.tif
|
501
|
+
</pre>
|
502
|
+
</td>
|
503
|
+
</table>
|
504
|
+
<!-- INDENTATION -->
|
505
|
+
|
506
|
+
<table width="100%" border=0 rules="none" frame="void"
|
507
|
+
cols="2" cellspacing="0" cellpadding="0">
|
508
|
+
<tr valign="top" align="left">
|
509
|
+
<td width="8%"></td>
|
510
|
+
<td width="91%">
|
511
|
+
<p>Given file ‘‘CCD.tif’’ whose
|
512
|
+
first image is a noise bias followed by images which include
|
513
|
+
that bias, subtract the noise from all those images
|
514
|
+
following it (while decompressing) with the
|
515
|
+
command:</p></td>
|
516
|
+
</table>
|
517
|
+
<!-- INDENTATION -->
|
518
|
+
<table width="100%" border=0 rules="none" frame="void"
|
519
|
+
cols="2" cellspacing="0" cellpadding="0">
|
520
|
+
<tr valign="top" align="left">
|
521
|
+
<td width="17%"></td>
|
522
|
+
<td width="82%">
|
523
|
+
<pre>tiffcp −c none −b CCD.tif CCD.tif,1, result.tif
|
524
|
+
</pre>
|
525
|
+
</td>
|
526
|
+
</table>
|
527
|
+
<!-- INDENTATION -->
|
528
|
+
|
529
|
+
<table width="100%" border=0 rules="none" frame="void"
|
530
|
+
cols="2" cellspacing="0" cellpadding="0">
|
531
|
+
<tr valign="top" align="left">
|
532
|
+
<td width="8%"></td>
|
533
|
+
<td width="91%">
|
534
|
+
<p>If the file above were named
|
535
|
+
‘‘CCD,X.tif’’, the <b>−,=</b>
|
536
|
+
option would be required to correctly parse this filename
|
537
|
+
with image numbers, as follows:</p></td>
|
538
|
+
</table>
|
539
|
+
<!-- INDENTATION -->
|
540
|
+
<table width="100%" border=0 rules="none" frame="void"
|
541
|
+
cols="2" cellspacing="0" cellpadding="0">
|
542
|
+
<tr valign="top" align="left">
|
543
|
+
<td width="17%"></td>
|
544
|
+
<td width="82%">
|
545
|
+
<pre>tiffcp −c none −,=% −b CCD,X.tif CCD,X%1%.tif result.tif
|
546
|
+
|
547
|
+
</pre>
|
548
|
+
</td>
|
549
|
+
</table>
|
550
|
+
<a name="SEE ALSO"></a>
|
551
|
+
<h2>SEE ALSO</h2>
|
552
|
+
<!-- INDENTATION -->
|
553
|
+
|
554
|
+
<table width="100%" border=0 rules="none" frame="void"
|
555
|
+
cols="2" cellspacing="0" cellpadding="0">
|
556
|
+
<tr valign="top" align="left">
|
557
|
+
<td width="8%"></td>
|
558
|
+
<td width="91%">
|
559
|
+
<p><b>pal2rgb</b>(1), <b>tiffinfo</b>(1), <b>tiffcmp</b>(1),
|
560
|
+
<b>tiffmedian</b>(1), <b>tiffsplit</b>(1),
|
561
|
+
<b>libtiff</b>(3TIFF)</p>
|
562
|
+
<!-- INDENTATION -->
|
563
|
+
<p>Libtiff library home page:
|
564
|
+
<b>http://www.simplesystems.org/libtiff/</b></p>
|
565
|
+
</td>
|
566
|
+
</table>
|
567
|
+
<hr>
|
568
|
+
</body>
|
569
|
+
</html>
|