TIFFOPEN(3tiff) | LibTIFF | TIFFOPEN(3tiff) |
TIFFOpen - open a TIFF file for reading or writing
#include <tiffio.h>
TIFFOpen() opens a TIFF file whose name is filename and returns a handle to be used in subsequent calls to routines in libtiff. If the open operation fails, then NULL (0) is returned. The mode parameter specifies if the file is to be opened for reading (r), writing (w), or appending (a) and, optionally, whether to override certain default aspects of library operation (see below). When a file is opened for appending, existing data will not be touched; instead new data will be written as additional subfiles. If an existing file is opened for writing, all previous data is overwritten.
If a file is opened for reading, the first TIFF directory in the file is automatically read (also see TIFFSetDirectory() for reading directories other than the first). If a file is opened for writing or appending, a default directory is automatically created for writing subsequent data. This directory has all the default values specified in TIFF Revision 6.0:
To alter these values, or to define values for additional fields, TIFFSetField() must be used.
A file can also be opened for reading and writing with mode (r+). In this case, the first TIFF directory in the file is automatically read, but calls to TIFFSetField() are put into a fresh directory, which will be appended when the file is closed.
TIFFOpenW() opens a TIFF file with a Unicode filename, for read/writing.
TIFFFdOpen() is like TIFFOpen() except that it opens a TIFF file given an open file descriptor fd. The file's name and mode must reflect that of the open descriptor. The object associated with the file descriptor must support random access. In order to close a TIFF file opened with TIFFFdOpen() first TIFFCleanup() should be called to free the internal TIFF structure without closing the file handle and afterwards the file should be closed using its file descriptor fd.
TIFFOpenExt() (added in libtiff 4.5) is like TIFFOpen(), but options, such as re-entrant error and warning handlers may be passed with the opts argument. The opts argument may be NULL. Refer to TIFFOpenOptions for allocating and filling the opts argument parameters. The allocated memory for TIFFOpenOptions can be released straight after successful execution of the related "TIFFOpenExt" functions.
TIFFOpenWExt() (added in libtiff 4.5) is like TIFFOpenExt(), but opens a TIFF file with a Unicode filename.
TIFFFdOpenExt() (added in libtiff 4.5) is like TIFFFdOpen(), but options, such as re-entrant error and warning handlers may be passed with the opts argument. The opts argument may be NULL. Refer to TIFFOpenOptions for filling the opts argument.
TIFFSetFileName() sets the file name in the tif-structure and returns the old file name.
TIFFSetFileno() overwrites a copy of the open file's I/O descriptor, that was saved when the TIFF file was first opened, and returns the previous value. See note below.
TIFFSetMode() sets the libtiff open mode in the tif-structure and returns the old mode.
TIFFClientOpen() is like TIFFOpen() except that the caller supplies a collection of functions that the library will use to do UNIX-like I/O operations. The readproc and writeproc functions are called to read and write data at the current file position. seekproc is called to change the current file position à la lseek() (2). closeproc is invoked to release any resources associated with an open file. sizeproc is invoked to obtain the size in bytes of a file. mapproc and unmapproc are called to map and unmap a file's contents in memory; c.f. mmap() (2) and munmap() (2). The clientdata parameter is an opaque "handle" passed to the client-specified routines passed as parameters to TIFFClientOpen().
TIFFClientOpenExt() (added in libtiff 4.5) is like TIFFClientOpen(), but options argument opts like for TIFFOpenExt() can be passed.
TIFFClientdata() returns open file's clientdata handle, which is the real open file's I/O descriptor used by libtiff. Note: Within tif_unix.c this handle is converted into an integer file descriptor.
TIFFSetClientdata() sets open file's clientdata, and return previous value. The clientdata is used as open file's I/O descriptor within libtiff.
NOTE:
The open mode parameter can include the following flags in addition to the r, w, and a flags. Note however that option flags must follow the read-write-append specification.
l:
b:
L:
B:
H:
M:
m:
C:
c:
h:
4:
8:
D:
O:
The TIFF specification (all versions) states that compliant readers "must be capable of reading images written in either byte order" . Nonetheless some software that claims to support the reading of TIFF images is incapable of reading images in anything but the native CPU byte order on which the software was written. (Especially notorious are applications written to run on Intel-based machines.) By default the library will create new files with the native byte-order of the CPU on which the application is run. This ensures optimal performance and is portable to any application that conforms to the TIFF specification. To force the library to use a specific byte-order when creating a new file the b and l option flags may be included in the call to open a file; for example, wb or wl.
Upon successful completion TIFFOpen(), TIFFFdOpen(), and TIFFClientOpen() return a TIFF pointer. Otherwise, NULL is returned.
All error messages are directed to the TIFFErrorExtR() routine. Likewise, warning messages are directed to the TIFFWarningExtR() routine.
"%s": Bad mode:
"%s: Cannot open":
"Cannot read TIFF header":
"Error writing TIFF header":
"Not a TIFF file, bad magic number %d (0x%x)":
"Not a TIFF file, bad version number %d (0x%x)":
"Cannot append to file that has opposite byte ordering":
libtiff (3tiff), TIFFClose (3tiff), TIFFStrileQuery, TIFFOpenOptions
LibTIFF contributors
1988-2023, LibTIFF contributors
November 23, 2023 | 4.5 |