stripNumber = computeStrip(tiffobj,row)
stripNumber = computeStrip(tiffobj,row,plane)
stripNumber = computeStrip(tiffobj,row)
returns the index number of the strip containing the given row. The
value of row
must be one-based.
stripNumber = computeStrip(tiffobj,row,plane)
returns
the index number of the strip containing the given row in the specified
plane, if the value of the PlanarConfiguration
tag
is Tiff.PlanarConfiguration.Separate
. The values
of row and plane must be one-based.
computeStrip
clamps out-of-range coordinate
values to the bounds of the image.
This method corresponds to the TIFFComputeStrip
function
in the LibTIFF C API. To use this method, you must be familiar with
the TIFF specification and technical notes. View this documentation
at LibTIFF
- TIFF Library and Utilities
.