Blame man/TIFFPrintDirectory.3tiff

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