pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/graphics/tiff tiff: update to 4.5.0.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/c98a77b0a3cc
branches:  trunk
changeset: 391123:c98a77b0a3cc
user:      wiz <wiz%pkgsrc.org@localhost>
date:      Tue Jan 03 16:38:50 2023 +0000

description:
tiff: update to 4.5.0.

Changes in TIFF v4.5.0
======================

Major changes
-------------

* Whole code base reformatting of .c/.h files using new .clang-format format
* Documentation changed from static HTML and man pages to Restructured Text
  (rst). HTML and man pages are now build artifacts.

Software configuration changes
------------------------------

* SONAME version bumped to 6 due to changes in symbol versioning.
* autoconf/cmake: detect (not yet released) libjpeg-turbo 2.2 to take into
  its capability of handling both 8-bit JPEG and 12-bit JPEG in a single build.
* autoconf/cmake: detect sphinx-build to build HTML and man pages
* CMakeLists.txt: fix warning with -Wdev
* CMake: correctly set default value of 'lzma' option when liblzma is detected
  (:issue:`482`)
* CMake: Moved linking of CMath::CMath into CMath_LIBRARY check.
* Fix CMake build to be compatible with FetchContent.
* cmake: Correct duplicate definition of _CRT_SECURE_NO_WARNINGS (:issue:`443`)
* cmake: Fixes for Visual Studio 2022.
* Adds Requires.private generation so that pkg-config can correctly find
  the dependencies of libtiff.
* Fix dependency on libm on Android
* cmake: libtiffxx is static on win32
* Fix build in tif_lzw.c
* CMake: Add options for disabling tools, tests, contrib and docs.

Library changes
---------------

New/improved functionalities:

* Addition of an open option concept with the new functions
  :c:func:`TIFFOpenExt`, :c:func:`TIFFOpenWExt`, :c:func:`TIFFFdOpenExt`,
  :c:func:`TIFFClientOpenExt`, :c:func:`TIFFOpenOptionsAlloc`,
  :c:func:`TIFFOpenOptionsFree`
* Leveraging above mentioned open option concept, addition of a new capability
  to limit the size of a single dynamic memory allocation done
  by the library with :c:func:`TIFFOpenOptionsSetMaxSingleMemAlloc`
* Leveraging above mentioned open option concept, addition of a new capability
  to specify per-TIFF handle re-entrant error and warning callbacks
  with :c:func:`TIFFOpenOptionsSetErrorHandlerExtR` and
  :c:func:`TIFFOpenOptionsSetWarningHandlerExtR`
* Related to IFD-Loop detection refactoring, the number of IFDs that libtiff
  can browse through has been extended from 65535 to 1048576. This value is
  a build-time setting that can be configured with CMake's TIFF_MAX_DIR_COUNT
  variable or autoconf's --with-max-dir-count option.

API/ABI breaks:

* tdir_t type updated to uint32_t. This type is now used for the return value of
  :c:func:`TIFFCurrentDirectory` and :c:func:`TIFFNumberOfDirectories`, and
  as the argument of :c:func:`TIFFSetDirectory` and :c:func:`TIFFUnlinkDirectory`

Bug fixes:

* TIFFWriteRawStrip(): restore capabilities to append data in the current strip
  (:issue:`489`)
* _TIFFReadEncodedTileAndAllocBuffer(): avoid excessive memory allocation on
  broken files (:issue:`479`)
* TIFFReadRGBATileExt(): fix (unsigned) integer overflow on strips/tiles > 2 GB
  (oss-fuzz #53137)
* Replace sprintf calls with snprintf to fix warnings on macOS 13 SDK
* Added warning messages for FIELD_IGNORE tags for writing and for
  TIFF_SETGET_UNDEFINED for reading added. (:issue:`438`)
* tif_dirinfo.c: fix TIFFTAG_CLIPPATH tag declaration (:issue:`439`)
* tif_dirinfo.c: fix TIFFTAG_COMPRESSION and _BITSPERSAMPLE tag declaration
  (:issue:`364`)
* Revised handling of TIFFTAG_INKNAMES and related TIFFTAG_NUMBEROFINKS value
  (:issue:`149`, :issue:`150`, :issue:`152`, :issue:`168`, :issue:`250`,
  :issue:`269`,:issue:`398`, CVE-2022-3599, :issue:`456`)
* TIFFAdvanceDirectory(): fix unsigned-integer-overflow in mapped case
  (oss-fuzz #52309)
* Improved/fixes IFD-Loop Handling (:issue:`455`).
* Update getimage to support large raster images.
* Presetting of default tag values extended (e.g. PlanarConfig). (:issue:`449`)
* Deal with RichTIFFIPTC tag written with LONG type (:issue:`225`)
* TIFFSetValue(): Writing IFD8 & LONG8 tags to ClassicTIFF corrected
  (:issue:`442`)
* tif_jpeg.c: allow to pass -DEXPECTED_JPEG_LIB_VERSION=number to do optional
  compile-time version check
* TIFFReadFromUserBuffer(): fix clearing of TIFF_CODERSETUP flag that could
  cause issues with reading JPEG compressed files
* _TIFFCheckFieldIsValidForCodec(): return FALSE when passed a codec-specific
  tag and the codec is not configured (:issue:`433`, :issue:`486`,
  CVE-2022-34526)
* Add basic 16 bit cielab support.
* WEBP codec: avoid temporary buffer and memcpy() on whole tile/strip decoding
* tif_predict.c: make horAcc8() work with icc (ICC) 2021.6.0 20220226 -O2

Tools changes
-------------

New/improved functionality:

* :program:`tiffinfo`: Updated to parse through SubIFDs and show their tags.

Bug fixes:

* :program:`tiffcrop`: add check if (bps != 1) in writeSingleSection()
  (:issue:`169`)
* :program:`tiffcrop`: Fix too many 'mode' options on command line
  (:issue:`470` and :issue:`450`)
* :program:`tiffcrop`: Fix memory allocation to require a larger buffer
  (:issue:`271`, :issue:`381`, :issue:`386`, :issue:`388`, :issue:`389`,
  :issue:`435`, CVE-2022-3570, CVE-2022-3598)
* :program:`tiffcrop`: disable incompatibility of -Z, -X, -Y, -z options with
  any PAGE_MODE_x option (:issue:`411`, CVE-2022-3627, :issue:`413`,
  CVE-2022-3597, :issue:`426`, CVE-2022-3626)
* :program:`tiffcrop`: -S option mutually exclusive (:issue:`349`,
  :issue:`414`, :issue:`422`, :issue:`423`, :issue:`424`)
* :program:`tiffcrop`: fix floating-point exception (:issue:`415`,
  :issue:`427`, :issue:`428`, CVE-2022-2056, CVE-2022-2057, CVE-2022-2058)
* :program:`tiff2pdf`: Don't try to seek into stdout (:issue:`441`)
* :program:`tiffinfo`: update curdir from uint16_t to tdir_t for more than 64k
  IFD handling.

diffstat:

 graphics/tiff/Makefile                  |    4 +-
 graphics/tiff/PLIST                     |  517 ++++++++++++++++++++++---------
 graphics/tiff/distinfo                  |   10 +-
 graphics/tiff/patches/patch-Makefile.in |   10 +-
 4 files changed, 383 insertions(+), 158 deletions(-)

diffs (truncated from 635 to 300 lines):

diff -r a009f36600e4 -r c98a77b0a3cc graphics/tiff/Makefile
--- a/graphics/tiff/Makefile    Tue Jan 03 16:33:00 2023 +0000
+++ b/graphics/tiff/Makefile    Tue Jan 03 16:38:50 2023 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.154 2022/06/05 14:02:44 gdt Exp $
+# $NetBSD: Makefile,v 1.155 2023/01/03 16:38:50 wiz Exp $
 
-VERSION_BASE=  4.4.0
+VERSION_BASE=  4.5.0
 # Accomodate testing unreleased versions.
 #VERSION_RC=   rc1
 DISTNAME=      tiff-${VERSION_BASE}${VERSION_RC}
diff -r a009f36600e4 -r c98a77b0a3cc graphics/tiff/PLIST
--- a/graphics/tiff/PLIST       Tue Jan 03 16:33:00 2023 +0000
+++ b/graphics/tiff/PLIST       Tue Jan 03 16:38:50 2023 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.30 2022/05/29 12:24:16 gdt Exp $
+@comment $NetBSD: PLIST,v 1.31 2023/01/03 16:38:50 wiz Exp $
 bin/fax2ps
 bin/fax2tiff
 bin/pal2rgb
@@ -30,6 +30,8 @@
 man/man1/pal2rgb.1
 man/man1/ppm2tiff.1
 man/man1/raw2tiff.1
+man/man1/rgb2ycbcr.1
+man/man1/thumbnail.1
 man/man1/tiff2bw.1
 man/man1/tiff2pdf.1
 man/man1/tiff2ps.1
@@ -44,23 +46,33 @@
 man/man1/tiffmedian.1
 man/man1/tiffset.1
 man/man1/tiffsplit.1
+man/man3/TIFFAccessTagMethods.3
+man/man3/TIFFClientInfo.3
 man/man3/TIFFClose.3
+man/man3/TIFFCreateDirectory.3
+man/man3/TIFFCustomDirectory.3
+man/man3/TIFFCustomTagList.3
 man/man3/TIFFDataWidth.3
+man/man3/TIFFDeferStrileArrayWriting.3
 man/man3/TIFFError.3
 man/man3/TIFFFieldDataType.3
 man/man3/TIFFFieldName.3
 man/man3/TIFFFieldPassCount.3
+man/man3/TIFFFieldQuery.3
 man/man3/TIFFFieldReadCount.3
 man/man3/TIFFFieldTag.3
 man/man3/TIFFFieldWriteCount.3
 man/man3/TIFFFlush.3
 man/man3/TIFFGetField.3
+man/man3/TIFFMergeFieldInfo.3
 man/man3/TIFFOpen.3
 man/man3/TIFFPrintDirectory.3
+man/man3/TIFFProcFunctions.3
 man/man3/TIFFRGBAImage.3
 man/man3/TIFFReadDirectory.3
 man/man3/TIFFReadEncodedStrip.3
 man/man3/TIFFReadEncodedTile.3
+man/man3/TIFFReadFromUserBuffer.3
 man/man3/TIFFReadRGBAImage.3
 man/man3/TIFFReadRGBAStrip.3
 man/man3/TIFFReadRGBATile.3
@@ -70,6 +82,8 @@
 man/man3/TIFFReadTile.3
 man/man3/TIFFSetDirectory.3
 man/man3/TIFFSetField.3
+man/man3/TIFFSetTagExtender.3
+man/man3/TIFFStrileQuery.3
 man/man3/TIFFWarning.3
 man/man3/TIFFWriteDirectory.3
 man/man3/TIFFWriteEncodedStrip.3
@@ -87,154 +101,365 @@
 man/man3/TIFFstrip.3
 man/man3/TIFFswab.3
 man/man3/TIFFtile.3
+man/man3/_TIFFRewriteField.3
+man/man3/_TIFFauxiliary.3
 man/man3/libtiff.3
-share/doc/tiff/COPYRIGHT
 share/doc/tiff/ChangeLog
+share/doc/tiff/LICENSE.md
 share/doc/tiff/README.md
 share/doc/tiff/RELEASE-DATE
 share/doc/tiff/TODO
 share/doc/tiff/VERSION
-share/doc/tiff/html/TIFFTechNote2.html
-share/doc/tiff/html/addingtags.html
-share/doc/tiff/html/bugs.html
-share/doc/tiff/html/build.html
-share/doc/tiff/html/contrib.html
-share/doc/tiff/html/document.html
-share/doc/tiff/html/images.html
-share/doc/tiff/html/images/back.gif
-share/doc/tiff/html/images/bali.jpg
-share/doc/tiff/html/images/cat.gif
-share/doc/tiff/html/images/cover.jpg
-share/doc/tiff/html/images/cramps.gif
-share/doc/tiff/html/images/dave.gif
-share/doc/tiff/html/images/info.gif
-share/doc/tiff/html/images/jello.jpg
-share/doc/tiff/html/images/jim.gif
-share/doc/tiff/html/images/note.gif
-share/doc/tiff/html/images/oxford.gif
-share/doc/tiff/html/images/quad.jpg
-share/doc/tiff/html/images/ring.gif
-share/doc/tiff/html/images/smallliz.jpg
-share/doc/tiff/html/images/strike.gif
-share/doc/tiff/html/images/warning.gif
-share/doc/tiff/html/index.html
-share/doc/tiff/html/internals.html
-share/doc/tiff/html/intro.html
-share/doc/tiff/html/libtiff.html
-share/doc/tiff/html/man/TIFFClose.3tiff.html
-share/doc/tiff/html/man/TIFFDataWidth.3tiff.html
-share/doc/tiff/html/man/TIFFError.3tiff.html
-share/doc/tiff/html/man/TIFFFieldDataType.3tiff.html
-share/doc/tiff/html/man/TIFFFieldName.3tiff.html
-share/doc/tiff/html/man/TIFFFieldPassCount.3tiff.html
-share/doc/tiff/html/man/TIFFFieldReadCount.3tiff.html
-share/doc/tiff/html/man/TIFFFieldTag.3tiff.html
-share/doc/tiff/html/man/TIFFFieldWriteCount.3tiff.html
-share/doc/tiff/html/man/TIFFFlush.3tiff.html
-share/doc/tiff/html/man/TIFFGetField.3tiff.html
-share/doc/tiff/html/man/TIFFOpen.3tiff.html
-share/doc/tiff/html/man/TIFFPrintDirectory.3tiff.html
-share/doc/tiff/html/man/TIFFRGBAImage.3tiff.html
-share/doc/tiff/html/man/TIFFReadDirectory.3tiff.html
-share/doc/tiff/html/man/TIFFReadEncodedStrip.3tiff.html
-share/doc/tiff/html/man/TIFFReadEncodedTile.3tiff.html
-share/doc/tiff/html/man/TIFFReadRGBAImage.3tiff.html
-share/doc/tiff/html/man/TIFFReadRGBAStrip.3tiff.html
-share/doc/tiff/html/man/TIFFReadRGBATile.3tiff.html
-share/doc/tiff/html/man/TIFFReadRawStrip.3tiff.html
-share/doc/tiff/html/man/TIFFReadRawTile.3tiff.html
-share/doc/tiff/html/man/TIFFReadScanline.3tiff.html
-share/doc/tiff/html/man/TIFFReadTile.3tiff.html
-share/doc/tiff/html/man/TIFFSetDirectory.3tiff.html
-share/doc/tiff/html/man/TIFFSetField.3tiff.html
-share/doc/tiff/html/man/TIFFWarning.3tiff.html
-share/doc/tiff/html/man/TIFFWriteDirectory.3tiff.html
-share/doc/tiff/html/man/TIFFWriteEncodedStrip.3tiff.html
-share/doc/tiff/html/man/TIFFWriteEncodedTile.3tiff.html
-share/doc/tiff/html/man/TIFFWriteRawStrip.3tiff.html
-share/doc/tiff/html/man/TIFFWriteRawTile.3tiff.html
-share/doc/tiff/html/man/TIFFWriteScanline.3tiff.html
-share/doc/tiff/html/man/TIFFWriteTile.3tiff.html
-share/doc/tiff/html/man/TIFFbuffer.3tiff.html
-share/doc/tiff/html/man/TIFFcodec.3tiff.html
-share/doc/tiff/html/man/TIFFcolor.3tiff.html
-share/doc/tiff/html/man/TIFFmemory.3tiff.html
-share/doc/tiff/html/man/TIFFquery.3tiff.html
-share/doc/tiff/html/man/TIFFsize.3tiff.html
-share/doc/tiff/html/man/TIFFstrip.3tiff.html
-share/doc/tiff/html/man/TIFFswab.3tiff.html
-share/doc/tiff/html/man/TIFFtile.3tiff.html
-share/doc/tiff/html/man/fax2ps.1.html
-share/doc/tiff/html/man/fax2tiff.1.html
-share/doc/tiff/html/man/index.html
-share/doc/tiff/html/man/libtiff.3tiff.html
-share/doc/tiff/html/man/pal2rgb.1.html
-share/doc/tiff/html/man/ppm2tiff.1.html
-share/doc/tiff/html/man/raw2tiff.1.html
-share/doc/tiff/html/man/tiff2bw.1.html
-share/doc/tiff/html/man/tiff2pdf.1.html
-share/doc/tiff/html/man/tiff2ps.1.html
-share/doc/tiff/html/man/tiff2rgba.1.html
-share/doc/tiff/html/man/tiffcmp.1.html
-share/doc/tiff/html/man/tiffcp.1.html
-share/doc/tiff/html/man/tiffcrop.1.html
-share/doc/tiff/html/man/tiffdither.1.html
-share/doc/tiff/html/man/tiffdump.1.html
-share/doc/tiff/html/man/tiffgt.1.html
-share/doc/tiff/html/man/tiffinfo.1.html
-share/doc/tiff/html/man/tiffmedian.1.html
-share/doc/tiff/html/man/tiffset.1.html
-share/doc/tiff/html/man/tiffsplit.1.html
-share/doc/tiff/html/misc.html
-share/doc/tiff/html/support.html
-share/doc/tiff/html/tools.html
-share/doc/tiff/html/v3.4beta007.html
-share/doc/tiff/html/v3.4beta016.html
-share/doc/tiff/html/v3.4beta018.html
-share/doc/tiff/html/v3.4beta024.html
-share/doc/tiff/html/v3.4beta028.html
-share/doc/tiff/html/v3.4beta029.html
-share/doc/tiff/html/v3.4beta031.html
-share/doc/tiff/html/v3.4beta032.html
-share/doc/tiff/html/v3.4beta033.html
-share/doc/tiff/html/v3.4beta034.html
-share/doc/tiff/html/v3.4beta035.html
-share/doc/tiff/html/v3.4beta036.html
-share/doc/tiff/html/v3.5.1.html
-share/doc/tiff/html/v3.5.2.html
-share/doc/tiff/html/v3.5.3.html
-share/doc/tiff/html/v3.5.4.html
-share/doc/tiff/html/v3.5.5.html
-share/doc/tiff/html/v3.5.6-beta.html
-share/doc/tiff/html/v3.5.7.html
-share/doc/tiff/html/v3.6.0.html
-share/doc/tiff/html/v3.6.1.html
-share/doc/tiff/html/v3.7.0.html
-share/doc/tiff/html/v3.7.0alpha.html
-share/doc/tiff/html/v3.7.0beta.html
-share/doc/tiff/html/v3.7.0beta2.html
-share/doc/tiff/html/v3.7.1.html
-share/doc/tiff/html/v3.7.2.html
-share/doc/tiff/html/v3.7.3.html
-share/doc/tiff/html/v3.7.4.html
-share/doc/tiff/html/v3.8.0.html
-share/doc/tiff/html/v3.8.1.html
-share/doc/tiff/html/v3.8.2.html
-share/doc/tiff/html/v3.9.0beta.html
-share/doc/tiff/html/v3.9.1.html
-share/doc/tiff/html/v3.9.2.html
-share/doc/tiff/html/v4.0.0.html
-share/doc/tiff/html/v4.0.1.html
-share/doc/tiff/html/v4.0.10.html
-share/doc/tiff/html/v4.0.2.html
-share/doc/tiff/html/v4.0.3.html
-share/doc/tiff/html/v4.0.4.html
-share/doc/tiff/html/v4.0.4beta.html
-share/doc/tiff/html/v4.0.5.html
-share/doc/tiff/html/v4.0.6.html
-share/doc/tiff/html/v4.0.7.html
-share/doc/tiff/html/v4.0.8.html
-share/doc/tiff/html/v4.0.9.html
-share/doc/tiff/html/v4.1.0.html
-share/doc/tiff/html/v4.2.0.html
-share/doc/tiff/html/v4.3.0.html
+share/doc/tiff/manual/.buildinfo
+share/doc/tiff/manual/_images/bali.jpg
+share/doc/tiff/manual/_images/cat.gif
+share/doc/tiff/manual/_images/cover.jpg
+share/doc/tiff/manual/_images/cramps.gif
+share/doc/tiff/manual/_images/dave.gif
+share/doc/tiff/manual/_images/esri.png
+share/doc/tiff/manual/_images/jim.gif
+share/doc/tiff/manual/_images/leica.png
+share/doc/tiff/manual/_images/quad.jpg
+share/doc/tiff/manual/_images/ring.gif
+share/doc/tiff/manual/_images/safe.png
+share/doc/tiff/manual/_images/smallliz.jpg
+share/doc/tiff/manual/_images/strike.gif
+share/doc/tiff/manual/_images/weogeo.png
+share/doc/tiff/manual/_sources/addingtags.rst.txt
+share/doc/tiff/manual/_sources/build.rst.txt
+share/doc/tiff/manual/_sources/contrib.rst.txt
+share/doc/tiff/manual/_sources/functions.rst.txt
+share/doc/tiff/manual/_sources/functions/TIFFAccessTagMethods.rst.txt
+share/doc/tiff/manual/_sources/functions/TIFFClientInfo.rst.txt
+share/doc/tiff/manual/_sources/functions/TIFFClose.rst.txt
+share/doc/tiff/manual/_sources/functions/TIFFCreateDirectory.rst.txt
+share/doc/tiff/manual/_sources/functions/TIFFCustomDirectory.rst.txt
+share/doc/tiff/manual/_sources/functions/TIFFCustomTagList.rst.txt
+share/doc/tiff/manual/_sources/functions/TIFFDataWidth.rst.txt
+share/doc/tiff/manual/_sources/functions/TIFFDeferStrileArrayWriting.rst.txt
+share/doc/tiff/manual/_sources/functions/TIFFError.rst.txt
+share/doc/tiff/manual/_sources/functions/TIFFFieldDataType.rst.txt
+share/doc/tiff/manual/_sources/functions/TIFFFieldName.rst.txt
+share/doc/tiff/manual/_sources/functions/TIFFFieldPassCount.rst.txt
+share/doc/tiff/manual/_sources/functions/TIFFFieldQuery.rst.txt
+share/doc/tiff/manual/_sources/functions/TIFFFieldReadCount.rst.txt
+share/doc/tiff/manual/_sources/functions/TIFFFieldTag.rst.txt
+share/doc/tiff/manual/_sources/functions/TIFFFieldWriteCount.rst.txt
+share/doc/tiff/manual/_sources/functions/TIFFFlush.rst.txt
+share/doc/tiff/manual/_sources/functions/TIFFGetField.rst.txt
+share/doc/tiff/manual/_sources/functions/TIFFMergeFieldInfo.rst.txt
+share/doc/tiff/manual/_sources/functions/TIFFOpen.rst.txt
+share/doc/tiff/manual/_sources/functions/TIFFOpenOptions.rst.txt
+share/doc/tiff/manual/_sources/functions/TIFFPrintDirectory.rst.txt
+share/doc/tiff/manual/_sources/functions/TIFFProcFunctions.rst.txt
+share/doc/tiff/manual/_sources/functions/TIFFRGBAImage.rst.txt
+share/doc/tiff/manual/_sources/functions/TIFFReadDirectory.rst.txt
+share/doc/tiff/manual/_sources/functions/TIFFReadEncodedStrip.rst.txt
+share/doc/tiff/manual/_sources/functions/TIFFReadEncodedTile.rst.txt
+share/doc/tiff/manual/_sources/functions/TIFFReadFromUserBuffer.rst.txt
+share/doc/tiff/manual/_sources/functions/TIFFReadRGBAImage.rst.txt
+share/doc/tiff/manual/_sources/functions/TIFFReadRGBAStrip.rst.txt
+share/doc/tiff/manual/_sources/functions/TIFFReadRGBATile.rst.txt
+share/doc/tiff/manual/_sources/functions/TIFFReadRawStrip.rst.txt
+share/doc/tiff/manual/_sources/functions/TIFFReadRawTile.rst.txt
+share/doc/tiff/manual/_sources/functions/TIFFReadScanline.rst.txt
+share/doc/tiff/manual/_sources/functions/TIFFReadTile.rst.txt
+share/doc/tiff/manual/_sources/functions/TIFFSetDirectory.rst.txt
+share/doc/tiff/manual/_sources/functions/TIFFSetField.rst.txt
+share/doc/tiff/manual/_sources/functions/TIFFSetTagExtender.rst.txt
+share/doc/tiff/manual/_sources/functions/TIFFStrileQuery.rst.txt
+share/doc/tiff/manual/_sources/functions/TIFFWarning.rst.txt
+share/doc/tiff/manual/_sources/functions/TIFFWriteDirectory.rst.txt
+share/doc/tiff/manual/_sources/functions/TIFFWriteEncodedStrip.rst.txt
+share/doc/tiff/manual/_sources/functions/TIFFWriteEncodedTile.rst.txt
+share/doc/tiff/manual/_sources/functions/TIFFWriteRawStrip.rst.txt
+share/doc/tiff/manual/_sources/functions/TIFFWriteRawTile.rst.txt
+share/doc/tiff/manual/_sources/functions/TIFFWriteScanline.rst.txt
+share/doc/tiff/manual/_sources/functions/TIFFWriteTile.rst.txt
+share/doc/tiff/manual/_sources/functions/TIFFbuffer.rst.txt
+share/doc/tiff/manual/_sources/functions/TIFFcodec.rst.txt
+share/doc/tiff/manual/_sources/functions/TIFFcolor.rst.txt



Home | Main Index | Thread Index | Old Index