uint32 TIFFDefaultStripSize(TIFF *tif, uint32 estimate)
tmsize_t TIFFStripSize(TIFF *tif)
tmsize_t TIFFVStripSize(TIFF *tif, uint32 nrows)
tmsize_t TIFFRawStripSize(TIFF *tif, uint32 strip)
tstrip_t TIFFComputeStrip(TIFF *tif, uint32 row, tsample_t sample)
tstrip_t TIFFNumberOfStrips(TIFF *tif)
TIFFStripSize returns the equivalent size for a strip of data as it would be returned in a call to TIFFReadEncodedStrip or as it would be expected in a call to TIFFWriteEncodedStrip.
TIFFVStripSize returns the number of bytes in a strip with nrows rows of data.
TIFFRawStripSize returns the number of bytes in a raw strip (i.e. not decoded).
TIFFComputeStrip returns the strip that contains the specified coordinates. A valid strip is always returned; out-of-range coordinate values are clamped to the bounds of the image. The row parameter is always used in calculating a strip. The sample parameter is used only if data are organized in separate planes (PlanarConfiguration=2).
TIFFNumberOfStrips returns the number of strips in the image.
Libtiff library home page: http://www.simplesystems.org/libtiff/