TIFFCurrentRow(3T) UNIX System V(June 18, 1991) TIFFCurrentRow(3T)
NAME
TIFFCurrentRow, TIFFCurrentStrip, TIFFCurrentTile, TIFFFileno,
TIFFFileName, TIFFGetMode, TIFFIsTiled - query routines
SYNOPSIS
#include <tiffio.h>
long TIFFCurrentRow(TIFF* tif)
int TIFFCurrentStrip(TIFF* tif)
int TIFFCurrentTile(TIFF* tif)
int TIFFFileno(TIFF* tif)
char* TIFFFileName(TIFF* tif)
int TIFFGetMode(TIFF* tif)
int TIFFIsTiled(TIFF* tif)
DESCRIPTION
The following routines return status information about an open TIFF file.
TIFFCurrentRow(), TIFFCurrentStrip(), and TIFFCurrentTile(), return the
current row, strip, and tile, respectively, that is being read or
written. These values are updated each time a read or write is done.
TIFFFileno() returns the underlying file descriptor used to access the
TIFF image in the filesystem.
TIFFFileName() returns the pathname argument passed to TIFFOpen() or
TIFFFdOpen().
TIFFGetMode() returns the mode with which the underlying file was opened.
On UNIX systems, this is the value passed to the open(2) system call.
TIFFIsTiled() returns a non-zero value if the image data has a tiled
organization. Zero is returned if the image data is organized in strips.
DIAGNOSTICS
None.
SEE ALSO
intro(3T), TIFFOpen(3T), TIFFFdOpen(3T)
10/89 Page 1