Blame html/man/TIFFstrip.3tiff.html

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

TIFFSTRIP

Packit 85355f
NAME
Packit 85355f
SYNOPSIS
Packit 85355f
DESCRIPTION
Packit 85355f
DIAGNOSTICS
Packit 85355f
SEE ALSO
Packit 85355f
Packit 85355f

Packit 85355f
Packit 85355f

NAME

Packit 85355f
Packit 85355f
Packit 85355f
       cols="2" cellspacing="0" cellpadding="0">
Packit 85355f
Packit 85355f
Packit 85355f
Packit 85355f

TIFFDefaultStripSize, TIFFStripSize, TIFFVStripSize,

Packit 85355f
TIFFRawStripSize, TIFFComputeStrip, TIFFNumberOfStrips
Packit 85355f
− strip-related utility routines

Packit 85355f
Packit 85355f
Packit 85355f
Packit 85355f

SYNOPSIS

Packit 85355f
Packit 85355f
Packit 85355f
       cols="2" cellspacing="0" cellpadding="0">
Packit 85355f
Packit 85355f
Packit 85355f
Packit 85355f

#include <tiffio.h>

Packit 85355f
Packit 85355f

uint32 TIFFDefaultStripSize(TIFF *tif,

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

Packit 85355f
Packit 85355f
Packit 85355f
Packit 85355f

DESCRIPTION

Packit 85355f
Packit 85355f
Packit 85355f
       cols="2" cellspacing="0" cellpadding="0">
Packit 85355f
Packit 85355f
Packit 85355f
Packit 85355f

TIFFDefaultStripSize returns the number of rows

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

Packit 85355f
Packit 85355f

TIFFStripSize returns the equivalent size for a

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

Packit 85355f
Packit 85355f

TIFFVStripSize returns the number of bytes in a

Packit 85355f
strip with nrows rows of data.

Packit 85355f
Packit 85355f

TIFFRawStripSize returns the number of bytes in a

Packit 85355f
raw strip (i.e. not decoded).

Packit 85355f
Packit 85355f

TIFFComputeStrip returns the strip that contains

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

Packit 85355f
Packit 85355f

TIFFNumberOfStrips returns the number of strips in

Packit 85355f
the image.

Packit 85355f
Packit 85355f
Packit 85355f
Packit 85355f

DIAGNOSTICS

Packit 85355f
Packit 85355f
Packit 85355f
       cols="2" cellspacing="0" cellpadding="0">
Packit 85355f
Packit 85355f
Packit 85355f
Packit 85355f

None.

Packit 85355f
Packit 85355f
Packit 85355f
Packit 85355f

SEE ALSO

Packit 85355f
Packit 85355f
Packit 85355f
       cols="2" cellspacing="0" cellpadding="0">
Packit 85355f
Packit 85355f
Packit 85355f
Packit 85355f

TIFFReadEncodedStrip(3TIFF),

Packit 85355f
TIFFReadRawStrip(3TIFF),
Packit 85355f
TIFFWriteEncodedStrip(3TIFF),
Packit 85355f
TIFFWriteRawStrip(3TIFF), libtiff(3TIFF),

Packit 85355f
Packit 85355f

Libtiff library home page:

Packit 85355f
http://www.simplesystems.org/libtiff/

Packit 85355f
Packit 85355f
Packit 85355f

Packit 85355f
</body>
Packit 85355f
</html>