laag-libtiff 4.0.9.0
Sign up to get free protection for your applications and to get access to all the features.
- 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,189 @@
|
|
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>PAL2RGB</title>
|
8
|
+
</head>
|
9
|
+
<body>
|
10
|
+
|
11
|
+
<h1 align=center>PAL2RGB</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>pal2rgb − convert a palette color
|
29
|
+
<small>TIFF</small> image to a full color image</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>pal2rgb</b> [ <i>options</i> ] <i>input.tif
|
41
|
+
output.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>Pal2rgb</i> converts a palette color
|
53
|
+
<small>TIFF</small> image to a full color image by applying
|
54
|
+
the colormap of the palette image to each sample to generate
|
55
|
+
a full color <small>RGB</small> image.</p>
|
56
|
+
</td>
|
57
|
+
</table>
|
58
|
+
<a name="OPTIONS"></a>
|
59
|
+
<h2>OPTIONS</h2>
|
60
|
+
<!-- INDENTATION -->
|
61
|
+
<table width="100%" border=0 rules="none" frame="void"
|
62
|
+
cols="2" cellspacing="0" cellpadding="0">
|
63
|
+
<tr valign="top" align="left">
|
64
|
+
<td width="8%"></td>
|
65
|
+
<td width="91%">
|
66
|
+
<p>Options that affect the interpretation of input data
|
67
|
+
are:</p>
|
68
|
+
</td>
|
69
|
+
</table>
|
70
|
+
<!-- TABS -->
|
71
|
+
<table width="100%" border=0 rules="none" frame="void"
|
72
|
+
cols="5" cellspacing="0" cellpadding="0">
|
73
|
+
<tr valign="top" align="left">
|
74
|
+
<td width="11%"></td>
|
75
|
+
<td width="2%">
|
76
|
+
|
77
|
+
<p><b>−C</b></p>
|
78
|
+
</td>
|
79
|
+
<td width="5%"></td>
|
80
|
+
<td width="80%">
|
81
|
+
|
82
|
+
<p>This option overrides the default behavior of
|
83
|
+
<i>pal2rgb</i> in determining whether or not colormap
|
84
|
+
entries contain 16-bit or 8-bit values. By default the
|
85
|
+
colormap is inspected and if no colormap entry greater than
|
86
|
+
255 is found, the colormap is assumed to have only 8-bit
|
87
|
+
values; otherwise 16-bit values (as required by the
|
88
|
+
<small>TIFF</small> specification) are assumed. The
|
89
|
+
<b>−C</b> option can be used to explicitly specify the
|
90
|
+
number of bits for colormap entries: <b>−C 8</b> for
|
91
|
+
8-bit values, <b>−C 16</b> for 16-bit values.</p>
|
92
|
+
</td>
|
93
|
+
<td width="0%">
|
94
|
+
</td>
|
95
|
+
</table>
|
96
|
+
<!-- INDENTATION -->
|
97
|
+
<table width="100%" border=0 rules="none" frame="void"
|
98
|
+
cols="2" cellspacing="0" cellpadding="0">
|
99
|
+
<tr valign="top" align="left">
|
100
|
+
<td width="8%"></td>
|
101
|
+
<td width="91%">
|
102
|
+
<p>Options that affect the output file format are:</p>
|
103
|
+
</td>
|
104
|
+
</table>
|
105
|
+
<!-- TABS -->
|
106
|
+
<table width="100%" border=0 rules="none" frame="void"
|
107
|
+
cols="5" cellspacing="0" cellpadding="0">
|
108
|
+
<tr valign="top" align="left">
|
109
|
+
<td width="10%"></td>
|
110
|
+
<td width="5%">
|
111
|
+
|
112
|
+
<p><b>−p</b></p>
|
113
|
+
</td>
|
114
|
+
<td width="3%"></td>
|
115
|
+
<td width="80%">
|
116
|
+
|
117
|
+
<p>Explicitly select the planar configuration used in
|
118
|
+
organizing data samples in the output image: <b>−p
|
119
|
+
contig</b> for samples packed contiguously, and <b>−p
|
120
|
+
separate</b> for samples stored separately. By default
|
121
|
+
samples are packed.</p>
|
122
|
+
</td>
|
123
|
+
<td width="0%">
|
124
|
+
</td>
|
125
|
+
<tr valign="top" align="left">
|
126
|
+
<td width="10%"></td>
|
127
|
+
<td width="5%">
|
128
|
+
|
129
|
+
<p><b>−c</b></p>
|
130
|
+
</td>
|
131
|
+
<td width="3%"></td>
|
132
|
+
<td width="80%">
|
133
|
+
|
134
|
+
<p>Use the specific compression algorithm to encoded image
|
135
|
+
data in the output file: <b>−c packbits</b> for
|
136
|
+
Macintosh Packbits, <b>−c lzw</b> for Lempel-Ziv &
|
137
|
+
Welch, <b>−c zip</b> for Deflate, <b>−c none</b>
|
138
|
+
for no compression. If no compression-related option is
|
139
|
+
specified, the input file’s compression algorithm is
|
140
|
+
used.</p>
|
141
|
+
</td>
|
142
|
+
<td width="0%">
|
143
|
+
</td>
|
144
|
+
<tr valign="top" align="left">
|
145
|
+
<td width="10%"></td>
|
146
|
+
<td width="5%">
|
147
|
+
|
148
|
+
<p><b>−r</b></p>
|
149
|
+
</td>
|
150
|
+
<td width="3%"></td>
|
151
|
+
<td width="80%">
|
152
|
+
|
153
|
+
<p>Explicitly specify the number of rows in each strip of
|
154
|
+
the output file. If the <b>−r</b> option is not
|
155
|
+
specified, a number is selected such that each output strip
|
156
|
+
has approximately 8 kilobytes of data in it.</p>
|
157
|
+
</td>
|
158
|
+
<td width="0%">
|
159
|
+
</td>
|
160
|
+
</table>
|
161
|
+
<a name="BUGS"></a>
|
162
|
+
<h2>BUGS</h2>
|
163
|
+
<!-- INDENTATION -->
|
164
|
+
<table width="100%" border=0 rules="none" frame="void"
|
165
|
+
cols="2" cellspacing="0" cellpadding="0">
|
166
|
+
<tr valign="top" align="left">
|
167
|
+
<td width="8%"></td>
|
168
|
+
<td width="91%">
|
169
|
+
<p>Only 8-bit images are handled.</p>
|
170
|
+
</td>
|
171
|
+
</table>
|
172
|
+
<a name="SEE ALSO"></a>
|
173
|
+
<h2>SEE ALSO</h2>
|
174
|
+
<!-- INDENTATION -->
|
175
|
+
<table width="100%" border=0 rules="none" frame="void"
|
176
|
+
cols="2" cellspacing="0" cellpadding="0">
|
177
|
+
<tr valign="top" align="left">
|
178
|
+
<td width="8%"></td>
|
179
|
+
<td width="91%">
|
180
|
+
<p><b>tiffinfo</b>(1), <b>tiffcp</b>(1),
|
181
|
+
<b>tiffmedian</b>(1), <b>libtiff</b>(3)</p>
|
182
|
+
<!-- INDENTATION -->
|
183
|
+
<p>Libtiff library home page:
|
184
|
+
<b>http://www.simplesystems.org/libtiff/</b></p>
|
185
|
+
</td>
|
186
|
+
</table>
|
187
|
+
<hr>
|
188
|
+
</body>
|
189
|
+
</html>
|
@@ -0,0 +1,141 @@
|
|
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>PPM2TIFF</title>
|
8
|
+
</head>
|
9
|
+
<body>
|
10
|
+
|
11
|
+
<h1 align=center>PPM2TIFF</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>ppm2tiff − create a <small>TIFF</small> file from
|
28
|
+
<small>PPM, PGM</small> and <small>PBM</small> image
|
29
|
+
files</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>ppm2tiff</b> [ <i>options</i> ] [ <i>input.ppm</i> ]
|
41
|
+
<i>output.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>ppm2tiff</i> converts a file in the <small>PPM,
|
53
|
+
PGM</small> and <small>PBM</small> image formats to
|
54
|
+
<small>TIFF.</small> By default, the <small>TIFF</small>
|
55
|
+
image is created with data samples packed
|
56
|
+
(<i>PlanarConfiguration</i>=1), compressed with the Packbits
|
57
|
+
algorithm (<i>Compression</i>=32773), and with each strip no
|
58
|
+
more than 8 kilobytes. These characteristics can be
|
59
|
+
overridden, or explicitly specified with the options
|
60
|
+
described below</p>
|
61
|
+
<!-- INDENTATION -->
|
62
|
+
<p>If the <small>PPM</small> file contains greyscale data,
|
63
|
+
then the <i>PhotometricInterpretation</i> tag is set to 1
|
64
|
+
(min-is-black), otherwise it is set to 2 (RGB).</p>
|
65
|
+
<!-- INDENTATION -->
|
66
|
+
<p>If no <small>PPM</small> file is specified on the command
|
67
|
+
line, <i>ppm2tiff</i> will read from the standard input.</p>
|
68
|
+
</td>
|
69
|
+
</table>
|
70
|
+
<a name="OPTIONS"></a>
|
71
|
+
<h2>OPTIONS</h2>
|
72
|
+
<!-- TABS -->
|
73
|
+
<table width="100%" border=0 rules="none" frame="void"
|
74
|
+
cols="5" cellspacing="0" cellpadding="0">
|
75
|
+
<tr valign="top" align="left">
|
76
|
+
<td width="10%"></td>
|
77
|
+
<td width="3%">
|
78
|
+
|
79
|
+
<p><b>−c</b></p>
|
80
|
+
</td>
|
81
|
+
<td width="5%"></td>
|
82
|
+
<td width="80%">
|
83
|
+
|
84
|
+
<p>Specify a compression scheme to use when writing image
|
85
|
+
data: <b>none</b> for no compression, <b>packbits</b> for
|
86
|
+
PackBits compression (will be used by default), <b>lzw</b>
|
87
|
+
for Lempel-Ziv & Welch compression, <b>jpeg</b> for
|
88
|
+
baseline JPEG compression, <b>zip</b> for Deflate
|
89
|
+
compression, <b>g3</b> for CCITT Group 3 (T.4) compression,
|
90
|
+
and <b>g4</b> for CCITT Group 4 (T.6) compression.</p>
|
91
|
+
</td>
|
92
|
+
<td width="0%">
|
93
|
+
</td>
|
94
|
+
<tr valign="top" align="left">
|
95
|
+
<td width="10%"></td>
|
96
|
+
<td width="3%">
|
97
|
+
|
98
|
+
<p><b>−r</b></p>
|
99
|
+
</td>
|
100
|
+
<td width="5%"></td>
|
101
|
+
<td width="80%">
|
102
|
+
|
103
|
+
<p>Write data with a specified number of rows per strip; by
|
104
|
+
default the number of rows/strip is selected so that each
|
105
|
+
strip is approximately 8 kilobytes.</p>
|
106
|
+
</td>
|
107
|
+
<td width="0%">
|
108
|
+
</td>
|
109
|
+
<tr valign="top" align="left">
|
110
|
+
<td width="10%"></td>
|
111
|
+
<td width="3%">
|
112
|
+
|
113
|
+
<p><b>−R</b></p>
|
114
|
+
</td>
|
115
|
+
<td width="5%"></td>
|
116
|
+
<td width="80%">
|
117
|
+
|
118
|
+
<p>Mark the resultant image to have the specified X and Y
|
119
|
+
resolution (in dots/inch).</p>
|
120
|
+
</td>
|
121
|
+
<td width="0%">
|
122
|
+
</td>
|
123
|
+
</table>
|
124
|
+
<a name="SEE ALSO"></a>
|
125
|
+
<h2>SEE ALSO</h2>
|
126
|
+
<!-- INDENTATION -->
|
127
|
+
<table width="100%" border=0 rules="none" frame="void"
|
128
|
+
cols="2" cellspacing="0" cellpadding="0">
|
129
|
+
<tr valign="top" align="left">
|
130
|
+
<td width="8%"></td>
|
131
|
+
<td width="91%">
|
132
|
+
<p><b>tiffinfo</b>(1), <b>tiffcp</b>(1),
|
133
|
+
<b>tiffmedian</b>(1), <b>libtiff</b>(3)</p>
|
134
|
+
<!-- INDENTATION -->
|
135
|
+
<p>Libtiff library home page:
|
136
|
+
<b>http://www.simplesystems.org/libtiff/</b></p>
|
137
|
+
</td>
|
138
|
+
</table>
|
139
|
+
<hr>
|
140
|
+
</body>
|
141
|
+
</html>
|
@@ -0,0 +1,510 @@
|
|
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>RAW2TIFF</title>
|
8
|
+
</head>
|
9
|
+
<body>
|
10
|
+
|
11
|
+
<h1 align=center>RAW2TIFF</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="#GUESSING THE IMAGE GEOMETRY">GUESSING THE IMAGE GEOMETRY</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>raw2tiff − create a <small>TIFF</small> file from a
|
29
|
+
raw data</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>raw2tiff</b> [ <i>options</i> ] <i>input.raw
|
41
|
+
output.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>raw2tiff</i> converts a raw byte sequence into
|
53
|
+
<small>TIFF.</small> By default, the <small>TIFF</small>
|
54
|
+
image is created with data samples packed
|
55
|
+
(<i>PlanarConfiguration</i>=1), compressed with the PackBits
|
56
|
+
algorithm (<i>Compression</i>=32773), and with each strip no
|
57
|
+
more than 8 kilobytes. These characteristics can overridden,
|
58
|
+
or explicitly specified with the options described
|
59
|
+
below.</p>
|
60
|
+
</td>
|
61
|
+
</table>
|
62
|
+
<a name="OPTIONS"></a>
|
63
|
+
<h2>OPTIONS</h2>
|
64
|
+
<!-- INDENTATION -->
|
65
|
+
<table width="100%" border=0 rules="none" frame="void"
|
66
|
+
cols="2" cellspacing="0" cellpadding="0">
|
67
|
+
<tr valign="top" align="left">
|
68
|
+
<td width="8%"></td>
|
69
|
+
<td width="91%">
|
70
|
+
<p><b>−H</b> <i>number</i></p></td>
|
71
|
+
</table>
|
72
|
+
<!-- INDENTATION -->
|
73
|
+
<table width="100%" border=0 rules="none" frame="void"
|
74
|
+
cols="2" cellspacing="0" cellpadding="0">
|
75
|
+
<tr valign="top" align="left">
|
76
|
+
<td width="19%"></td>
|
77
|
+
<td width="80%">
|
78
|
+
<p>size of input image file header in bytes (0 by default).
|
79
|
+
This amount of data just will be skipped from the start of
|
80
|
+
file while reading.</p>
|
81
|
+
</td>
|
82
|
+
</table>
|
83
|
+
<!-- INDENTATION -->
|
84
|
+
<table width="100%" border=0 rules="none" frame="void"
|
85
|
+
cols="2" cellspacing="0" cellpadding="0">
|
86
|
+
<tr valign="top" align="left">
|
87
|
+
<td width="8%"></td>
|
88
|
+
<td width="91%">
|
89
|
+
<p><b>−w</b> <i>number</i></p></td>
|
90
|
+
</table>
|
91
|
+
<!-- INDENTATION -->
|
92
|
+
<table width="100%" border=0 rules="none" frame="void"
|
93
|
+
cols="2" cellspacing="0" cellpadding="0">
|
94
|
+
<tr valign="top" align="left">
|
95
|
+
<td width="19%"></td>
|
96
|
+
<td width="80%">
|
97
|
+
<p>width of input image in pixels (can be guessed, see
|
98
|
+
<b><small>GUESSING THE IMAGE GEOMETRY</small></b>
|
99
|
+
below).</p>
|
100
|
+
</td>
|
101
|
+
</table>
|
102
|
+
<!-- INDENTATION -->
|
103
|
+
<table width="100%" border=0 rules="none" frame="void"
|
104
|
+
cols="2" cellspacing="0" cellpadding="0">
|
105
|
+
<tr valign="top" align="left">
|
106
|
+
<td width="8%"></td>
|
107
|
+
<td width="91%">
|
108
|
+
<p><b>−l</b> <i>number</i></p></td>
|
109
|
+
</table>
|
110
|
+
<!-- INDENTATION -->
|
111
|
+
<table width="100%" border=0 rules="none" frame="void"
|
112
|
+
cols="2" cellspacing="0" cellpadding="0">
|
113
|
+
<tr valign="top" align="left">
|
114
|
+
<td width="19%"></td>
|
115
|
+
<td width="80%">
|
116
|
+
<p>length of input image in lines (can be guessed, see
|
117
|
+
<b><small>GUESSING THE IMAGE GEOMETRY</small></b>
|
118
|
+
below).</p>
|
119
|
+
</td>
|
120
|
+
</table>
|
121
|
+
<!-- INDENTATION -->
|
122
|
+
<table width="100%" border=0 rules="none" frame="void"
|
123
|
+
cols="2" cellspacing="0" cellpadding="0">
|
124
|
+
<tr valign="top" align="left">
|
125
|
+
<td width="8%"></td>
|
126
|
+
<td width="91%">
|
127
|
+
<p><b>−b</b> <i>number</i></p></td>
|
128
|
+
</table>
|
129
|
+
<!-- INDENTATION -->
|
130
|
+
<table width="100%" border=0 rules="none" frame="void"
|
131
|
+
cols="2" cellspacing="0" cellpadding="0">
|
132
|
+
<tr valign="top" align="left">
|
133
|
+
<td width="19%"></td>
|
134
|
+
<td width="80%">
|
135
|
+
<p>number of bands in input image (1 by default).</p>
|
136
|
+
</td>
|
137
|
+
</table>
|
138
|
+
<!-- INDENTATION -->
|
139
|
+
<table width="100%" border=0 rules="none" frame="void"
|
140
|
+
cols="2" cellspacing="0" cellpadding="0">
|
141
|
+
<tr valign="top" align="left">
|
142
|
+
<td width="8%"></td>
|
143
|
+
<td width="91%">
|
144
|
+
<p><b>−d</b> <i>data_type</i></p></td>
|
145
|
+
</table>
|
146
|
+
<!-- INDENTATION -->
|
147
|
+
<table width="100%" border=0 rules="none" frame="void"
|
148
|
+
cols="2" cellspacing="0" cellpadding="0">
|
149
|
+
<tr valign="top" align="left">
|
150
|
+
<td width="19%"></td>
|
151
|
+
<td width="80%">
|
152
|
+
<p>type of samples in input image, where <i>data_type</i>
|
153
|
+
may be:</p></td>
|
154
|
+
</table>
|
155
|
+
<!-- TABS -->
|
156
|
+
<table width="100%" border=0 rules="none" frame="void"
|
157
|
+
cols="3" cellspacing="0" cellpadding="0">
|
158
|
+
<tr valign="top" align="left">
|
159
|
+
<td width="19%"></td>
|
160
|
+
<td width="10%">
|
161
|
+
|
162
|
+
<p><b>byte</b></p>
|
163
|
+
</td>
|
164
|
+
<td width="70%">
|
165
|
+
|
166
|
+
<p>8-bit unsigned integer (default),</p>
|
167
|
+
</td>
|
168
|
+
<tr valign="top" align="left">
|
169
|
+
<td width="19%"></td>
|
170
|
+
<td width="10%">
|
171
|
+
|
172
|
+
<p><b>short</b></p>
|
173
|
+
</td>
|
174
|
+
<td width="70%">
|
175
|
+
|
176
|
+
<p>16-bit unsigned integer,</p>
|
177
|
+
</td>
|
178
|
+
<tr valign="top" align="left">
|
179
|
+
<td width="19%"></td>
|
180
|
+
<td width="10%">
|
181
|
+
|
182
|
+
<p><b>long</b></p>
|
183
|
+
</td>
|
184
|
+
<td width="70%">
|
185
|
+
|
186
|
+
<p>32-bit unsigned integer,</p>
|
187
|
+
</td>
|
188
|
+
<tr valign="top" align="left">
|
189
|
+
<td width="19%"></td>
|
190
|
+
<td width="10%">
|
191
|
+
|
192
|
+
<p><b>sbyte</b></p>
|
193
|
+
</td>
|
194
|
+
<td width="70%">
|
195
|
+
|
196
|
+
<p>8-bit signed integer,</p>
|
197
|
+
</td>
|
198
|
+
<tr valign="top" align="left">
|
199
|
+
<td width="19%"></td>
|
200
|
+
<td width="10%">
|
201
|
+
|
202
|
+
<p><b>sshort</b></p>
|
203
|
+
</td>
|
204
|
+
<td width="70%">
|
205
|
+
|
206
|
+
<p>16-bit signed integer,</p>
|
207
|
+
</td>
|
208
|
+
<tr valign="top" align="left">
|
209
|
+
<td width="19%"></td>
|
210
|
+
<td width="10%">
|
211
|
+
|
212
|
+
<p><b>slong</b></p>
|
213
|
+
</td>
|
214
|
+
<td width="70%">
|
215
|
+
|
216
|
+
<p>32-bit signed integer,</p>
|
217
|
+
</td>
|
218
|
+
<tr valign="top" align="left">
|
219
|
+
<td width="19%"></td>
|
220
|
+
<td width="10%">
|
221
|
+
|
222
|
+
<p><b>float</b></p>
|
223
|
+
</td>
|
224
|
+
<td width="70%">
|
225
|
+
|
226
|
+
<p>32-bit IEEE floating point,</p>
|
227
|
+
</td>
|
228
|
+
<tr valign="top" align="left">
|
229
|
+
<td width="19%"></td>
|
230
|
+
<td width="10%">
|
231
|
+
|
232
|
+
<p><b>double</b></p>
|
233
|
+
</td>
|
234
|
+
<td width="70%">
|
235
|
+
|
236
|
+
<p>64-bit IEEE floating point.</p>
|
237
|
+
</td>
|
238
|
+
</table>
|
239
|
+
<!-- INDENTATION -->
|
240
|
+
<table width="100%" border=0 rules="none" frame="void"
|
241
|
+
cols="2" cellspacing="0" cellpadding="0">
|
242
|
+
<tr valign="top" align="left">
|
243
|
+
<td width="8%"></td>
|
244
|
+
<td width="91%">
|
245
|
+
<p><b>−i</b> <i>config</i></p></td>
|
246
|
+
</table>
|
247
|
+
<!-- INDENTATION -->
|
248
|
+
<table width="100%" border=0 rules="none" frame="void"
|
249
|
+
cols="2" cellspacing="0" cellpadding="0">
|
250
|
+
<tr valign="top" align="left">
|
251
|
+
<td width="19%"></td>
|
252
|
+
<td width="80%">
|
253
|
+
<p>type of samples interleaving in input image, where
|
254
|
+
<i>config</i> may be:</p></td>
|
255
|
+
</table>
|
256
|
+
<!-- TABS -->
|
257
|
+
<table width="100%" border=0 rules="none" frame="void"
|
258
|
+
cols="3" cellspacing="0" cellpadding="0">
|
259
|
+
<tr valign="top" align="left">
|
260
|
+
<td width="19%"></td>
|
261
|
+
<td width="8%">
|
262
|
+
|
263
|
+
<p><b>pixel</b></p>
|
264
|
+
</td>
|
265
|
+
<td width="71%">
|
266
|
+
|
267
|
+
<p>pixel interleaved data (default),</p>
|
268
|
+
</td>
|
269
|
+
<tr valign="top" align="left">
|
270
|
+
<td width="19%"></td>
|
271
|
+
<td width="8%">
|
272
|
+
|
273
|
+
<p><b>band</b></p>
|
274
|
+
</td>
|
275
|
+
<td width="71%">
|
276
|
+
|
277
|
+
<p>band interleaved data.</p>
|
278
|
+
</td>
|
279
|
+
</table>
|
280
|
+
<!-- INDENTATION -->
|
281
|
+
<table width="100%" border=0 rules="none" frame="void"
|
282
|
+
cols="2" cellspacing="0" cellpadding="0">
|
283
|
+
<tr valign="top" align="left">
|
284
|
+
<td width="8%"></td>
|
285
|
+
<td width="91%">
|
286
|
+
<p><b>−p</b> <i>photo</i></p></td>
|
287
|
+
</table>
|
288
|
+
<!-- INDENTATION -->
|
289
|
+
<table width="100%" border=0 rules="none" frame="void"
|
290
|
+
cols="2" cellspacing="0" cellpadding="0">
|
291
|
+
<tr valign="top" align="left">
|
292
|
+
<td width="19%"></td>
|
293
|
+
<td width="80%">
|
294
|
+
<p>photometric interpretation (color space) of the input
|
295
|
+
image, where <i>photo</i> may be:</p></td>
|
296
|
+
</table>
|
297
|
+
<!-- TABS -->
|
298
|
+
<table width="100%" border=0 rules="none" frame="void"
|
299
|
+
cols="3" cellspacing="0" cellpadding="0">
|
300
|
+
<tr valign="top" align="left">
|
301
|
+
<td width="19%"></td>
|
302
|
+
<td width="15%">
|
303
|
+
|
304
|
+
<p><b>miniswhite</b></p>
|
305
|
+
</td>
|
306
|
+
<td width="65%">
|
307
|
+
|
308
|
+
<p>white color represented with 0 value,</p>
|
309
|
+
</td>
|
310
|
+
<tr valign="top" align="left">
|
311
|
+
<td width="19%"></td>
|
312
|
+
<td width="15%">
|
313
|
+
|
314
|
+
<p><b>minisblack</b></p>
|
315
|
+
</td>
|
316
|
+
<td width="65%">
|
317
|
+
|
318
|
+
<p>black color represented with 0 value (default),</p>
|
319
|
+
</td>
|
320
|
+
<tr valign="top" align="left">
|
321
|
+
<td width="19%"></td>
|
322
|
+
<td width="15%">
|
323
|
+
|
324
|
+
<p><b>rgb</b></p>
|
325
|
+
</td>
|
326
|
+
<td width="65%">
|
327
|
+
|
328
|
+
<p>image has RGB color model,</p>
|
329
|
+
</td>
|
330
|
+
<tr valign="top" align="left">
|
331
|
+
<td width="19%"></td>
|
332
|
+
<td width="15%">
|
333
|
+
|
334
|
+
<p><b>cmyk</b></p>
|
335
|
+
</td>
|
336
|
+
<td width="65%">
|
337
|
+
|
338
|
+
<p>image has CMYK (separated) color model,</p>
|
339
|
+
</td>
|
340
|
+
<tr valign="top" align="left">
|
341
|
+
<td width="19%"></td>
|
342
|
+
<td width="15%">
|
343
|
+
|
344
|
+
<p><b>ycbcr</b></p>
|
345
|
+
</td>
|
346
|
+
<td width="65%">
|
347
|
+
|
348
|
+
<p>image has YCbCr color model,</p>
|
349
|
+
</td>
|
350
|
+
<tr valign="top" align="left">
|
351
|
+
<td width="19%"></td>
|
352
|
+
<td width="15%">
|
353
|
+
|
354
|
+
<p><b>cielab</b></p>
|
355
|
+
</td>
|
356
|
+
<td width="65%">
|
357
|
+
|
358
|
+
<p>image has CIE L*a*b color model,</p>
|
359
|
+
</td>
|
360
|
+
<tr valign="top" align="left">
|
361
|
+
<td width="19%"></td>
|
362
|
+
<td width="15%">
|
363
|
+
|
364
|
+
<p><b>icclab</b></p>
|
365
|
+
</td>
|
366
|
+
<td width="65%">
|
367
|
+
|
368
|
+
<p>image has ICC L*a*b color model,</p>
|
369
|
+
</td>
|
370
|
+
<tr valign="top" align="left">
|
371
|
+
<td width="19%"></td>
|
372
|
+
<td width="15%">
|
373
|
+
|
374
|
+
<p><b>itulab</b></p>
|
375
|
+
</td>
|
376
|
+
<td width="65%">
|
377
|
+
|
378
|
+
<p>image has ITU L*a*b color model.</p>
|
379
|
+
</td>
|
380
|
+
</table>
|
381
|
+
<!-- TABS -->
|
382
|
+
<table width="100%" border=0 rules="none" frame="void"
|
383
|
+
cols="5" cellspacing="0" cellpadding="0">
|
384
|
+
<tr valign="top" align="left">
|
385
|
+
<td width="10%"></td>
|
386
|
+
<td width="3%">
|
387
|
+
|
388
|
+
<p><b>−s</b></p>
|
389
|
+
</td>
|
390
|
+
<td width="5%"></td>
|
391
|
+
<td width="80%">
|
392
|
+
|
393
|
+
<p>swap bytes fetched from the input file.</p>
|
394
|
+
</td>
|
395
|
+
<td width="0%">
|
396
|
+
</td>
|
397
|
+
<tr valign="top" align="left">
|
398
|
+
<td width="10%"></td>
|
399
|
+
<td width="3%">
|
400
|
+
|
401
|
+
<p><b>−L</b></p>
|
402
|
+
</td>
|
403
|
+
<td width="5%"></td>
|
404
|
+
<td width="80%">
|
405
|
+
|
406
|
+
<p>input data has LSB2MSB bit order (default).</p>
|
407
|
+
</td>
|
408
|
+
<td width="0%">
|
409
|
+
</td>
|
410
|
+
<tr valign="top" align="left">
|
411
|
+
<td width="10%"></td>
|
412
|
+
<td width="3%">
|
413
|
+
|
414
|
+
<p><b>−M</b></p>
|
415
|
+
</td>
|
416
|
+
<td width="5%"></td>
|
417
|
+
<td width="80%">
|
418
|
+
|
419
|
+
<p>input data has MSB2LSB bit order.</p>
|
420
|
+
</td>
|
421
|
+
<td width="0%">
|
422
|
+
</td>
|
423
|
+
<tr valign="top" align="left">
|
424
|
+
<td width="10%"></td>
|
425
|
+
<td width="3%">
|
426
|
+
|
427
|
+
<p><b>−c</b></p>
|
428
|
+
</td>
|
429
|
+
<td width="5%"></td>
|
430
|
+
<td width="80%">
|
431
|
+
|
432
|
+
<p>Specify a compression scheme to use when writing image
|
433
|
+
data: <b>−c none</b> for no compression, <b>−c
|
434
|
+
packbits</b> for the PackBits compression algorithm (the
|
435
|
+
default), <b>−c jpeg</b> for the baseline JPEG
|
436
|
+
compression algorithm, <b>−c zip</b> for the Deflate
|
437
|
+
compression algorithm, and <b>−c lzw</b> for
|
438
|
+
Lempel-Ziv & Welch.</p>
|
439
|
+
</td>
|
440
|
+
<td width="0%">
|
441
|
+
</td>
|
442
|
+
</table>
|
443
|
+
<!-- INDENTATION -->
|
444
|
+
<table width="100%" border=0 rules="none" frame="void"
|
445
|
+
cols="2" cellspacing="0" cellpadding="0">
|
446
|
+
<tr valign="top" align="left">
|
447
|
+
<td width="8%"></td>
|
448
|
+
<td width="91%">
|
449
|
+
<p><b>−r</b> <i>number</i></p></td>
|
450
|
+
</table>
|
451
|
+
<!-- INDENTATION -->
|
452
|
+
<table width="100%" border=0 rules="none" frame="void"
|
453
|
+
cols="2" cellspacing="0" cellpadding="0">
|
454
|
+
<tr valign="top" align="left">
|
455
|
+
<td width="19%"></td>
|
456
|
+
<td width="80%">
|
457
|
+
<p>Write data with a specified number of rows per strip; by
|
458
|
+
default the number of rows/strip is selected so that each
|
459
|
+
strip is approximately 8 kilobytes.</p>
|
460
|
+
</td>
|
461
|
+
</table>
|
462
|
+
<a name="GUESSING THE IMAGE GEOMETRY"></a>
|
463
|
+
<h2>GUESSING THE IMAGE GEOMETRY</h2>
|
464
|
+
<!-- INDENTATION -->
|
465
|
+
<table width="100%" border=0 rules="none" frame="void"
|
466
|
+
cols="2" cellspacing="0" cellpadding="0">
|
467
|
+
<tr valign="top" align="left">
|
468
|
+
<td width="8%"></td>
|
469
|
+
<td width="91%">
|
470
|
+
<p><i>raw2tiff</i> can guess image width and height in case
|
471
|
+
one or both of these parameters are not specified. If you
|
472
|
+
omit one of those parameters, the complementary one will be
|
473
|
+
calculated based on the file size (taking into account
|
474
|
+
header size, number of bands and data type). If you omit
|
475
|
+
both parameters, the statistical approach will be used.
|
476
|
+
Utility will compute correlation coefficient between two
|
477
|
+
lines at the image center using several appropriate line
|
478
|
+
sizes and the highest absolute value of the coefficient will
|
479
|
+
indicate the right line size. That is why you should be
|
480
|
+
cautious with the very large images, because guessing
|
481
|
+
process may take a while (depending on your system
|
482
|
+
performance). Of course, the utility can’t guess the
|
483
|
+
header size, number of bands and data type, so it should be
|
484
|
+
specified manually. If you don’t know anything about
|
485
|
+
your image, just try with the several combinations of those
|
486
|
+
options.</p>
|
487
|
+
<!-- INDENTATION -->
|
488
|
+
<p>There is no magic, it is just a mathematical statistics,
|
489
|
+
so it can be wrong in some cases. But for most ordinary
|
490
|
+
images guessing method will work fine.</p>
|
491
|
+
</td>
|
492
|
+
</table>
|
493
|
+
<a name="SEE ALSO"></a>
|
494
|
+
<h2>SEE ALSO</h2>
|
495
|
+
<!-- INDENTATION -->
|
496
|
+
<table width="100%" border=0 rules="none" frame="void"
|
497
|
+
cols="2" cellspacing="0" cellpadding="0">
|
498
|
+
<tr valign="top" align="left">
|
499
|
+
<td width="8%"></td>
|
500
|
+
<td width="91%">
|
501
|
+
<p><b>pal2rgb</b>(1), <b>tiffcp</b>(1),
|
502
|
+
<b>tiffmedian</b>(1), <b>libtiff</b>(3)</p>
|
503
|
+
<!-- INDENTATION -->
|
504
|
+
<p>Libtiff library home page:
|
505
|
+
<b>http://www.simplesystems.org/libtiff/</b></p>
|
506
|
+
</td>
|
507
|
+
</table>
|
508
|
+
<hr>
|
509
|
+
</body>
|
510
|
+
</html>
|