/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/TIFFquery.3tiff.html (5098B)
QUERY

QUERY

NAME
SYNOPSIS
DESCRIPTION
DIAGNOSTICS
SEE ALSO

NAME

TIFFCurrentRow, TIFFCurrentStrip, TIFFCurrentTile, TIFFCurrentDirectory, TIFFLastDirectory, TIFFFileno, TIFFFileName, TIFFGetMode, TIFFIsTiled, TIFFIsByteSwapped, TIFFIsUpSampled, TIFFIsMSB2LSB, TIFFGetVersion − query routines

SYNOPSIS

#include <tiffio.h>

uint32_t TIFFCurrentRow(TIFF* tif)
tstrip_t TIFFCurrentStrip(TIFF*
tif)
ttile_t TIFFCurrentTile(TIFF*
tif)
tdir_t TIFFCurrentDirectory(TIFF*
tif)
int TIFFLastDirectory(TIFF*
tif)
int TIFFFileno(TIFF*
tif)
char* TIFFFileName(TIFF*
tif)
int TIFFGetMode(TIFF*
tif)
int TIFFIsTiled(TIFF*
tif)
int TIFFIsByteSwapped(TIFF*
tif)
int TIFFIsUpSampled(TIFF*
tif)
int TIFFIsMSB2LSB(TIFF*
tif)
const char* TIFFGetVersion(void)

DESCRIPTION

The following routines return status information about an open TIFF file.

TIFFCurrentDirectory returns the index of the current directory (directories are numbered starting at 0). This number is suitable for use with the TIFFSetDirectory routine.

TIFFLastDirectory returns a non-zero value if the current directory is the last directory in the file; otherwise zero is returned.

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.

TIFFIsByteSwapped returns a non-zero value if the image data was in a different byte-order than the host machine. Zero is returned if the TIFF file and local host byte-orders are the same. Note that TIFFReadTile(), TIFFReadEncodedStrip() and TIFFReadScanline() functions already normally perform byte swapping to local host order if needed.

TIFFIsUpSampled returns a non-zero value if image data returned through the read interface routines is being up-sampled. This can be useful to applications that want to calculate I/O buffer sizes to reflect this usage (though the usual strip and tile size routines already do this).

TIFFIsMSB2LSB returns a non-zero value if the image data is being returned with bit 0 as the most significant bit.

TIFFGetVersion returns an ASCII string that has a version stamp for the TIFF library software.

DIAGNOSTICS

None.

SEE ALSO

libtiff(3TIFF), TIFFOpen(3TIFF), TIFFFdOpen(3TIFF)