/usr/share/doc/libtiff-devel/html/man
NameSizeModeActions
CMakeLists.txt34350644editdlrm
fax2ps.1.html64630644editdlrm
fax2tiff.1.html157030644editdlrm
HtmlDoc.cmake21470644editdlrm
index.html38260644editdlrm
libtiff.3tiff.html556460644editdlrm
pal2rgb.1.html45220644editdlrm
ppm2tiff.1.html38360644editdlrm
raw2tiff.1.html113530644editdlrm
tiff2bw.1.html38350644editdlrm
tiff2pdf.1.html115660644editdlrm
tiff2ps.1.html134900644editdlrm
tiff2rgba.1.html46200644editdlrm
TIFFbuffer.3tiff.html36680644editdlrm
TIFFClose.3tiff.html22000644editdlrm
tiffcmp.1.html37630644editdlrm
TIFFcodec.3tiff.html34700644editdlrm
TIFFcolor.3tiff.html189700644editdlrm
tiffcp.1.html142460644editdlrm
tiffcrop.1.html302690644editdlrm
TIFFDataWidth.3tiff.html22680644editdlrm
TIFFDeferStrileArrayWriting.3tiff.html40220644editdlrm
tiffdither.1.html53240644editdlrm
tiffdump.1.html35540644editdlrm
TIFFError.3tiff.html31760644editdlrm
TIFFFieldDataType.3tiff.html21840644editdlrm
TIFFFieldName.3tiff.html21290644editdlrm
TIFFFieldPassCount.3tiff.html26180644editdlrm
TIFFFieldReadCount.3tiff.html28260644editdlrm
TIFFFieldTag.3tiff.html22530644editdlrm
TIFFFieldWriteCount.3tiff.html31500644editdlrm
TIFFFlush.3tiff.html29010644editdlrm
TIFFGetField.3tiff.html336500644editdlrm
tiffinfo.1.html41860644editdlrm
tiffmedian.1.html46690644editdlrm
TIFFmemory.3tiff.html33060644editdlrm
TIFFOpen.3tiff.html147720644editdlrm
TIFFOpenOptions.3tiff.html70520644editdlrm
TIFFPrintDirectory.3tiff.html42580644editdlrm
TIFFquery.3tiff.html50980644editdlrm
TIFFReadDirectory.3tiff.html75570644editdlrm
TIFFReadEncodedStrip.3tiff.html35760644editdlrm
TIFFReadEncodedTile.3tiff.html35160644editdlrm
TIFFReadRawStrip.3tiff.html28620644editdlrm
TIFFReadRawTile.3tiff.html29510644editdlrm
TIFFReadRGBAImage.3tiff.html86180644editdlrm
TIFFReadRGBAStrip.3tiff.html72580644editdlrm
TIFFReadRGBATile.3tiff.html80480644editdlrm
TIFFReadScanline.3tiff.html45000644editdlrm
TIFFReadTile.3tiff.html36460644editdlrm
TIFFRGBAImage.3tiff.html116290644editdlrm
tiffset.1.html36300644editdlrm
TIFFSetDirectory.3tiff.html34290644editdlrm
TIFFSetField.3tiff.html311890644editdlrm
TIFFsize.3tiff.html24690644editdlrm
tiffsplit.1.html31250644editdlrm
TIFFStrileQuery.3tiff.html49580644editdlrm
TIFFstrip.3tiff.html41800644editdlrm
TIFFswab.3tiff.html32390644editdlrm
TIFFtile.3tiff.html48670644editdlrm
TIFFWarning.3tiff.html31360644editdlrm
TIFFWriteDirectory.3tiff.html62730644editdlrm
TIFFWriteEncodedStrip.3tiff.html44240644editdlrm
TIFFWriteEncodedTile.3tiff.html42150644editdlrm
TIFFWriteRawStrip.3tiff.html39990644editdlrm
TIFFWriteRawTile.3tiff.html36300644editdlrm
TIFFWriteScanline.3tiff.html68190644editdlrm
TIFFWriteTile.3tiff.html31700644editdlrm
Edit: /usr/share/doc/libtiff-devel/html/man/TIFFWriteScanline.3tiff.html (6819B)
TIFFWriteScanline

TIFFWriteScanline

NAME
SYNOPSIS
DESCRIPTION
NOTES
RETURN VALUES
DIAGNOSTICS
BUGS
SEE ALSO

NAME

TIFFWriteScanline − write a scanline to an open TIFF file

SYNOPSIS

#include <tiffio.h>

int TIFFWriteScanline(TIFF *tif, tdata_t buf, uint32_t row, tsample_t sample)

DESCRIPTION

Write data to a file at the specified row. The sample parameter is used only if data are organized in separate planes (PlanarConfiguration=2). The data are assumed to be uncompressed and in the native bit- and byte-order of the host machine. The data written to the file is compressed according to the compression scheme of the current TIFF directory (see further below). If the current scanline is past the end of the current subfile, the ImageLength field is automatically increased to include the scanline (except for PlanarConfiguration=2, where the ImageLength cannot be changed once the first data are written). If the ImageLength is increased, the StripOffsets and StripByteCounts fields are similarly enlarged to reflect data written past the previous end of image.

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 library attempts to hide bit-ordering differences between the image and the native machine by converting data from the native machine order.

In C++ the sample parameter defaults to 0.

Once data are written to a file for the current directory, the values of certain tags may not be altered; see TIFFSetField(3TIFF) for more information.

It is not possible to write scanlines to a file that uses a tiled organization. The routine TIFFIsTiled can be used to determine if the file is organized as tiles or strips.

RETURN VALUES

TIFFWriteScanline returns −1 if it immediately detects an error and 1 for a successful write.

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. An attempt was made to write a scanline 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).

Compression algorithm does not support random access. Data was written in a non-sequential order to a file that uses a compression algorithm and that has RowsPerStrip greater than one. That is, data in the image is to be stored in a compressed form, and with multiple rows packed into a strip. In this case, the library does not support random access to the data. The data should either be written as entire strips, sequentially by rows, or the value of RowsPerStrip should be set to one.

%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.

Can not change "ImageLength" when using separate planes. Separate image planes are being used (PlanarConfiguration=2), but the number of rows has not been specified before the first write. The library supports the dynamic growth of an image only when data are organized in a contiguous manner (PlanarConfiguration=1).

%d: Sample out of range, max %d. The sample parameter was greater than the value of the SamplesPerPixel tag.

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

BUGS

Writing subsampled YCbCR data does not work correctly because, for PlanarConfiguration=2 the size of a scanline is not calculated on a per-sample basis, and for PlanarConfiguration=1 the library does not pack the block-interleaved samples.

SEE ALSO

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

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