summaryrefslogtreecommitdiff
path: root/libtiff/libtiff.def
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'defer_strile_writing' into 'master'Even Rouault2019-05-291-0/+2
|\ | | | | | | | | Add TIFFDeferStrileArrayWriting() and TIFFForceStrileArrayWriting() See merge request libtiff/libtiff!82
| * Add TIFFDeferStrileArrayWriting() and TIFFForceStrileArrayWriting()Even Rouault2019-05-251-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Those advanced writing functions must be used in a particular sequence to make their intended effect. Their aim is to control when/where the [Strip/Tile][Offsets/ByteCounts] arrays are written into the file. The purpose of this is to generate 'cloud-optimized geotiff' files where the first KB of the file only contain the IFD entries without the potentially large strile arrays. Those are written afterwards. The typical sequence of calls is: TIFFOpen() [ TIFFCreateDirectory(tif) ] Set fields with calls to TIFFSetField(tif, ...) TIFFDeferStrileArrayWriting(tif) TIFFWriteCheck(tif, ...) TIFFWriteDirectory(tif) ... potentially create other directories and come back to the above directory TIFFForceStrileArrayWriting(tif): emit the arrays at the end of file See test/defer_strile_writing.c for a practical example.
* | Add TIFFReadFromUserBuffer()Even Rouault2019-05-231-0/+1
|/ | | | | | | This function replaces the use of TIFFReadEncodedStrip()/TIFFReadEncodedTile() when the user can provide the buffer for the input data, for example when he wants to avoid libtiff to read the strile offset/count values from the [Strip|Tile][Offsets/ByteCounts] array.
* libtiff.def: add missing new symbolsEven Rouault2019-05-221-0/+4
|
* * libtiff/libtiff.def: add TIFFReadRGBAStripExt and TIFFReadRGBATileExtEven Rouault2017-09-291-0/+2
| | | | Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2735
* * libtiff/libtiff.def: Added _TIFFMultiply32 and _TIFFMultiply64Bob Friesenhahn2016-06-151-0/+2
| | | | to libtiff.def
* * libtiff/libtiff.def: TIFFRasterScanline does not exist so removeBob Friesenhahn2015-06-211-1/+0
| | | | export for it.
* * libtiff/libtiff.def: Added exports for TIFFGetConfiguredCODECs,Bob Friesenhahn2015-06-201-135/+142
| | | | | | | | | | | | TIFFReadRGBAImageOriented, TIFFSetCompressionScheme, TIFFSwabArrayOfTriples, TIFFVGetFieldDefaulted, _TIFFCheckRealloc, TIFFRasterScanline, TIFFSetErrorHandlerExt, TIFFSetWarningHandlerExt, TIFFNumberOfDirectories, TIFFCreateCustomDirectory, TIFFCreateEXIFDirectory, TIFFWriteCustomDirectory, _TIFFRewriteField as recommended by Roger Leigh and justified by use in libtiff tests, documentation, and changelog notes. Also sorted symbol list and removed duplicate entries.
* Add accessor functions for the opaque type TIFFField.Tom Lane2012-07-291-0/+6
|
* add _TIFFCheckMallocv4.0.2Release-v4-0-2Frank Warmerdam2012-06-161-0/+1
|
* fix TIFFMergeFieldInfo typo.Frank Warmerdam2011-06-211-1/+1
|
* restore TIFFMergeFieldInfo in libtiff.def (#42)Frank Warmerdam2011-06-211-0/+1
|
* Remove obsolete field info api, add missing items in libtiff.def (#2315, #2316)Frank Warmerdam2011-04-201-4/+10
|
* various fixes for win32 portingFrank Warmerdam2010-10-211-0/+1
|
* add TIFFUnsetField to .def fileFrank Warmerdam2009-06-021-0/+1
|
* add TIFFFindField() to libtiff.def (#1891)Frank Warmerdam2008-05-271-0/+1
|
* added missing swab functions needed for tiffdumpFrank Warmerdam2008-02-041-0/+2
|
* Unused TIFFReassignTagToIgnore() function and TIFFIgnoreSense enumerationAndrey Kiselev2007-07-041-1/+0
| | | | removed.
* Added missed exports as per bugAndrey Kiselev2006-03-211-5/+22
| | | | http://bugzilla.remotesensing.org/attachment.cgi?id=337
* Added TIFFReadCustomDirectory() and TIFFReadEXIFDirectory().Andrey Kiselev2006-01-041-2/+2
|
* TIFFreeDirectory() now publicFrank Warmerdam2005-11-031-0/+2
|
* Added TIFFOpenW() function to work with the double byte strings (used toAndrey Kiselev2004-11-051-0/+1
| | | | | represent filenames in some locales). As per bug http://bugzilla.remotesensing.org/show_bug.cgi?id=625
* removed the LIBRARY keyword, it makes it to hard to rename itFrank Warmerdam2004-11-021-1/+0
|
* added lots of entry pointsFrank Warmerdam2004-10-281-0/+14
|
* *** empty log message ***Andrey Kiselev2004-05-201-0/+1
|
* Added TIFFCurrentDirOffset, TIFFWriteCheck, TIFFRGBAImageOK,Frank Warmerdam2004-01-301-2/+4
| | | | TIFFNumberOfDirectories.
* Separate TIFFCleanup() from the TIFFClose() in order to fix the bugAndrey Kiselev2004-01-281-0/+1
| | | | http://bugzilla.remotesensing.org/show_bug.cgi?id=468
* added TIFFMergeFieldInfoFrank Warmerdam2004-01-081-0/+1
|
* Few fixes.Andrey Kiselev2004-01-071-1/+1
|
* Interface for Lab->RGB color conversion is finally cleaned up. Added supportAndrey Kiselev2003-12-191-1/+0
| | | | | for ReferenceBlackWhite tag handling when converted from YCbCr color space. The latter closes http://bugzilla.remotesensing.org/show_bug.cgi?id=120
* Avoid warnings.Andrey Kiselev2003-12-071-0/+6
|
* Added TIFFRawStripSize() function as suggested by Chris Hanson.Andrey Kiselev2003-11-071-0/+1
|
* Added TIFFReadRGBAImageOriented.Andrey Kiselev2003-10-291-0/+1
|
* TIFFDataWidth() moved to tiffio.hAndrey Kiselev2002-09-121-0/+1
|
* Missed declarations addedAndrey Kiselev2002-08-161-1/+1
|
* Added missed declaration.Andrey Kiselev2002-04-261-0/+2
|
* Added missed declarations.Andrey Kiselev2002-04-181-0/+4
|
* added TIFFRewriteDirectoryFrank Warmerdam2001-09-261-0/+1
|
* Added two new entries.Frank Warmerdam2001-05-091-0/+3
|
* Brent Roman submitted new version adding serveral missing entry points.Frank Warmerdam2001-02-171-0/+7
|
* export the TIFFmemory(3t) functions.Frank Warmerdam2000-01-051-70/+77
|
* NewFrank Warmerdam1999-08-171-0/+70