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,90 @@
|
|
|
1
|
+
.\" $Id: thumbnail.1,v 1.3 2016-09-25 20:05:51 bfriesen Exp $
|
|
2
|
+
.\"
|
|
3
|
+
.\" Copyright (c) 1994-1997 Sam Leffler
|
|
4
|
+
.\" Copyright (c) 1994-1997 Silicon Graphics, Inc.
|
|
5
|
+
.\"
|
|
6
|
+
.\" Permission to use, copy, modify, distribute, and sell this software and
|
|
7
|
+
.\" its documentation for any purpose is hereby granted without fee, provided
|
|
8
|
+
.\" that (i) the above copyright notices and this permission notice appear in
|
|
9
|
+
.\" all copies of the software and related documentation, and (ii) the names of
|
|
10
|
+
.\" Sam Leffler and Silicon Graphics may not be used in any advertising or
|
|
11
|
+
.\" publicity relating to the software without the specific, prior written
|
|
12
|
+
.\" permission of Sam Leffler and Silicon Graphics.
|
|
13
|
+
.\"
|
|
14
|
+
.\" THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
|
|
15
|
+
.\" EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
|
|
16
|
+
.\" WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
|
|
17
|
+
.\"
|
|
18
|
+
.\" IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
|
|
19
|
+
.\" ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
|
|
20
|
+
.\" OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
|
|
21
|
+
.\" WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
|
|
22
|
+
.\" LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
|
23
|
+
.\" OF THIS SOFTWARE.
|
|
24
|
+
.\"
|
|
25
|
+
.if n .po 0
|
|
26
|
+
.TH THUMBNAIL 1 "November 2, 2005" "libtiff"
|
|
27
|
+
.SH NAME
|
|
28
|
+
thumbnail \- create a
|
|
29
|
+
.SM TIFF
|
|
30
|
+
file with thumbnail images
|
|
31
|
+
.SH SYNOPSIS
|
|
32
|
+
.B thumbnail
|
|
33
|
+
[
|
|
34
|
+
.I options
|
|
35
|
+
]
|
|
36
|
+
.I input.tif
|
|
37
|
+
.I output.tif
|
|
38
|
+
.SH DESCRIPTION
|
|
39
|
+
.I thumbnail
|
|
40
|
+
is a program written to show how one might use the
|
|
41
|
+
SubIFD tag (#330) to store thumbnail images.
|
|
42
|
+
.I thumbnail
|
|
43
|
+
copies a
|
|
44
|
+
.SM TIFF
|
|
45
|
+
Class F facsimile file to the output file
|
|
46
|
+
and for each image an 8-bit greyscale
|
|
47
|
+
.IR "thumbnail sketch" .
|
|
48
|
+
The output file contains the thumbnail image with the associated
|
|
49
|
+
full-resolution page linked below with the SubIFD tag.
|
|
50
|
+
.PP
|
|
51
|
+
By default, thumbnail images are 216 pixels wide by 274 pixels high.
|
|
52
|
+
Pixels are calculated by sampling and filtering the input image
|
|
53
|
+
with each pixel value passed through a contrast curve.
|
|
54
|
+
.SH OPTIONS
|
|
55
|
+
.TP
|
|
56
|
+
.B \-w
|
|
57
|
+
Specify the width of thumbnail images in pixels.
|
|
58
|
+
.TP
|
|
59
|
+
.B \-h
|
|
60
|
+
Specify the height of thumbnail images in pixels.
|
|
61
|
+
.TP
|
|
62
|
+
.B \-c
|
|
63
|
+
Specify a contrast curve to apply in generating the thumbnail images.
|
|
64
|
+
By default pixels values are passed through a linear contrast curve
|
|
65
|
+
that simply maps the pixel value ranges.
|
|
66
|
+
Alternative curves are:
|
|
67
|
+
.B exp50
|
|
68
|
+
for a 50% exponential curve,
|
|
69
|
+
.B exp60
|
|
70
|
+
for a 60% exponential curve,
|
|
71
|
+
.B exp70
|
|
72
|
+
for a 70% exponential curve,
|
|
73
|
+
.B exp80
|
|
74
|
+
for a 80% exponential curve,
|
|
75
|
+
.B exp90
|
|
76
|
+
for a 90% exponential curve,
|
|
77
|
+
.B exp
|
|
78
|
+
for a pure exponential curve,
|
|
79
|
+
.B linear
|
|
80
|
+
for a linear curve.
|
|
81
|
+
.SH BUGS
|
|
82
|
+
There are no options to control the format of the saved thumbnail images.
|
|
83
|
+
.SH "SEE ALSO"
|
|
84
|
+
.BR tiffdump (1),
|
|
85
|
+
.BR tiffgt (1),
|
|
86
|
+
.BR tiffinfo (1),
|
|
87
|
+
.BR libtiff (3)
|
|
88
|
+
.PP
|
|
89
|
+
Libtiff library home page:
|
|
90
|
+
.BR http://www.simplesystems.org/libtiff/
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
.\" $Id: tiff2bw.1,v 1.4 2016-09-25 20:05:51 bfriesen Exp $
|
|
2
|
+
.\"
|
|
3
|
+
.\" Copyright (c) 1988-1997 Sam Leffler
|
|
4
|
+
.\" Copyright (c) 1991-1997 Silicon Graphics, Inc.
|
|
5
|
+
.\"
|
|
6
|
+
.\" Permission to use, copy, modify, distribute, and sell this software and
|
|
7
|
+
.\" its documentation for any purpose is hereby granted without fee, provided
|
|
8
|
+
.\" that (i) the above copyright notices and this permission notice appear in
|
|
9
|
+
.\" all copies of the software and related documentation, and (ii) the names of
|
|
10
|
+
.\" Sam Leffler and Silicon Graphics may not be used in any advertising or
|
|
11
|
+
.\" publicity relating to the software without the specific, prior written
|
|
12
|
+
.\" permission of Sam Leffler and Silicon Graphics.
|
|
13
|
+
.\"
|
|
14
|
+
.\" THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
|
|
15
|
+
.\" EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
|
|
16
|
+
.\" WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
|
|
17
|
+
.\"
|
|
18
|
+
.\" IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
|
|
19
|
+
.\" ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
|
|
20
|
+
.\" OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
|
|
21
|
+
.\" WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
|
|
22
|
+
.\" LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
|
23
|
+
.\" OF THIS SOFTWARE.
|
|
24
|
+
.\"
|
|
25
|
+
.if n .po 0
|
|
26
|
+
.TH TIFF2BW 1 "November 2, 2005" "libtiff"
|
|
27
|
+
.SH NAME
|
|
28
|
+
tiff2bw \- convert a color
|
|
29
|
+
.SM TIFF
|
|
30
|
+
image to greyscale
|
|
31
|
+
.SH SYNOPSIS
|
|
32
|
+
.B tiff2bw
|
|
33
|
+
[
|
|
34
|
+
.I options
|
|
35
|
+
]
|
|
36
|
+
.I input.tif
|
|
37
|
+
.I output.tif
|
|
38
|
+
.SH DESCRIPTION
|
|
39
|
+
.I Tiff2bw
|
|
40
|
+
converts an
|
|
41
|
+
.SM RGB
|
|
42
|
+
or Palette color
|
|
43
|
+
.SM TIFF
|
|
44
|
+
image to a greyscale image by
|
|
45
|
+
combining percentages of the red, green, and blue channels.
|
|
46
|
+
By default, output samples are created by taking
|
|
47
|
+
28% of the red channel, 59% of the green channel, and 11% of
|
|
48
|
+
the blue channel.
|
|
49
|
+
To alter these percentages, the
|
|
50
|
+
.BR \-R ,
|
|
51
|
+
.BR \-G ,
|
|
52
|
+
and
|
|
53
|
+
.BR \-B
|
|
54
|
+
options may be used.
|
|
55
|
+
.SH OPTIONS
|
|
56
|
+
.TP
|
|
57
|
+
.B \-c
|
|
58
|
+
Specify a compression scheme to use when writing image data:
|
|
59
|
+
.B "\-c none"
|
|
60
|
+
for no compression,
|
|
61
|
+
.B "\-c packbits"
|
|
62
|
+
for the PackBits compression algorithm,
|
|
63
|
+
.B "\-c zip
|
|
64
|
+
for the Deflate compression algorithm,
|
|
65
|
+
.B "\-c g3
|
|
66
|
+
for the CCITT Group 3 compression algorithm,
|
|
67
|
+
.B "\-c g4
|
|
68
|
+
for the CCITT Group 4 compression algorithm,
|
|
69
|
+
and
|
|
70
|
+
.B "\-c lzw"
|
|
71
|
+
for Lempel-Ziv & Welch (the default).
|
|
72
|
+
.TP
|
|
73
|
+
.B \-r
|
|
74
|
+
Write data with a specified number of rows per strip;
|
|
75
|
+
by default the number of rows/strip is selected so that each strip
|
|
76
|
+
is approximately 8 kilobytes.
|
|
77
|
+
.TP
|
|
78
|
+
.B \-R
|
|
79
|
+
Specify the percentage of the red channel to use (default 28).
|
|
80
|
+
.TP
|
|
81
|
+
.B \-G
|
|
82
|
+
Specify the percentage of the green channel to use (default 59).
|
|
83
|
+
.TP
|
|
84
|
+
.B \-B
|
|
85
|
+
Specify the percentage of the blue channel to use (default 11).
|
|
86
|
+
.SH "SEE ALSO"
|
|
87
|
+
.BR pal2rgb (1),
|
|
88
|
+
.BR tiffinfo (1),
|
|
89
|
+
.BR tiffcp (1),
|
|
90
|
+
.BR tiffmedian (1),
|
|
91
|
+
.BR libtiff (3)
|
|
92
|
+
.PP
|
|
93
|
+
Libtiff library home page:
|
|
94
|
+
.BR http://www.simplesystems.org/libtiff/
|
|
@@ -0,0 +1,254 @@
|
|
|
1
|
+
.\" $Id: tiff2pdf.1,v 1.8 2016-09-25 20:05:51 bfriesen Exp $
|
|
2
|
+
.\"
|
|
3
|
+
.\" Copyright (c) 2003 Ross Finlayson
|
|
4
|
+
.\"
|
|
5
|
+
.\" Permission to use, copy, modify, distribute, and sell this software and
|
|
6
|
+
.\" its documentation for any purpose is hereby granted without fee, provided
|
|
7
|
+
.\" that (i) the above copyright notices and this permission notice appear in
|
|
8
|
+
.\" all copies of the software and related documentation, and (ii) the name of
|
|
9
|
+
.\" Ross Finlayson may not be used in any advertising or
|
|
10
|
+
.\" publicity relating to the software without the specific, prior written
|
|
11
|
+
.\" permission of Ross Finlayson.
|
|
12
|
+
.\"
|
|
13
|
+
.\" THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
|
|
14
|
+
.\" EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
|
|
15
|
+
.\" WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
|
|
16
|
+
.\"
|
|
17
|
+
.\" IN NO EVENT SHALL ROSS FINLAYSON BE LIABLE FOR
|
|
18
|
+
.\" ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
|
|
19
|
+
.\" OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
|
|
20
|
+
.\" WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
|
|
21
|
+
.\" LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
|
22
|
+
.\" OF THIS SOFTWARE.
|
|
23
|
+
.\"
|
|
24
|
+
.\" Process this file with
|
|
25
|
+
.\" groff -man -Tascii tiff2pdf.1
|
|
26
|
+
.\"
|
|
27
|
+
.TH TIFF2PDF 1 "April 20, 2006" "libtiff"
|
|
28
|
+
.SH NAME
|
|
29
|
+
tiff2pdf \- convert a TIFF image to a PDF document
|
|
30
|
+
.SH SYNOPSIS
|
|
31
|
+
.B tiff2pdf
|
|
32
|
+
[
|
|
33
|
+
.I options
|
|
34
|
+
]
|
|
35
|
+
.I input.tiff
|
|
36
|
+
.SH DESCRIPTION
|
|
37
|
+
.I tiff2pdf
|
|
38
|
+
opens a TIFF image and writes a PDF document to standard output.
|
|
39
|
+
.PP
|
|
40
|
+
The program converts one TIFF file to one PDF file, including multiple page
|
|
41
|
+
TIFF files, tiled TIFF files, black and white. grayscale, and color TIFF
|
|
42
|
+
files that contain data of TIFF photometric interpretations of bilevel,
|
|
43
|
+
grayscale, RGB, YCbCr, CMYK separation, and ICC L*a*b* as supported by
|
|
44
|
+
.I libtiff
|
|
45
|
+
and PDF.
|
|
46
|
+
.PP
|
|
47
|
+
If you have multiple TIFF files to convert into one PDF file then use
|
|
48
|
+
.I tiffcp
|
|
49
|
+
or other program to concatenate the files into a multiple page TIFF file.
|
|
50
|
+
If the input TIFF file is of huge dimensions (greater than 10000 pixels height
|
|
51
|
+
or width) convert the input image to a tiled TIFF if it is not already.
|
|
52
|
+
.PP
|
|
53
|
+
The standard output is standard output. Set the output file name with the
|
|
54
|
+
.BI \-o " output.pdf"
|
|
55
|
+
option.
|
|
56
|
+
.PP
|
|
57
|
+
All black and white files are compressed into a single strip CCITT G4 Fax
|
|
58
|
+
compressed PDF, unless tiled, where tiled black and white images are
|
|
59
|
+
compressed into tiled CCITT G4 Fax compressed PDF,
|
|
60
|
+
.I libtiff
|
|
61
|
+
CCITT support is assumed.
|
|
62
|
+
.PP
|
|
63
|
+
Color and grayscale data can be compressed using either JPEG compression,
|
|
64
|
+
ITU-T T.81, or Zip/Deflate LZ77 compression. Set the compression type using
|
|
65
|
+
the
|
|
66
|
+
.B \-j
|
|
67
|
+
or
|
|
68
|
+
.B \-z
|
|
69
|
+
options. JPEG compression support
|
|
70
|
+
requires that
|
|
71
|
+
.I libtiff
|
|
72
|
+
be configured with JPEG support, and Zip/Deflate compression support requires
|
|
73
|
+
that
|
|
74
|
+
.I libtiff
|
|
75
|
+
be configured with Zip support, in tiffconf.h. Use only one or the other of
|
|
76
|
+
.B \-j
|
|
77
|
+
and
|
|
78
|
+
.B \-z.
|
|
79
|
+
.PP
|
|
80
|
+
If the input TIFF contains single strip CCITT G4 Fax compressed information,
|
|
81
|
+
then that is written to the PDF file without transcoding, unless the options
|
|
82
|
+
of no compression and no passthrough are set,
|
|
83
|
+
.B \-d
|
|
84
|
+
and
|
|
85
|
+
.B \-n.
|
|
86
|
+
.PP
|
|
87
|
+
If the input TIFF contains JPEG or single strip Zip/Deflate compressed
|
|
88
|
+
information, and they are configured, then that is written to the PDF file
|
|
89
|
+
without transcoding, unless the options of no compression and no passthrough
|
|
90
|
+
are set.
|
|
91
|
+
.PP
|
|
92
|
+
The default page size upon which the TIFF image is placed is determined by
|
|
93
|
+
the resolution and extent of the image data. Default values for the TIFF
|
|
94
|
+
image resolution can be set using the
|
|
95
|
+
.B \-x
|
|
96
|
+
and
|
|
97
|
+
.B \-y
|
|
98
|
+
options. The page size can be set using the
|
|
99
|
+
.B \-p
|
|
100
|
+
option for paper size, or
|
|
101
|
+
.B \-w
|
|
102
|
+
and
|
|
103
|
+
.B \-l
|
|
104
|
+
for paper width and length, then each page of the TIFF image is centered on
|
|
105
|
+
its page. The distance unit for default resolution and page width and
|
|
106
|
+
length can be set by the
|
|
107
|
+
.B \-u
|
|
108
|
+
option, the default unit is inch.
|
|
109
|
+
.PP
|
|
110
|
+
Various items of the output document information can be set with the
|
|
111
|
+
.BR \-e ,
|
|
112
|
+
.BR \-c ,
|
|
113
|
+
.BR \-a ,
|
|
114
|
+
.BR \-t ,
|
|
115
|
+
.BR \-s ,
|
|
116
|
+
and
|
|
117
|
+
.B \-k
|
|
118
|
+
options. Setting the argument of the option to "" for these
|
|
119
|
+
tags causes the relevant document information field to be not written. Some
|
|
120
|
+
of the document information values otherwise get their information from the
|
|
121
|
+
input TIFF image, the software, author, document name, and image description.
|
|
122
|
+
.PP
|
|
123
|
+
The Portable Document Format (PDF) specification is copyrighted by Adobe
|
|
124
|
+
Systems, Incorporated.
|
|
125
|
+
.SH OPTIONS
|
|
126
|
+
.TP
|
|
127
|
+
.BI \-o " output-file"
|
|
128
|
+
Set the output to go to file.
|
|
129
|
+
.I output-file
|
|
130
|
+
.TP
|
|
131
|
+
.B \-j
|
|
132
|
+
Compress with JPEG (requires
|
|
133
|
+
.I libjpeg
|
|
134
|
+
configured with
|
|
135
|
+
.IR libtiff ).
|
|
136
|
+
.TP
|
|
137
|
+
.B \-z
|
|
138
|
+
Compress with Zip/Deflate (requires
|
|
139
|
+
.I zlib
|
|
140
|
+
configured with
|
|
141
|
+
.IR libtiff ).
|
|
142
|
+
.TP
|
|
143
|
+
.BI \-q " quality"
|
|
144
|
+
Set the compression quality, 1-100 for JPEG.
|
|
145
|
+
.TP
|
|
146
|
+
.B \-n
|
|
147
|
+
Do not allow data to be converted without uncompressing, no compressed
|
|
148
|
+
data passthrough.
|
|
149
|
+
.TP
|
|
150
|
+
.BI \-b
|
|
151
|
+
Set PDF ``Interpolate'' user preference.
|
|
152
|
+
.TP
|
|
153
|
+
.B \-d
|
|
154
|
+
Do not compress (decompress).
|
|
155
|
+
.TP
|
|
156
|
+
.B \-i
|
|
157
|
+
Invert colors.
|
|
158
|
+
.TP
|
|
159
|
+
.BI \-p " paper-size"
|
|
160
|
+
Set paper size, e.g.,
|
|
161
|
+
.BR letter ,
|
|
162
|
+
.BR legal ,
|
|
163
|
+
.BR A4 .
|
|
164
|
+
.TP
|
|
165
|
+
.B \-F
|
|
166
|
+
Cause the tiff to fill the PDF page.
|
|
167
|
+
.TP
|
|
168
|
+
.BR \-u " [" i | m ]
|
|
169
|
+
Set distance unit,
|
|
170
|
+
.B i
|
|
171
|
+
for inch,
|
|
172
|
+
.B m
|
|
173
|
+
for centimeter.
|
|
174
|
+
.TP
|
|
175
|
+
.BI \-w " width"
|
|
176
|
+
Set width in units.
|
|
177
|
+
.TP
|
|
178
|
+
.BI \-l " length"
|
|
179
|
+
Set length in units.
|
|
180
|
+
.TP
|
|
181
|
+
.BI \-x " xres"
|
|
182
|
+
Set x/width resolution default.
|
|
183
|
+
.TP
|
|
184
|
+
.BI \-y " yres"
|
|
185
|
+
Set y/length resolution default.
|
|
186
|
+
.TP
|
|
187
|
+
.BR \-r " [" d | o ]
|
|
188
|
+
Set
|
|
189
|
+
.B d
|
|
190
|
+
for resolution default for images without resolution,
|
|
191
|
+
.B o
|
|
192
|
+
for resolution override for all images.
|
|
193
|
+
.TP
|
|
194
|
+
.BI \-f
|
|
195
|
+
Set PDF ``Fit Window'' user preference.
|
|
196
|
+
.TP
|
|
197
|
+
.BI \-e " YYYYMMDDHHMMSS"
|
|
198
|
+
Set document information date, overrides image or current date/time default,
|
|
199
|
+
.I YYYYMMDDHHMMSS.
|
|
200
|
+
.TP
|
|
201
|
+
.BI \-c " creator"
|
|
202
|
+
Set document information creator, overrides image software default.
|
|
203
|
+
.TP
|
|
204
|
+
.BI \-a " author"
|
|
205
|
+
Set document information author, overrides image artist default.
|
|
206
|
+
.TP
|
|
207
|
+
.BI \-t " title"
|
|
208
|
+
Set document information title, overrides image document name default.
|
|
209
|
+
.TP
|
|
210
|
+
.BI \-s " subject"
|
|
211
|
+
Set document information subject, overrides image image description default.
|
|
212
|
+
.TP
|
|
213
|
+
.BI \-k " keywords"
|
|
214
|
+
Set document information keywords.
|
|
215
|
+
.TP
|
|
216
|
+
.B \-h
|
|
217
|
+
List usage reminder to stderr and exit.
|
|
218
|
+
.SH EXAMPLES
|
|
219
|
+
.TP
|
|
220
|
+
The following example would generate the file output.pdf from input.tiff.
|
|
221
|
+
.RS
|
|
222
|
+
.nf
|
|
223
|
+
tiff2pdf \-o output.pdf input.tiff
|
|
224
|
+
.fi
|
|
225
|
+
.RE
|
|
226
|
+
.PP
|
|
227
|
+
The following example would generate PDF output from input.tiff and write it
|
|
228
|
+
to standard output.
|
|
229
|
+
.RS
|
|
230
|
+
.nf
|
|
231
|
+
tiff2pdf input.tiff
|
|
232
|
+
.fi
|
|
233
|
+
.RE
|
|
234
|
+
.PP
|
|
235
|
+
The following example would generate the file output.pdf from input.tiff,
|
|
236
|
+
putting the image pages on a letter sized page, compressing the output
|
|
237
|
+
with JPEG, with JPEG quality 75, setting the title to ``Document'', and setting
|
|
238
|
+
the ``Fit Window'' option.
|
|
239
|
+
.RS
|
|
240
|
+
.nf
|
|
241
|
+
tiff2pdf \-p letter \-j \-q 75 \-t "Document" \-f \-o output.pdf input.tiff
|
|
242
|
+
.fi
|
|
243
|
+
.RE
|
|
244
|
+
.SH BUGS
|
|
245
|
+
Please report bugs via the web interface at
|
|
246
|
+
.IP
|
|
247
|
+
\%http://bugzilla.remotesensing.org/enter_bug.cgi?product=libtiff
|
|
248
|
+
.SH "SEE ALSO"
|
|
249
|
+
.BR libtiff (3),
|
|
250
|
+
.BR tiffcp (1),
|
|
251
|
+
.BR tiff2ps (1)
|
|
252
|
+
.PP
|
|
253
|
+
Libtiff library home page:
|
|
254
|
+
.BR http://www.simplesystems.org/libtiff/
|
|
@@ -0,0 +1,294 @@
|
|
|
1
|
+
.\" $Id: tiff2ps.1,v 1.12 2016-09-25 20:05:51 bfriesen Exp $
|
|
2
|
+
.\"
|
|
3
|
+
.\" Copyright (c) 1988-1997 Sam Leffler
|
|
4
|
+
.\" Copyright (c) 1991-1997 Silicon Graphics, Inc.
|
|
5
|
+
.\"
|
|
6
|
+
.\" Permission to use, copy, modify, distribute, and sell this software and
|
|
7
|
+
.\" its documentation for any purpose is hereby granted without fee, provided
|
|
8
|
+
.\" that (i) the above copyright notices and this permission notice appear in
|
|
9
|
+
.\" all copies of the software and related documentation, and (ii) the names of
|
|
10
|
+
.\" Sam Leffler and Silicon Graphics may not be used in any advertising or
|
|
11
|
+
.\" publicity relating to the software without the specific, prior written
|
|
12
|
+
.\" permission of Sam Leffler and Silicon Graphics.
|
|
13
|
+
.\"
|
|
14
|
+
.\" THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
|
|
15
|
+
.\" EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
|
|
16
|
+
.\" WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
|
|
17
|
+
.\"
|
|
18
|
+
.\" IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
|
|
19
|
+
.\" ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
|
|
20
|
+
.\" OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
|
|
21
|
+
.\" WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
|
|
22
|
+
.\" LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
|
23
|
+
.\" OF THIS SOFTWARE.
|
|
24
|
+
.\"
|
|
25
|
+
.ds Ps PostScript
|
|
26
|
+
.if n .po 0
|
|
27
|
+
.TH TIFF2PS 1 "November 2, 2005" "libtiff"
|
|
28
|
+
.SH NAME
|
|
29
|
+
tiff2ps \- convert a
|
|
30
|
+
.SM TIFF
|
|
31
|
+
image to \*(Ps\*(Tm
|
|
32
|
+
.SH SYNOPSIS
|
|
33
|
+
.B tiff2ps
|
|
34
|
+
[
|
|
35
|
+
.I options
|
|
36
|
+
]
|
|
37
|
+
.I "input.tif ..."
|
|
38
|
+
.SH DESCRIPTION
|
|
39
|
+
.I tiff2ps
|
|
40
|
+
reads
|
|
41
|
+
.SM TIFF
|
|
42
|
+
images and writes \*(Ps or Encapsulated \*(Ps (EPS)
|
|
43
|
+
on the standard output.
|
|
44
|
+
By default,
|
|
45
|
+
.I tiff2ps
|
|
46
|
+
writes Encapsulated \*(Ps for the first image in the specified
|
|
47
|
+
.SM TIFF
|
|
48
|
+
image file.
|
|
49
|
+
.PP
|
|
50
|
+
By default,
|
|
51
|
+
.I tiff2ps
|
|
52
|
+
will generate \*(Ps that fills a printed area specified
|
|
53
|
+
by the
|
|
54
|
+
.SM TIFF
|
|
55
|
+
tags in the input file.
|
|
56
|
+
If the file does not contain
|
|
57
|
+
.I XResolution
|
|
58
|
+
or
|
|
59
|
+
.I YResolution
|
|
60
|
+
tags, then the printed area is set according to the image dimensions.
|
|
61
|
+
The
|
|
62
|
+
.B \-w
|
|
63
|
+
and
|
|
64
|
+
.B \-h
|
|
65
|
+
options (see below)
|
|
66
|
+
can be used to set the dimensions of the printed area in inches;
|
|
67
|
+
overriding any relevant
|
|
68
|
+
.SM TIFF
|
|
69
|
+
tags.
|
|
70
|
+
.PP
|
|
71
|
+
The \*(Ps generated for
|
|
72
|
+
.SM RGB,
|
|
73
|
+
palette, and
|
|
74
|
+
.SM CMYK
|
|
75
|
+
images uses the
|
|
76
|
+
.I colorimage
|
|
77
|
+
operator.
|
|
78
|
+
The \*(Ps generated for
|
|
79
|
+
greyscale and bilevel images
|
|
80
|
+
uses the
|
|
81
|
+
.I image
|
|
82
|
+
operator.
|
|
83
|
+
When the
|
|
84
|
+
.I colorimage
|
|
85
|
+
operator is used, \*(Ps code to emulate this operator
|
|
86
|
+
on older \*(Ps printers is also generated.
|
|
87
|
+
Note that this emulation code can be very slow.
|
|
88
|
+
.PP
|
|
89
|
+
Color images with associated alpha data are composited over
|
|
90
|
+
a white background.
|
|
91
|
+
.SH OPTIONS
|
|
92
|
+
.TP
|
|
93
|
+
.B \-1
|
|
94
|
+
Generate \*(Ps Level 1 (the default).
|
|
95
|
+
.TP
|
|
96
|
+
.B \-2
|
|
97
|
+
Generate \*(Ps Level 2.
|
|
98
|
+
.TP
|
|
99
|
+
.B \-3
|
|
100
|
+
Generate \*(Ps Level 3. It basically allows one to use the /flateDecode
|
|
101
|
+
filter for ZIP compressed TIFF images.
|
|
102
|
+
.TP
|
|
103
|
+
.B \-8
|
|
104
|
+
Disable use of ASCII85 encoding with \*(Ps Level 2/3.
|
|
105
|
+
.TP
|
|
106
|
+
.B \-a
|
|
107
|
+
Generate output for all IFDs (pages) in the input file.
|
|
108
|
+
.TP
|
|
109
|
+
.B \-b
|
|
110
|
+
Specify the bottom margin for the output (in inches). This does not affect
|
|
111
|
+
the height of the printed image.
|
|
112
|
+
.TP
|
|
113
|
+
.B \-c
|
|
114
|
+
Center the image in the output. This option only shows an effect if both
|
|
115
|
+
the
|
|
116
|
+
.B \-w
|
|
117
|
+
and the
|
|
118
|
+
.B \-h
|
|
119
|
+
option are given.
|
|
120
|
+
.TP
|
|
121
|
+
.B \-C
|
|
122
|
+
Specify the document creator name.
|
|
123
|
+
.TP
|
|
124
|
+
.B \-d
|
|
125
|
+
Set the initial
|
|
126
|
+
.SM TIFF
|
|
127
|
+
directory to the specified directory number.
|
|
128
|
+
(NB: Directories are numbered starting at zero.)
|
|
129
|
+
This option is useful for selecting individual pages in a
|
|
130
|
+
multi-page (e.g. facsimile) file.
|
|
131
|
+
.TP
|
|
132
|
+
.B \-D
|
|
133
|
+
Enable duplex printing (two pages per sheet of paper).
|
|
134
|
+
.TP
|
|
135
|
+
.B \-e
|
|
136
|
+
Force the generation of Encapsulated \*(Ps (implies
|
|
137
|
+
.BR \-z ).
|
|
138
|
+
.TP
|
|
139
|
+
.B \-h
|
|
140
|
+
Specify the vertical size of the printed area (in inches).
|
|
141
|
+
.TP
|
|
142
|
+
.B \-H
|
|
143
|
+
Specify the maximum height of image (in inches). Images with larger sizes will
|
|
144
|
+
be split in several pages. Option
|
|
145
|
+
.B \-L
|
|
146
|
+
may be used for specifying size of split images overlapping.
|
|
147
|
+
.B \-i
|
|
148
|
+
Enable/disable pixel interpolation. This option requires a
|
|
149
|
+
single numeric value: zero to disable pixel interpolation and
|
|
150
|
+
non-zero to enable. The default is enabled.
|
|
151
|
+
.TP
|
|
152
|
+
.B \-L
|
|
153
|
+
Specify the size of overlapping for split images (in inches). Used in
|
|
154
|
+
conjunction with
|
|
155
|
+
.B \-H
|
|
156
|
+
and
|
|
157
|
+
.B \-W
|
|
158
|
+
options.
|
|
159
|
+
.TP
|
|
160
|
+
.B \-l
|
|
161
|
+
Specify the left margin for the output (in inches). This does not affect
|
|
162
|
+
the width of the printed image.
|
|
163
|
+
.TP
|
|
164
|
+
.B \-m
|
|
165
|
+
Where possible render using the
|
|
166
|
+
.I imagemask
|
|
167
|
+
\*(Ps operator instead of the
|
|
168
|
+
.I image
|
|
169
|
+
operator. When this option is specified
|
|
170
|
+
.I tiff2ps
|
|
171
|
+
will use
|
|
172
|
+
.I imagemask
|
|
173
|
+
for rendering 1 bit deep images. If this option is not specified
|
|
174
|
+
or if the image depth is greater than 1 then the
|
|
175
|
+
.I image
|
|
176
|
+
operator is used.
|
|
177
|
+
.TP
|
|
178
|
+
.B \-o
|
|
179
|
+
Set the initial
|
|
180
|
+
.SM TIFF
|
|
181
|
+
directory to the
|
|
182
|
+
.SM IFD
|
|
183
|
+
at the specified file offset.
|
|
184
|
+
This option is useful for selecting thumbnail images and the
|
|
185
|
+
like which are hidden using the
|
|
186
|
+
.I SubIFD
|
|
187
|
+
tag.
|
|
188
|
+
.TP
|
|
189
|
+
.B \-O
|
|
190
|
+
Write \*(Ps to specified file instead of standard output.
|
|
191
|
+
.TP
|
|
192
|
+
.B \-p
|
|
193
|
+
Force the generation of (non-Encapsulated) \*(Ps.
|
|
194
|
+
.TP
|
|
195
|
+
.B \-P L|P
|
|
196
|
+
Set optional PageOrientation DSC comment to Landscape or Portrait.
|
|
197
|
+
.TP
|
|
198
|
+
.B \-r 90|180|270|auto
|
|
199
|
+
Rotate image by 90, 180, 270 degrees or auto. Auto picks the best
|
|
200
|
+
fit for the image on the specified paper size (eg portrait
|
|
201
|
+
or landscape) if -h or -w is specified. Rotation is in degrees
|
|
202
|
+
counterclockwise. Auto rotates 90 degrees ccw to produce landscape.
|
|
203
|
+
.TP
|
|
204
|
+
.B \-s
|
|
205
|
+
Generate output for a single IFD (page) in the input file.
|
|
206
|
+
.TP
|
|
207
|
+
.B \-t
|
|
208
|
+
Specify the document title string.
|
|
209
|
+
.TP
|
|
210
|
+
.B \-T
|
|
211
|
+
Print pages for top edge binding.
|
|
212
|
+
.TP
|
|
213
|
+
.B \-w
|
|
214
|
+
Specify the horizontal size of the printed area (in inches).
|
|
215
|
+
.TP
|
|
216
|
+
.B \-W
|
|
217
|
+
Specify the maximum width of image (in inches). Images with larger sizes will
|
|
218
|
+
be split in several pages. Options
|
|
219
|
+
.B \-L
|
|
220
|
+
and
|
|
221
|
+
.B \-W
|
|
222
|
+
are mutually exclusive.
|
|
223
|
+
.TP
|
|
224
|
+
.B \-x
|
|
225
|
+
Override resolution units specified in the TIFF as centimeters.
|
|
226
|
+
.TP
|
|
227
|
+
.B \-y
|
|
228
|
+
Override resolution units specified in the TIFF as inches.
|
|
229
|
+
.TP
|
|
230
|
+
.B \-z
|
|
231
|
+
When generating \*(Ps Level 2, data is scaled so that it does not
|
|
232
|
+
image into the
|
|
233
|
+
.I deadzone
|
|
234
|
+
on a page (the outer margin that the printing device is unable to mark).
|
|
235
|
+
This option suppresses this behavior.
|
|
236
|
+
When \*(Ps Level 1 is generated, data is imaged to the entire printed
|
|
237
|
+
page and this option has no affect.
|
|
238
|
+
.SH EXAMPLES
|
|
239
|
+
The following generates \*(Ps Level 2 for all pages of a facsimile:
|
|
240
|
+
.RS
|
|
241
|
+
.nf
|
|
242
|
+
tiff2ps \-a2 fax.tif | lpr
|
|
243
|
+
.fi
|
|
244
|
+
.RE
|
|
245
|
+
Note also that if you have version 2.6.1 or newer of Ghostscript then you
|
|
246
|
+
can efficiently preview facsimile generated with the above command.
|
|
247
|
+
.PP
|
|
248
|
+
To generate Encapsulated \*(Ps for a the image at directory 2
|
|
249
|
+
of an image use:
|
|
250
|
+
.RS
|
|
251
|
+
.nf
|
|
252
|
+
tiff2ps \-d 1 foo.tif
|
|
253
|
+
.fi
|
|
254
|
+
.RE
|
|
255
|
+
(Notice that directories are numbered starting at zero.)
|
|
256
|
+
.PP
|
|
257
|
+
If you have a long image, it may be split in several pages:
|
|
258
|
+
.RS
|
|
259
|
+
.nf
|
|
260
|
+
tiff2ps \-h11 \-w8.5 \-H14 \-L.5 foo.tif > foo.ps
|
|
261
|
+
.fi
|
|
262
|
+
.RE
|
|
263
|
+
The page size is set to 8.5x11 by
|
|
264
|
+
.B \-w
|
|
265
|
+
and
|
|
266
|
+
.B \-h
|
|
267
|
+
options. We will accept a small amount of vertical compression, so
|
|
268
|
+
.B \-H
|
|
269
|
+
set to 14. Any pages between 11 and 14 inches will be fit onto one page.
|
|
270
|
+
Pages longer than 14 inches are cut off at 11 and continued on the next
|
|
271
|
+
page. The
|
|
272
|
+
.B \-L.5
|
|
273
|
+
option says to repeat a half inch on the next page (to improve readability).
|
|
274
|
+
.SH BUGS
|
|
275
|
+
Because \*(Ps does not support the notion of a colormap,
|
|
276
|
+
8-bit palette images produce 24-bit \*(Ps images.
|
|
277
|
+
This conversion results in output that is six times
|
|
278
|
+
bigger than the original image and which takes a long time
|
|
279
|
+
to send to a printer over a serial line.
|
|
280
|
+
Matters are even worse for 4-, 2-, and 1-bit palette images.
|
|
281
|
+
.PP
|
|
282
|
+
Does not handle tiled images when generating \*(Ps Level I output.
|
|
283
|
+
.SH "SEE ALSO"
|
|
284
|
+
.BR pal2rgb (1),
|
|
285
|
+
.BR tiffinfo (1),
|
|
286
|
+
.BR tiffcp (1),
|
|
287
|
+
.BR tiffgt (1),
|
|
288
|
+
.BR tiffmedian (1),
|
|
289
|
+
.BR tiff2bw (1),
|
|
290
|
+
.BR tiffsv (1),
|
|
291
|
+
.BR libtiff (3)
|
|
292
|
+
.PP
|
|
293
|
+
Libtiff library home page:
|
|
294
|
+
.BR http://www.simplesystems.org/libtiff/
|