Blame html/man/TIFFstrip.3tiff.html

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

TIFFSTRIP

Packit Service 2594b8
NAME
Packit Service 2594b8
SYNOPSIS
Packit Service 2594b8
DESCRIPTION
Packit Service 2594b8
DIAGNOSTICS
Packit Service 2594b8
SEE ALSO
Packit Service 2594b8
Packit Service 2594b8

Packit Service 2594b8
Packit Service 2594b8

NAME

Packit Service 2594b8
Packit Service 2594b8
Packit Service 2594b8
       cols="2" cellspacing="0" cellpadding="0">
Packit Service 2594b8
Packit Service 2594b8
Packit Service 2594b8
Packit Service 2594b8

TIFFDefaultStripSize, TIFFStripSize, TIFFVStripSize,

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

Packit Service 2594b8
Packit Service 2594b8
Packit Service 2594b8
Packit Service 2594b8

SYNOPSIS

Packit Service 2594b8
Packit Service 2594b8
Packit Service 2594b8
       cols="2" cellspacing="0" cellpadding="0">
Packit Service 2594b8
Packit Service 2594b8
Packit Service 2594b8
Packit Service 2594b8

#include <tiffio.h>

Packit Service 2594b8
Packit Service 2594b8

uint32 TIFFDefaultStripSize(TIFF *tif,

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

Packit Service 2594b8
Packit Service 2594b8
Packit Service 2594b8
Packit Service 2594b8

DESCRIPTION

Packit Service 2594b8
Packit Service 2594b8
Packit Service 2594b8
       cols="2" cellspacing="0" cellpadding="0">
Packit Service 2594b8
Packit Service 2594b8
Packit Service 2594b8
Packit Service 2594b8

TIFFDefaultStripSize returns the number of rows

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

Packit Service 2594b8
Packit Service 2594b8

TIFFStripSize returns the equivalent size for a

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

Packit Service 2594b8
Packit Service 2594b8

TIFFVStripSize returns the number of bytes in a

Packit Service 2594b8
strip with nrows rows of data.

Packit Service 2594b8
Packit Service 2594b8

TIFFRawStripSize returns the number of bytes in a

Packit Service 2594b8
raw strip (i.e. not decoded).

Packit Service 2594b8
Packit Service 2594b8

TIFFComputeStrip returns the strip that contains

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

Packit Service 2594b8
Packit Service 2594b8

TIFFNumberOfStrips returns the number of strips in

Packit Service 2594b8
the image.

Packit Service 2594b8
Packit Service 2594b8
Packit Service 2594b8
Packit Service 2594b8

DIAGNOSTICS

Packit Service 2594b8
Packit Service 2594b8
Packit Service 2594b8
       cols="2" cellspacing="0" cellpadding="0">
Packit Service 2594b8
Packit Service 2594b8
Packit Service 2594b8
Packit Service 2594b8

None.

Packit Service 2594b8
Packit Service 2594b8
Packit Service 2594b8
Packit Service 2594b8

SEE ALSO

Packit Service 2594b8
Packit Service 2594b8
Packit Service 2594b8
       cols="2" cellspacing="0" cellpadding="0">
Packit Service 2594b8
Packit Service 2594b8
Packit Service 2594b8
Packit Service 2594b8

TIFFReadEncodedStrip(3TIFF),

Packit Service 2594b8
TIFFReadRawStrip(3TIFF),
Packit Service 2594b8
TIFFWriteEncodedStrip(3TIFF),
Packit Service 2594b8
TIFFWriteRawStrip(3TIFF), libtiff(3TIFF),

Packit Service 2594b8
Packit Service 2594b8

Libtiff library home page:

Packit Service 2594b8
http://www.simplesystems.org/libtiff/

Packit Service 2594b8
Packit Service 2594b8
Packit Service 2594b8

Packit Service 2594b8
</body>
Packit Service 2594b8
</html>