1TIFFPrintDirectory(3TIFF) TIFFPrintDirectory(3TIFF)
2
3
4
6 TIFFPrintDirectory - print a description of a TIFF directory
7
9 #include <tiffio.h>
10
11 void TIFFPrintDirectory(TIFF *tif, FILE *fd, long flags)
12
14 TIFFPrintDirectory prints a description of the current directory in the
15 specified TIFF file to the standard I/O output stream fd. The flags
16 parameter is used to control the level of detail of the printed infor‐
17 mation; it is a bit-or of the flags defined in tiffio.h:
18 #define TIFFPRINT_NONE 0x0 /* no extra info */
19 #define TIFFPRINT_STRIPS 0x1 /* strips/tiles info */
20 #define TIFFPRINT_CURVES 0x2 /* color/gray response curves */
21 #define TIFFPRINT_COLORMAP 0x4 /* colormap */
22 #define TIFFPRINT_JPEGQTABLES 0x100 /* JPEG Q matrices */
23 #define TIFFPRINT_JPEGACTABLES 0x200 /* JPEG AC tables */
24 #define TIFFPRINT_JPEGDCTABLES 0x200 /* JPEG DC tables */
25
27 In C++ the flags parameter defaults to 0.
28
30 None.
31
33 None.
34
36 libtiff(3TIFF), TIFFOpen(3TIFF), TIFFReadDirectory(3TIFF), TIFFSetDi‐
37 rectory(3TIFF)
38
39
40
41libtiff December 12, 1991 TIFFPrintDirectory(3TIFF)