/usr/share/doc/libtiff-devel/html/man
NameSizeModeActions
CMakeLists.txt34600644editdlrm
fax2ps.1.html77410644editdlrm
fax2tiff.1.html147130644editdlrm
HtmlDoc.cmake21470644editdlrm
index.html38260644editdlrm
libtiff.3tiff.html245760644editdlrm
pal2rgb.1.html52440644editdlrm
ppm2tiff.1.html39790644editdlrm
raw2tiff.1.html127460644editdlrm
tiff2bw.1.html40570644editdlrm
tiff2pdf.1.html179420644editdlrm
tiff2ps.1.html150160644editdlrm
tiff2rgba.1.html45880644editdlrm
TIFFbuffer.3tiff.html38800644editdlrm
TIFFClose.3tiff.html24790644editdlrm
tiffcmp.1.html44010644editdlrm
TIFFcodec.3tiff.html37000644editdlrm
TIFFcolor.3tiff.html227630644editdlrm
tiffcp.1.html157540644editdlrm
tiffcrop.1.html204020644editdlrm
TIFFDataWidth.3tiff.html25560644editdlrm
tiffdither.1.html57890644editdlrm
tiffdump.1.html44160644editdlrm
TIFFError.3tiff.html32470644editdlrm
TIFFFieldDataType.3tiff.html21820644editdlrm
TIFFFieldName.3tiff.html21270644editdlrm
TIFFFieldPassCount.3tiff.html26120644editdlrm
TIFFFieldReadCount.3tiff.html28200644editdlrm
TIFFFieldTag.3tiff.html22490644editdlrm
TIFFFieldWriteCount.3tiff.html31440644editdlrm
TIFFFlush.3tiff.html33450644editdlrm
TIFFGetField.3tiff.html334580644editdlrm
tiffinfo.1.html44540644editdlrm
tiffmedian.1.html51540644editdlrm
TIFFmemory.3tiff.html35690644editdlrm
TIFFOpen.3tiff.html137000644editdlrm
TIFFPrintDirectory.3tiff.html47330644editdlrm
TIFFquery.3tiff.html51660644editdlrm
TIFFReadDirectory.3tiff.html81020644editdlrm
TIFFReadEncodedStrip.3tiff.html42990644editdlrm
TIFFReadEncodedTile.3tiff.html41330644editdlrm
TIFFReadRawStrip.3tiff.html33400644editdlrm
TIFFReadRawTile.3tiff.html34250644editdlrm
TIFFReadRGBAImage.3tiff.html104820644editdlrm
TIFFReadRGBAStrip.3tiff.html74810644editdlrm
TIFFReadRGBATile.3tiff.html84770644editdlrm
TIFFReadScanline.3tiff.html52570644editdlrm
TIFFReadTile.3tiff.html42780644editdlrm
TIFFRGBAImage.3tiff.html123100644editdlrm
tiffset.1.html49200644editdlrm
TIFFSetDirectory.3tiff.html38280644editdlrm
TIFFSetField.3tiff.html310930644editdlrm
TIFFsize.3tiff.html27480644editdlrm
tiffsplit.1.html29270644editdlrm
TIFFstrip.3tiff.html43560644editdlrm
TIFFswab.3tiff.html34920644editdlrm
TIFFtile.3tiff.html50140644editdlrm
TIFFWarning.3tiff.html33530644editdlrm
TIFFWriteDirectory.3tiff.html64860644editdlrm
TIFFWriteEncodedStrip.3tiff.html50930644editdlrm
TIFFWriteEncodedTile.3tiff.html48940644editdlrm
TIFFWriteRawStrip.3tiff.html45110644editdlrm
TIFFWriteRawTile.3tiff.html39780644editdlrm
TIFFWriteScanline.3tiff.html73870644editdlrm
TIFFWriteTile.3tiff.html36380644editdlrm
Edit: /usr/share/doc/libtiff-devel/html/man/TIFFWriteEncodedStrip.3tiff.html (5093B)
TIFFWriteEncodedStrip

TIFFWriteEncodedStrip

NAME
SYNOPSIS
DESCRIPTION
NOTES
RETURN VALUES
DIAGNOSTICS
SEE ALSO

NAME

TIFFWritedEncodedStrip − compress and write a strip of data to an open TIFF file

SYNOPSIS

#include <tiffio.h>

tsize_t TIFFWriteEncodedStrip(TIFF *tif, tstrip_t strip, tdata_t buf, tsize_t size)

DESCRIPTION

Compress size bytes of raw data from buf and write the result to the specified strip; replacing any previously written data. Note that the value of strip is a ‘‘raw strip number.’’ That is, the caller must take into account whether or not the data are organized in separate planes (PlanarConfiguration=2).

NOTES

The library writes encoded data using the native machine byte order. Correctly implemented TIFF readers are expected to do any necessary byte-swapping to correctly process image data with BitsPerSample greater than 8.

The strip number must be valid according to the current settings of the ImageLength and RowsPerStrip tags. An image may be dynamically grown by increasing the value of ImageLength prior to each call to TIFFWriteEncodedStrip.

RETURN VALUES

−1 is returned if an error was encountered. Otherwise, the value of size is returned.

DIAGNOSTICS

All error messages are directed to the TIFFError(3TIFF) routine.

%s: File not open for writing. The file was opened for reading, not writing.

Can not write scanlines to a tiled image. The image is assumed to be organized in tiles because the TileWidth and TileLength tags have been set with TIFFSetField(3TIFF).

%s: Must set "ImageWidth" before writing data. The image’s width has not be set before the first write. See TIFFSetField(3TIFF) for information on how to do this.

%s: Must set "PlanarConfiguration" before writing data. The organization of data has not be defined before the first write. See TIFFSetField(3TIFF) for information on how to do this.

%s: No space for strip arrays". There was not enough space for the arrays that hold strip offsets and byte counts.

SEE ALSO

TIFFOpen(3TIFF), TIFFWriteScanline(3TIFF), TIFFWriteRawStrip(3TIFF), libtiff(3TIFF)

Libtiff library home page: http://www.simplesystems.org/libtiff/