Blame man/TIFFPrintDirectory.3tiff

Packit 85355f
.\" $Id: TIFFPrintDirectory.3tiff,v 1.1 2004-11-11 14:39:16 dron Exp $
Packit 85355f
.\"
Packit 85355f
.\" Copyright (c) 1991-1997 Sam Leffler
Packit 85355f
.\" Copyright (c) 1991-1997 Silicon Graphics, Inc.
Packit 85355f
.\"
Packit 85355f
.\" Permission to use, copy, modify, distribute, and sell this software and 
Packit 85355f
.\" its documentation for any purpose is hereby granted without fee, provided
Packit 85355f
.\" that (i) the above copyright notices and this permission notice appear in
Packit 85355f
.\" all copies of the software and related documentation, and (ii) the names of
Packit 85355f
.\" Sam Leffler and Silicon Graphics may not be used in any advertising or
Packit 85355f
.\" publicity relating to the software without the specific, prior written
Packit 85355f
.\" permission of Sam Leffler and Silicon Graphics.
Packit 85355f
.\" 
Packit 85355f
.\" THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, 
Packit 85355f
.\" EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY 
Packit 85355f
.\" WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.  
Packit 85355f
.\" 
Packit 85355f
.\" IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
Packit 85355f
.\" ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
Packit 85355f
.\" OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
Packit 85355f
.\" WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF 
Packit 85355f
.\" LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE 
Packit 85355f
.\" OF THIS SOFTWARE.
Packit 85355f
.\"
Packit 85355f
.if n .po 0
Packit 85355f
.TH TIFFPrintDirectory 3TIFF "December 12, 1991" "libtiff"
Packit 85355f
.SH NAME
Packit 85355f
TIFFPrintDirectory \- print a description of a
Packit 85355f
.SM TIFF
Packit 85355f
directory
Packit 85355f
.SH SYNOPSIS
Packit 85355f
.B "#include <tiffio.h>"
Packit 85355f
.sp
Packit 85355f
.BI "void TIFFPrintDirectory(TIFF *" tif ", FILE *" fd ", long " flags ")"
Packit 85355f
.SH DESCRIPTION
Packit 85355f
.I TIFFPrintDirectory
Packit 85355f
prints a description of the current directory in the specified
Packit 85355f
.SM TIFF
Packit 85355f
file to the standard I/O output stream
Packit 85355f
.IR fd .
Packit 85355f
The
Packit 85355f
.I flags
Packit 85355f
parameter is used to control the
Packit 85355f
.I "level of detail"
Packit 85355f
of the printed information; it is a bit-or of the flags defined in
Packit 85355f
.BR tiffio.h :
Packit 85355f
.sp .5
Packit 85355f
.nf
Packit 85355f
.ta \w'#define 'u +\w'TIFFPRINT_JPEGDCTABLES  'u +\w'0x200   'u
Packit 85355f
#define	TIFFPRINT_NONE	0x0	/* no extra info */
Packit 85355f
#define	TIFFPRINT_STRIPS	0x1	/* strips/tiles info */
Packit 85355f
#define	TIFFPRINT_CURVES	0x2	/* color/gray response curves */
Packit 85355f
#define	TIFFPRINT_COLORMAP	0x4	/* colormap */
Packit 85355f
#define	TIFFPRINT_JPEGQTABLES	0x100	/* JPEG Q matrices */
Packit 85355f
#define	TIFFPRINT_JPEGACTABLES	0x200	/* JPEG AC tables */
Packit 85355f
#define	TIFFPRINT_JPEGDCTABLES	0x200	/* JPEG DC tables */
Packit 85355f
.fi
Packit 85355f
.SH NOTES
Packit 85355f
In C++ the
Packit 85355f
.I flags
Packit 85355f
parameter defaults to 0.
Packit 85355f
.SH "RETURN VALUES"
Packit 85355f
None.
Packit 85355f
.SH DIAGNOSTICS
Packit 85355f
None.
Packit 85355f
.SH "SEE ALSO"
Packit 85355f
.IR libtiff (3TIFF),
Packit 85355f
.IR TIFFOpen (3TIFF),
Packit 85355f
.IR TIFFReadDirectory (3TIFF),
Packit 85355f
.IR TIFFSetDirectory (3TIFF)