|
roentgen |
b75cab |
.\" $Id: TIFFWriteRawTile.3tiff,v 1.2 2005-11-02 11:07:18 dron Exp $
|
|
roentgen |
b75cab |
.\"
|
|
roentgen |
b75cab |
.\" Copyright (c) 1988-1997 Sam Leffler
|
|
roentgen |
b75cab |
.\" Copyright (c) 1991-1997 Silicon Graphics, Inc.
|
|
roentgen |
b75cab |
.\"
|
|
roentgen |
b75cab |
.\" Permission to use, copy, modify, distribute, and sell this software and
|
|
roentgen |
b75cab |
.\" its documentation for any purpose is hereby granted without fee, provided
|
|
roentgen |
b75cab |
.\" that (i) the above copyright notices and this permission notice appear in
|
|
roentgen |
b75cab |
.\" all copies of the software and related documentation, and (ii) the names of
|
|
roentgen |
b75cab |
.\" Sam Leffler and Silicon Graphics may not be used in any advertising or
|
|
roentgen |
b75cab |
.\" publicity relating to the software without the specific, prior written
|
|
roentgen |
b75cab |
.\" permission of Sam Leffler and Silicon Graphics.
|
|
roentgen |
b75cab |
.\"
|
|
roentgen |
b75cab |
.\" THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
|
|
roentgen |
b75cab |
.\" EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
|
|
roentgen |
b75cab |
.\" WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
|
|
roentgen |
b75cab |
.\"
|
|
roentgen |
b75cab |
.\" IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
|
|
roentgen |
b75cab |
.\" ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
|
|
roentgen |
b75cab |
.\" OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
|
|
roentgen |
b75cab |
.\" WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
|
|
roentgen |
b75cab |
.\" LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
|
roentgen |
b75cab |
.\" OF THIS SOFTWARE.
|
|
roentgen |
b75cab |
.\"
|
|
roentgen |
b75cab |
.if n .po 0
|
|
roentgen |
b75cab |
.TH TIFFWriteRawtile 3TIFF "December 16, 1991" "libtiff"
|
|
roentgen |
b75cab |
.SH NAME
|
|
roentgen |
b75cab |
TIFFWriteRawTile \- write a tile of raw data to an open
|
|
roentgen |
b75cab |
.SM TIFF
|
|
roentgen |
b75cab |
file
|
|
roentgen |
b75cab |
.SH SYNOPSIS
|
|
roentgen |
b75cab |
.B "#include <tiffio.h>"</tiffio.h>
|
|
roentgen |
b75cab |
.sp
|
|
roentgen |
b75cab |
.BI "tsize_t TIFFWriteRawTile(TIFF *" tif ", ttile_t " tile ", tdata_t " buf ", tsize_t " size ")"
|
|
roentgen |
b75cab |
.SH DESCRIPTION
|
|
roentgen |
b75cab |
Append
|
|
roentgen |
b75cab |
.I size
|
|
roentgen |
b75cab |
bytes of raw data to the specified tile.
|
|
roentgen |
b75cab |
.SH "RETURN VALUES"
|
|
roentgen |
b75cab |
\-1 is returned if an error occurred. Otherwise, the value of
|
|
roentgen |
b75cab |
.IR size
|
|
roentgen |
b75cab |
is returned.
|
|
roentgen |
b75cab |
.SH DIAGNOSTICS
|
|
roentgen |
b75cab |
All error messages are directed to the
|
|
roentgen |
b75cab |
.BR TIFFError (3TIFF)
|
|
roentgen |
b75cab |
routine.
|
|
roentgen |
b75cab |
.PP
|
|
roentgen |
b75cab |
\fB%s: File not open for writing\fP.
|
|
roentgen |
b75cab |
The file was opened for reading, not writing.
|
|
roentgen |
b75cab |
.PP
|
|
roentgen |
b75cab |
\fBCan not write tiles to a stripped image\fP.
|
|
roentgen |
b75cab |
The image is assumed to be organized in strips because neither of the
|
|
roentgen |
b75cab |
.I TileWidth
|
|
roentgen |
b75cab |
or
|
|
roentgen |
b75cab |
.I TileLength
|
|
roentgen |
b75cab |
tags have been set with
|
|
roentgen |
b75cab |
.BR TIFFSetField (3TIFF).
|
|
roentgen |
b75cab |
.PP
|
|
roentgen |
b75cab |
\fB%s: Must set "ImageWidth" before writing data\fP.
|
|
roentgen |
b75cab |
The image's width has not be set before the first write.
|
|
roentgen |
b75cab |
See
|
|
roentgen |
b75cab |
.BR TIFFSetField (3TIFF)
|
|
roentgen |
b75cab |
for information on how to do this.
|
|
roentgen |
b75cab |
.PP
|
|
roentgen |
b75cab |
\fB%s: Must set "PlanarConfiguration" before writing data\fP. The organization
|
|
roentgen |
b75cab |
of data has not be defined before the first write. See
|
|
roentgen |
b75cab |
.BR TIFFSetField (3TIFF)
|
|
roentgen |
b75cab |
for information on how to do this.
|
|
roentgen |
b75cab |
.PP
|
|
roentgen |
b75cab |
\fB%s: No space for tile arrays"\fP.
|
|
roentgen |
b75cab |
There was not enough space for the arrays that hold tile offsets and byte
|
|
roentgen |
b75cab |
counts.
|
|
roentgen |
b75cab |
.PP
|
|
roentgen |
b75cab |
\fB%s: Specified tile %d out of range, max %d\fP.
|
|
roentgen |
b75cab |
The specified tile is not valid according to the currently specified image
|
|
roentgen |
b75cab |
dimensions.
|
|
roentgen |
b75cab |
.SH "SEE ALSO"
|
|
roentgen |
b75cab |
.BR TIFFOpen (3TIFF),
|
|
roentgen |
b75cab |
.BR TIFFWriteEncodedTile (3TIFF),
|
|
roentgen |
b75cab |
.BR TIFFWriteScanline (3TIFF),
|
|
roentgen |
b75cab |
.BR libtiff (3TIFF)
|
|
roentgen |
b75cab |
.PP
|
|
roentgen |
b75cab |
Libtiff library home page:
|
|
roentgen |
b75cab |
.BR http://www.remotesensing.org/libtiff/
|