]> git.saurik.com Git - wxWidgets.git/blame - src/tiff/man/TIFFWriteDirectory.3tiff
Add the correct dll export macros
[wxWidgets.git] / src / tiff / man / TIFFWriteDirectory.3tiff
CommitLineData
8414a40c
VZ
1.\" $Id: TIFFWriteDirectory.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 TIFFWriteDirectory 3TIFF "September 26, 2001" "libtiff"
27.SH NAME
28TIFFWriteDirectory, TIFFRewriteDirectory, TIFFCheckpointDirectory \- write the
29current directory in an open
30.SM TIFF
31file
32.SH SYNOPSIS
33.B "#include <tiffio.h>"
34.sp
35.BI "int TIFFWriteDirectory(TIFF *" tif ")"
36.br
37.BI "int TIFFRewriteDirectory(TIFF *" tif ")"
38.br
39.BI "int TIFFCheckpointDirectory(TIFF *" tif ")"
40.SH DESCRIPTION
41.IR TIFFWriteDirectory
42will write the contents of the current directory to the file and setup to
43create a new subfile in the same file. Applications only need to call
44.IR TIFFWriteDirectory
45when writing multiple subfiles to a single
46.SM TIFF
47file.
48.IR TIFFWriteDirectory
49is automatically called by
50.IR TIFFClose
51and
52.IR TIFFFlush
53to write a modified directory if the file is open for writing.
54.PP
55The
56.IR TIFFRewriteDirectory
57function operates similarly to
58.IR TIFFWriteDirectory,
59but can be called with directories previously read or written that already
60have an established location in the file. It will rewrite the directory,
61but instead of place it at it's old location (as
62.IR TIFFWriteDirectory
63would) it will place them at the end of the file, correcting the pointer from
64the preceeding directory or file header to point to it's new location. This
65is particularly important in cases where the size of the directory and
66pointed to data has grown, so it won't fit in the space available at the
67old location.
68.PP
69The
70.IR TIFFCheckpointDirectory
71writes the current state of the tiff directory into the file to make what
72is currently in the file readable. Unlike
73.IR TIFFWriteDirectory,
74.IR TIFFCheckpointDirectory
75does not free up the directory data structures in memory, so they can be
76updated (as strips/tiles are written) and written again. Reading such
77a partial file you will at worst get a tiff read error for the first
78strip/tile encountered that is incomplete, but you will at least get
79all the valid data in the file before that. When the file is complete,
80just use
81.IR TIFFWriteDirectory
82as usual to finish it off cleanly.
83.SH "RETURN VALUES"
841 is returned when the contents are successfully written to the file.
85Otherwise, 0 is returned if an error was encountered when writing
86the directory contents.
87.SH DIAGNOSTICS
88All error messages are directed to the
89.IR TIFFError (3TIFF)
90routine.
91.PP
92.BR "Error post-encoding before directory write" .
93Before writing the contents of the current directory, any pending data are
94flushed. This message indicates that an error occurred while doing this.
95.PP
96.BR "Error flushing data before directory write" .
97Before writing the contents of the current directory, any pending data are
98flushed. This message indicates that an error occurred while doing this.
99.PP
100.BR "Cannot write directory, out of space" .
101There was not enough space to allocate a temporary area for the directory that
102was to be written.
103.PP
104.BR "Error writing directory count" .
105A write error occurred when writing the count of fields in the directory.
106.PP
107.BR "Error writing directory contents" .
108A write error occurred when writing the directory fields.
109.PP
110.BR "Error writing directory link" .
111A write error occurred when writing the link to the next directory.
112.PP
113\fBError writing data for field "%s"\fP.
114A write error occurred when writing indirect data for the specified field.
115.PP
116.BR "Error writing TIFF header" .
117A write error occurred when re-writing header at the front of the file.
118.PP
119.BR "Error fetching directory count" .
120A read error occurred when fetching the directory count field for
121a previous directory.
122This can occur when setting up a link to the directory that is being
123written.
124.PP
125.BR "Error fetching directory link" .
126A read error occurred when fetching the directory link field for
127a previous directory.
128This can occur when setting up a link to the directory that is being
129written.
130.SH "SEE ALSO"
131.BR TIFFOpen (3TIFF),
132.BR TIFFError (3TIFF),
133.BR TIFFReadDirectory (3TIFF),
134.BR TIFFSetDirectory (3TIFF),
135.BR libtiff (3TIFF)
136.PP
137Libtiff library home page:
138.BR http://www.remotesensing.org/libtiff/