]> git.saurik.com Git - wxWidgets.git/blame - src/tiff/man/TIFFReadDirectory.3tiff
Add the correct dll export macros
[wxWidgets.git] / src / tiff / man / TIFFReadDirectory.3tiff
CommitLineData
8414a40c
VZ
1.\" $Id: TIFFReadDirectory.3tiff,v 1.2 2005/11/02 11:07:18 dron Exp $
2.\"
3.\" Copyright (c) 1988-1997 Sam Leffler
4.\" Copyright (c) 1991-1997 Silicon Graphics, Inc.
5.\"
6.\" Permission to use, copy, modify, distribute, and sell this software and
7.\" its documentation for any purpose is hereby granted without fee, provided
8.\" that (i) the above copyright notices and this permission notice appear in
9.\" all copies of the software and related documentation, and (ii) the names of
10.\" Sam Leffler and Silicon Graphics may not be used in any advertising or
11.\" publicity relating to the software without the specific, prior written
12.\" permission of Sam Leffler and Silicon Graphics.
13.\"
14.\" THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
15.\" EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
16.\" WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
17.\"
18.\" IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
19.\" ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
20.\" OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
21.\" WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
22.\" LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
23.\" OF THIS SOFTWARE.
24.\"
25.if n .po 0
26.TH TIFFReadDirectory 3TIFF "October 15, 1995" "libtiff"
27.SH NAME
28TIFFReadDirectory \- get the contents of the next directory in an open
29.SM TIFF
30file
31.SH SYNOPSIS
32.B "#include <tiffio.h>"
33.sp
34.BI "int TIFFReadDirectory(TIFF *" tif ")"
35.SH DESCRIPTION
36Read the next directory in the specified file and make it the current
37directory. Applications only need to call
38.I TIFFReadDirectory
39to read multiple subfiles in a single
40.SM TIFF
41file\(em
42the first directory in a file is automatically read when
43.IR TIFFOpen
44is called.
45.SH NOTES
46If the library is compiled with
47.SM STRIPCHOP_SUPPORT
48enabled, then images that have a single uncompressed strip or tile of data are
49automatically treated as if they were made up of multiple strips or tiles of
50approximately 8 kilobytes each. This operation is done only in-memory; it does
51not alter the contents of the file. However, the construction of the ``chopped
52strips'' is visible to the application through the number of strips [tiles]
53returned by
54.I TIFFNumberOfStrips
55[\c
56.IR TIFFNumberOfTiles ].
57.SH "RETURN VALUES"
58If the next directory was successfully read, 1 is returned. Otherwise, 0 is
59returned if an error was encountered, or if there are no more directories to
60be read.
61.SH DIAGNOSTICS
62All error messages are directed to the
63.IR TIFFError (3TIFF)
64routine.
65All warning messages are directed to the
66.IR TIFFWarning (3TIFF)
67routine.
68.PP
69\fBSeek error accessing TIFF directory\fP.
70An error occurred while positioning to the location of the
71directory.
72.PP
73\fBWrong data type %d for field "%s"\fP.
74The tag entry in the directory had an incorrect data type.
75For example, an
76.I ImageDescription
77tag with a
78.SM SHORT
79data type.
80.PP
81\fBTIFF directory is missing required "%s" field\fP.
82The specified tag is required to be present by the
83.SM TIFF
845.0 specification, but is missing.
85The directory is (usually) unusable.
86.PP
87\fB%s: Rational with zero denominator\fP.
88A directory tag has a
89.SM RATIONAL
90value whose denominator is zero.
91.PP
92\fBIncorrect count %d for field "%s" (%lu, expecting %lu); tag ignored\fP.
93The specified tag's count field is bad.
94For example, a count other than 1 for a
95.I SubFileType
96tag.
97.PP
98\fBCannot handle different per-sample values for field "%s"\fP.
99The tag has
100.I SamplesPerPixel
101values and they are not all the same; e.g.
102.IR BitsPerSample .
103The library is unable to handle images of this sort.
104.PP
105\fBCount mismatch for field "%s"; expecting %d, got %d\fP.
106The count field in a
107tag does not agree with the number expected by the library.
108This should never happen, so if it does, the library refuses to
109read the directory.
110.PP
111\fBInvalid TIFF directory; tags are not sorted in ascending order\fP.
112The directory tags are not properly sorted as specified
113in the
114.SM TIFF
1155.0 specification.
116This error is not fatal.
117.PP
118\fBIgnoring unknown field with tag %d (0x%x)\fP.
119An unknown tag was encountered in the directory;
120the library ignores all such tags.
121.PP
122\fBTIFF directory is missing requred "ImageLength" field\fP.
123The image violates the specification by not having a necessary field.
124There is no way for the library to recover from this error.
125.PP
126\fBTIFF directory is missing requred "PlanarConfig" field\fP.
127The image violates the specification by not having a necessary field.
128There is no way for the library to recover from this error.
129.PP
130\fBTIFF directory is missing requred "StripOffsets" field\fP.
131The image has multiple strips, but is missing the tag that
132specifies the file offset to each strip of data.
133There is no way for the library to recover from this error.
134.PP
135\fBTIFF directory is missing requred "TileOffsets" field\fP.
136The image has multiple tiles, but is missing the tag that
137specifies the file offset to each tile of data.
138There is no way for the library to recover from this error.
139.PP
140\fBTIFF directory is missing required "StripByteCounts" field\fP.
141The image has multiple strips, but is missing the tag that
142specifies the size of each strip of data.
143There is no way for the library to recover from this error.
144.PP
145\fBTIFF directory is missing required "StripByteCounts" field, calculating from imagelength\fP.
146The image violates the specification by not having a necessary field.
147However, when the image is comprised of only one strip or tile, the
148library will estimate the missing value based on the file size.
149.PP
150\fBBogus "StripByteCounts" field, ignoring and calculating from imagelength\fP.
151Certain vendors violate the specification by writing zero for
152the StripByteCounts tag when they want to leave the value
153unspecified.
154If the image has a single strip, the library will estimate
155the missing value based on the file size.
156.SH "SEE ALSO"
157.BR TIFFOpen (3TIFF),
158.BR TIFFWriteDirectory (3TIFF),
159.BR TIFFSetDirectory (3TIFF),
160.BR TIFFSetSubDirectory (3TIFF),
161.BR libtiff (3TIFF)
162.PP
163Libtiff library home page:
164.BR http://www.remotesensing.org/libtiff/