Home | History | Annotate | Download | only in libtiff

Lines Matching full:tiff

88 typedef void (*TIFFVoidMethod)(TIFF*);
89 typedef int (*TIFFBoolMethod)(TIFF*);
90 typedef int (*TIFFPreMethod)(TIFF*, uint16);
91 typedef int (*TIFFCodeMethod)(TIFF* tif, uint8* buf, tmsize_t size, uint16 sample);
92 typedef int (*TIFFSeekMethod)(TIFF*, uint32);
93 typedef void (*TIFFPostMethod)(TIFF* tif, uint8* buf, tmsize_t size);
94 typedef uint32 (*TIFFStripMethod)(TIFF*, uint32);
95 typedef void (*TIFFTileMethod)(TIFF*, uint32*, uint32*);
97 struct tiff {
265 extern int _TIFFNoRowEncode(TIFF* tif, uint8* pp, tmsize_t cc, uint16 s);
266 extern int _TIFFNoStripEncode(TIFF* tif, uint8* pp, tmsize_t cc, uint16 s);
267 extern int _TIFFNoTileEncode(TIFF*, uint8* pp, tmsize_t cc, uint16 s);
268 extern int _TIFFNoRowDecode(TIFF* tif, uint8* pp, tmsize_t cc, uint16 s);
269 extern int _TIFFNoStripDecode(TIFF* tif, uint8* pp, tmsize_t cc, uint16 s);
270 extern int _TIFFNoTileDecode(TIFF*, uint8* pp, tmsize_t cc, uint16 s);
271 extern void _TIFFNoPostDecode(TIFF* tif, uint8* buf, tmsize_t cc);
272 extern int _TIFFNoPreCode(TIFF* tif, uint16 s);
273 extern int _TIFFNoSeek(TIFF* tif, uint32 off);
274 extern void _TIFFSwab16BitData(TIFF* tif, uint8* buf, tmsize_t cc);
275 extern void _TIFFSwab24BitData(TIFF* tif, uint8* buf, tmsize_t cc);
276 extern void _TIFFSwab32BitData(TIFF* tif, uint8* buf, tmsize_t cc);
277 extern void _TIFFSwab64BitData(TIFF* tif, uint8* buf, tmsize_t cc);
278 extern int TIFFFlushData1(TIFF* tif);
279 extern int TIFFDefaultDirectory(TIFF* tif);
280 extern void _TIFFSetDefaultCompressionState(TIFF* tif);
281 extern int _TIFFRewriteField(TIFF *, uint16, TIFFDataType, tmsize_t, void *);
282 extern int TIFFSetCompressionScheme(TIFF* tif, int scheme);
283 extern int TIFFSetDefaultCompressionState(TIFF* tif);
284 extern uint32 _TIFFDefaultStripSize(TIFF* tif, uint32 s);
285 extern void _TIFFDefaultTileSize(TIFF* tif, uint32* tw, uint32* th);
303 extern uint32 _TIFFMultiply32(TIFF*, uint32, uint32, const char*);
304 extern uint64 _TIFFMultiply64(TIFF*, uint64, uint64, const char*);
305 extern void* _TIFFCheckMalloc(TIFF*, tmsize_t, tmsize_t, const char*);
306 extern void* _TIFFCheckRealloc(TIFF*, void*, tmsize_t, tmsize_t, const char*);
311 extern int TIFFInitDumpMode(TIFF*, int);
313 extern int TIFFInitPackBits(TIFF*, int);
316 extern int TIFFInitCCITTRLE(TIFF*, int), TIFFInitCCITTRLEW(TIFF*, int);
317 extern int TIFFInitCCITTFax3(TIFF*, int), TIFFInitCCITTFax4(TIFF*, int);
320 extern int TIFFInitThunderScan(TIFF*, int);
323 extern int TIFFInitNeXT(TIFF*, int);
326 extern int TIFFInitLZW(TIFF*, int);
329 extern int TIFFInitOJPEG(TIFF*, int);
332 extern int TIFFInitJPEG(TIFF*, int);
335 extern int TIFFInitJBIG(TIFF*, int);
338 extern int TIFFInitZIP(TIFF*, int);
341 extern int TIFFInitPixarLog(TIFF*, int);
344 extern int TIFFInitSGILog(TIFF*, int);
347 extern int TIFFInitLZMA(TIFF*, int);