Blame html/man/TIFFstrip.3tiff.html

Packit Service db44fb
Packit Service db44fb
Packit Service db44fb
<html>
Packit Service db44fb
<head>
Packit Service db44fb
<meta name="generator" content="groff -Thtml, see www.gnu.org">
Packit Service db44fb
<meta name="Content-Style" content="text/css">
Packit Service db44fb
<title>TIFFSTRIP</title>
Packit Service db44fb
</head>
Packit Service db44fb
<body>
Packit Service db44fb
Packit Service db44fb

TIFFSTRIP

Packit Service db44fb
NAME
Packit Service db44fb
SYNOPSIS
Packit Service db44fb
DESCRIPTION
Packit Service db44fb
DIAGNOSTICS
Packit Service db44fb
SEE ALSO
Packit Service db44fb
Packit Service db44fb

Packit Service db44fb
Packit Service db44fb

NAME

Packit Service db44fb
Packit Service db44fb
Packit Service db44fb
       cols="2" cellspacing="0" cellpadding="0">
Packit Service db44fb
Packit Service db44fb
Packit Service db44fb
Packit Service db44fb

TIFFDefaultStripSize, TIFFStripSize, TIFFVStripSize,

Packit Service db44fb
TIFFRawStripSize, TIFFComputeStrip, TIFFNumberOfStrips
Packit Service db44fb
− strip-related utility routines

Packit Service db44fb
Packit Service db44fb
Packit Service db44fb
Packit Service db44fb

SYNOPSIS

Packit Service db44fb
Packit Service db44fb
Packit Service db44fb
       cols="2" cellspacing="0" cellpadding="0">
Packit Service db44fb
Packit Service db44fb
Packit Service db44fb
Packit Service db44fb

#include <tiffio.h>

Packit Service db44fb
Packit Service db44fb

uint32 TIFFDefaultStripSize(TIFF *tif,

Packit Service db44fb
uint32 estimate)
Packit Service db44fb
tsize_t TIFFStripSize(TIFF *tif)
Packit Service db44fb
tsize_t TIFFVStripSize(TIFF *tif, uint32
Packit Service db44fb
nrows)
Packit Service db44fb
tsize_t TIFFRawStripSize(TIFF *tif,
Packit Service db44fb
tstrip_t strip)
Packit Service db44fb
tstrip_t TIFFComputeStrip(TIFF *tif,
Packit Service db44fb
uint32 row, tsample_t
Packit Service db44fb
sample)
Packit Service db44fb
tstrip_t TIFFNumberOfStrips(TIFF *tif)

Packit Service db44fb
Packit Service db44fb
Packit Service db44fb
Packit Service db44fb

DESCRIPTION

Packit Service db44fb
Packit Service db44fb
Packit Service db44fb
       cols="2" cellspacing="0" cellpadding="0">
Packit Service db44fb
Packit Service db44fb
Packit Service db44fb
Packit Service db44fb

TIFFDefaultStripSize returns the number of rows

Packit Service db44fb
for a reasonable-sized strip according to the current
Packit Service db44fb
settings of the ImageWidth, BitsPerSample,
Packit Service db44fb
SamplesPerPixel, tags and any compression-specific
Packit Service db44fb
requirements. If the estimate parameter, if non-zero,
Packit Service db44fb
then it is taken as an estimate of the desired strip size
Packit Service db44fb
and adjusted according to any compression-specific
Packit Service db44fb
requirements. The value returned by this function is
Packit Service db44fb
typically used to define the RowsPerStrip tag. In
Packit Service db44fb
lieu of any unusual requirements TIFFDefaultStripSize
Packit Service db44fb
tries to create strips that have approximately 8 kilobytes
Packit Service db44fb
of uncompressed data.

Packit Service db44fb
Packit Service db44fb

TIFFStripSize returns the equivalent size for a

Packit Service db44fb
strip of data as it would be returned in a call to
Packit Service db44fb
TIFFReadEncodedStrip or as it would be expected in a
Packit Service db44fb
call to TIFFWriteEncodedStrip.

Packit Service db44fb
Packit Service db44fb

TIFFVStripSize returns the number of bytes in a

Packit Service db44fb
strip with nrows rows of data.

Packit Service db44fb
Packit Service db44fb

TIFFRawStripSize returns the number of bytes in a

Packit Service db44fb
raw strip (i.e. not decoded).

Packit Service db44fb
Packit Service db44fb

TIFFComputeStrip returns the strip that contains

Packit Service db44fb
the specified coordinates. A valid strip is always returned;
Packit Service db44fb
out-of-range coordinate values are clamped to the bounds of
Packit Service db44fb
the image. The row parameter is always used in
Packit Service db44fb
calculating a strip. The sample parameter is used
Packit Service db44fb
only if data are organized in separate planes
Packit Service db44fb
(PlanarConfiguration=2).

Packit Service db44fb
Packit Service db44fb

TIFFNumberOfStrips returns the number of strips in

Packit Service db44fb
the image.

Packit Service db44fb
Packit Service db44fb
Packit Service db44fb
Packit Service db44fb

DIAGNOSTICS

Packit Service db44fb
Packit Service db44fb
Packit Service db44fb
       cols="2" cellspacing="0" cellpadding="0">
Packit Service db44fb
Packit Service db44fb
Packit Service db44fb
Packit Service db44fb

None.

Packit Service db44fb
Packit Service db44fb
Packit Service db44fb
Packit Service db44fb

SEE ALSO

Packit Service db44fb
Packit Service db44fb
Packit Service db44fb
       cols="2" cellspacing="0" cellpadding="0">
Packit Service db44fb
Packit Service db44fb
Packit Service db44fb
Packit Service db44fb

TIFFReadEncodedStrip(3TIFF),

Packit Service db44fb
TIFFReadRawStrip(3TIFF),
Packit Service db44fb
TIFFWriteEncodedStrip(3TIFF),
Packit Service db44fb
TIFFWriteRawStrip(3TIFF), libtiff(3TIFF),

Packit Service db44fb
Packit Service db44fb

Libtiff library home page:

Packit Service db44fb
http://www.remotesensing.org/libtiff/

Packit Service db44fb
Packit Service db44fb
Packit Service db44fb

Packit Service db44fb
</body>
Packit Service db44fb
</html>