1TIFFSIZE(3TIFF) TIFFSIZE(3TIFF)
2
3
4
6 TIFFScanlineSize, TIFFRasterScanlineSize, - return the size of various
7 items associated with an open TIFF file
8
10 #include <tiffio.h>
11
12 tsize_t TIFFRasterScanlineSize(TIFF *tif)
13 tsize_t TIFFScanlineSize(TIFF *tif)
14
16 TIFFScanlineSize returns the size in bytes of a row of data as it would
17 be returned in a call to TIFFReadScanline, or as it would be expected
18 in a call to TIFFWriteScanline.
19
20 TIFFRasterScanlineSize returns the size in bytes of a complete decoded
21 and packed raster scanline. Note that this value may be different from
22 the value returned by TIFFScanlineSize if data is stored as separate
23 planes.
24
26 None.
27
29 TIFFOpen(3TIFF), TIFFReadScanline(3TIFF), libtiff(3TIFF)
30
31 Libtiff library home page: http://www.remotesensing.org/libtiff/
32
33
34
35libtiff October 15, 1995 TIFFSIZE(3TIFF)