ReactOS 0.4.15-dev-7961-gdcf9eb0
tif_dir.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 1988-1997 Sam Leffler
3 * Copyright (c) 1991-1997 Silicon Graphics, Inc.
4 *
5 * Permission to use, copy, modify, distribute, and sell this software and
6 * its documentation for any purpose is hereby granted without fee, provided
7 * that (i) the above copyright notices and this permission notice appear in
8 * all copies of the software and related documentation, and (ii) the names of
9 * Sam Leffler and Silicon Graphics may not be used in any advertising or
10 * publicity relating to the software without the specific, prior written
11 * permission of Sam Leffler and Silicon Graphics.
12 *
13 * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
14 * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
15 * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
16 *
17 * IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
18 * ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
19 * OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
20 * WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
21 * LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
22 * OF THIS SOFTWARE.
23 */
24
25#ifndef _TIFFDIR_
26#define _TIFFDIR_
27
28#include "tiff.h"
29#include "tiffio.h"
30
31/*
32 * ``Library-private'' Directory-related Definitions.
33 */
34
35typedef struct {
37 int count;
38 void *value;
40
41/*
42 * TIFF Image File Directories are comprised of a table of field
43 * descriptors of the form shown below. The table is sorted in
44 * ascending order by tag. The values associated with each entry are
45 * disjoint and may appear anywhere in the file (so long as they are
46 * placed on a word boundary).
47 *
48 * If the value is 4 bytes or less, in ClassicTIFF, or 8 bytes or less in
49 * BigTIFF, then it is placed in the offset field to save space. If so,
50 * it is left-justified in the offset field.
51 */
52typedef struct {
53 uint16 tdir_tag; /* see below */
54 uint16 tdir_type; /* data type; see below */
55 uint64 tdir_count; /* number of items; length in spec */
56 union {
60 } tdir_offset; /* either offset or the data itself if fits */
61 uint8 tdir_ignore; /* flag status to ignore tag when parsing tags in tif_dirread.c */
63
64/*
65 * Internal format of a TIFF directory entry.
66 */
67typedef struct {
68#define FIELD_SETLONGS 4
69 /* bit vector of fields that are set */
70 unsigned long td_fieldsset[FIELD_SETLONGS];
71
72 uint32 td_imagewidth, td_imagelength, td_imagedepth;
73 uint32 td_tilewidth, td_tilelength, td_tiledepth;
84 uint16 td_minsamplevalue, td_maxsamplevalue;
87 float td_xresolution, td_yresolution;
90 float td_xposition, td_yposition;
91 uint16 td_pagenumber[2];
92 uint16* td_colormap[3];
93 uint16 td_halftonehints[2];
96 /* even though the name is misleading, td_stripsperimage is the number
97 * of striles (=strips or tiles) per plane, and td_nstrips the total
98 * number of striles */
100 uint32 td_nstrips; /* size of offset & bytecount arrays */
101 uint64* td_stripoffset_p; /* should be accessed with TIFFGetStrileOffset */
102 uint64* td_stripbytecount_p; /* should be accessed with TIFFGetStrileByteCount */
103 uint32 td_stripoffsetbyteallocsize; /* number of elements currently allocated for td_stripoffset/td_stripbytecount. Only used if TIFF_LAZYSTRILELOAD is set */
104#ifdef STRIPBYTECOUNTSORTED_UNUSED
105 int td_stripbytecountsorted; /* is the bytecount array sorted ascending? */
106#endif
107 TIFFDirEntry td_stripoffset_entry; /* for deferred loading */
108 TIFFDirEntry td_stripbytecount_entry; /* for deferred loading */
111 /* YCbCr parameters */
112 uint16 td_ycbcrsubsampling[2];
114 /* Colorimetry parameters */
115 uint16* td_transferfunction[3];
117 /* CMYK parameters */
120
123
124 unsigned char td_deferstrilearraywriting; /* see TIFFDeferStrileArrayWriting() */
126
127/*
128 * Field flags used to indicate fields that have been set in a directory, and
129 * to reference fields when manipulating a directory.
130 */
131
132/*
133 * FIELD_IGNORE is used to signify tags that are to be processed but otherwise
134 * ignored. This permits antiquated tags to be quietly read and discarded.
135 * Note that a bit *is* allocated for ignored tags; this is understood by the
136 * directory reading logic which uses this fact to avoid special-case handling
137 */
138#define FIELD_IGNORE 0
139
140/* multi-item fields */
141#define FIELD_IMAGEDIMENSIONS 1
142#define FIELD_TILEDIMENSIONS 2
143#define FIELD_RESOLUTION 3
144#define FIELD_POSITION 4
145
146/* single-item fields */
147#define FIELD_SUBFILETYPE 5
148#define FIELD_BITSPERSAMPLE 6
149#define FIELD_COMPRESSION 7
150#define FIELD_PHOTOMETRIC 8
151#define FIELD_THRESHHOLDING 9
152#define FIELD_FILLORDER 10
153#define FIELD_ORIENTATION 15
154#define FIELD_SAMPLESPERPIXEL 16
155#define FIELD_ROWSPERSTRIP 17
156#define FIELD_MINSAMPLEVALUE 18
157#define FIELD_MAXSAMPLEVALUE 19
158#define FIELD_PLANARCONFIG 20
159#define FIELD_RESOLUTIONUNIT 22
160#define FIELD_PAGENUMBER 23
161#define FIELD_STRIPBYTECOUNTS 24
162#define FIELD_STRIPOFFSETS 25
163#define FIELD_COLORMAP 26
164#define FIELD_EXTRASAMPLES 31
165#define FIELD_SAMPLEFORMAT 32
166#define FIELD_SMINSAMPLEVALUE 33
167#define FIELD_SMAXSAMPLEVALUE 34
168#define FIELD_IMAGEDEPTH 35
169#define FIELD_TILEDEPTH 36
170#define FIELD_HALFTONEHINTS 37
171#define FIELD_YCBCRSUBSAMPLING 39
172#define FIELD_YCBCRPOSITIONING 40
173#define FIELD_REFBLACKWHITE 41
174#define FIELD_TRANSFERFUNCTION 44
175#define FIELD_INKNAMES 46
176#define FIELD_SUBIFD 49
177/* FIELD_CUSTOM (see tiffio.h) 65 */
178/* end of support for well-known tags; codec-private tags follow */
179#define FIELD_CODEC 66 /* base of codec-private tags */
180
181
182/*
183 * Pseudo-tags don't normally need field bits since they are not written to an
184 * output file (by definition). The library also has express logic to always
185 * query a codec for a pseudo-tag so allocating a field bit for one is a
186 * waste. If codec wants to promote the notion of a pseudo-tag being ``set''
187 * or ``unset'' then it can do using internal state flags without polluting
188 * the field bit space defined for real tags.
189 */
190#define FIELD_PSEUDO 0
191
192#define FIELD_LAST (32*FIELD_SETLONGS-1)
193
194#define BITn(n) (((unsigned long)1L)<<((n)&0x1f))
195#define BITFIELDn(tif, n) ((tif)->tif_dir.td_fieldsset[(n)/32])
196#define TIFFFieldSet(tif, field) (BITFIELDn(tif, field) & BITn(field))
197#define TIFFSetFieldBit(tif, field) (BITFIELDn(tif, field) |= BITn(field))
198#define TIFFClrFieldBit(tif, field) (BITFIELDn(tif, field) &= ~BITn(field))
199
200#define FieldSet(fields, f) (fields[(f)/32] & BITn(f))
201#define ResetFieldBit(fields, f) (fields[(f)/32] &= ~BITn(f))
202
203typedef enum {
257
258#if defined(__cplusplus)
259extern "C" {
260#endif
261
262extern const TIFFFieldArray* _TIFFGetFields(void);
263extern const TIFFFieldArray* _TIFFGetExifFields(void);
264extern void _TIFFSetupFields(TIFF* tif, const TIFFFieldArray* infoarray);
265extern void _TIFFPrintFieldInfo(TIFF*, FILE*);
266
267extern int _TIFFFillStriles(TIFF*);
268
269typedef enum {
274
276 TIFFFieldArrayType type; /* array type, will be used to determine if IFD is image and such */
277 uint32 allocated_size; /* 0 if array is constant, other if modified by future definition extension support */
278 uint32 count; /* number of elements in fields array */
279 TIFFField* fields; /* actual field info */
280};
281
283 uint32 field_tag; /* field's tag */
284 short field_readcount; /* read count/TIFF_VARIABLE/TIFF_SPP */
285 short field_writecount; /* write count/TIFF_VARIABLE */
286 TIFFDataType field_type; /* type of associated data */
287 uint32 reserved; /* reserved for future extension */
288 TIFFSetGetFieldType set_field_type; /* type to be passed to TIFFSetField */
289 TIFFSetGetFieldType get_field_type; /* type to be passed to TIFFGetField */
290 unsigned short field_bit; /* bit in fieldsset bit vector */
291 unsigned char field_oktochange; /* if true, can change while writing */
292 unsigned char field_passcount; /* if true, pass dir count on set */
293 char* field_name; /* ASCII name */
294 TIFFFieldArray* field_subfields; /* if field points to child ifds, child ifd field definition array */
295};
296
297extern int _TIFFMergeFields(TIFF*, const TIFFField[], uint32);
301
302#if defined(__cplusplus)
303}
304#endif
305#endif /* _TIFFDIR_ */
306
307/* vim: set ts=8 sts=8 sw=8 noet: */
308
309/*
310 * Local Variables:
311 * mode: c
312 * c-basic-offset: 8
313 * fill-column: 78
314 * End:
315 */
unsigned short uint16
Definition: types.h:30
unsigned int uint32
Definition: types.h:32
unsigned char uint8
Definition: types.h:28
unsigned long long uint64
Definition: platform.h:18
uint64 toff_long8
Definition: tif_dir.h:59
uint8 tdir_ignore
Definition: tif_dir.h:61
uint64 tdir_count
Definition: tif_dir.h:55
uint16 tdir_tag
Definition: tif_dir.h:53
uint32 toff_long
Definition: tif_dir.h:58
uint16 tdir_type
Definition: tif_dir.h:54
uint16 toff_short
Definition: tif_dir.h:57
int td_customValueCount
Definition: tif_dir.h:121
float td_xposition
Definition: tif_dir.h:90
uint16 td_resolutionunit
Definition: tif_dir.h:88
uint64 * td_stripbytecount_p
Definition: tif_dir.h:102
uint16 td_sampleformat
Definition: tif_dir.h:76
uint16 td_samplesperpixel
Definition: tif_dir.h:82
uint32 td_imagedepth
Definition: tif_dir.h:72
float td_xresolution
Definition: tif_dir.h:87
int td_inknameslen
Definition: tif_dir.h:118
float * td_refblackwhite
Definition: tif_dir.h:116
uint16 td_bitspersample
Definition: tif_dir.h:75
uint16 td_maxsamplevalue
Definition: tif_dir.h:84
uint32 td_rowsperstrip
Definition: tif_dir.h:83
uint32 td_tiledepth
Definition: tif_dir.h:73
uint16 td_photometric
Definition: tif_dir.h:78
uint32 td_stripoffsetbyteallocsize
Definition: tif_dir.h:103
uint16 td_fillorder
Definition: tif_dir.h:80
uint32 td_subfiletype
Definition: tif_dir.h:74
double * td_sminsamplevalue
Definition: tif_dir.h:85
uint16 td_threshholding
Definition: tif_dir.h:79
char * td_inknames
Definition: tif_dir.h:119
TIFFDirEntry td_stripoffset_entry
Definition: tif_dir.h:107
uint16 td_planarconfig
Definition: tif_dir.h:89
uint16 td_nsubifd
Definition: tif_dir.h:109
uint32 td_nstrips
Definition: tif_dir.h:100
uint16 td_ycbcrpositioning
Definition: tif_dir.h:113
TIFFTagValue * td_customValues
Definition: tif_dir.h:122
uint16 * td_sampleinfo
Definition: tif_dir.h:95
double * td_smaxsamplevalue
Definition: tif_dir.h:86
uint32 td_stripsperimage
Definition: tif_dir.h:99
uint16 td_compression
Definition: tif_dir.h:77
unsigned char td_deferstrilearraywriting
Definition: tif_dir.h:124
uint16 td_extrasamples
Definition: tif_dir.h:94
uint64 * td_stripoffset_p
Definition: tif_dir.h:101
TIFFDirEntry td_stripbytecount_entry
Definition: tif_dir.h:108
uint16 td_orientation
Definition: tif_dir.h:81
uint64 * td_subifd
Definition: tif_dir.h:110
void * value
Definition: tif_dir.h:38
int count
Definition: tif_dir.h:37
const TIFFField * info
Definition: tif_dir.h:36
TIFFFieldArrayType type
Definition: tif_dir.h:276
TIFFField * fields
Definition: tif_dir.h:279
uint32 allocated_size
Definition: tif_dir.h:277
uint32 count
Definition: tif_dir.h:278
uint32 field_tag
Definition: tif_dir.h:283
unsigned char field_oktochange
Definition: tif_dir.h:291
TIFFDataType field_type
Definition: tif_dir.h:286
unsigned char field_passcount
Definition: tif_dir.h:292
char * field_name
Definition: tif_dir.h:293
TIFFSetGetFieldType get_field_type
Definition: tif_dir.h:289
TIFFSetGetFieldType set_field_type
Definition: tif_dir.h:288
unsigned short field_bit
Definition: tif_dir.h:290
short field_readcount
Definition: tif_dir.h:284
uint32 reserved
Definition: tif_dir.h:287
TIFFFieldArray * field_subfields
Definition: tif_dir.h:294
short field_writecount
Definition: tif_dir.h:285
Definition: ecma_167.h:138
Definition: tiffiop.h:115
TIFFField * _TIFFCreateAnonField(TIFF *, uint32, TIFFDataType)
Definition: tif_dirinfo.c:634
void _TIFFSetupFields(TIFF *tif, const TIFFFieldArray *infoarray)
Definition: tif_dirinfo.c:317
#define FIELD_SETLONGS
Definition: tif_dir.h:68
int _TIFFFillStriles(TIFF *)
Definition: tif_dirread.c:6320
const TIFFFieldArray * _TIFFGetFields(void)
Definition: tif_dirinfo.c:305
TIFFFieldArrayType
Definition: tif_dir.h:269
@ tfiatOther
Definition: tif_dir.h:272
@ tfiatImage
Definition: tif_dir.h:270
@ tfiatExif
Definition: tif_dir.h:271
void _TIFFPrintFieldInfo(TIFF *, FILE *)
Definition: tif_dirinfo.c:414
int _TIFFMergeFields(TIFF *, const TIFFField[], uint32)
Definition: tif_dirinfo.c:369
int _TIFFCheckFieldIsValidForCodec(TIFF *tif, ttag_t tag)
Definition: tif_dirinfo.c:958
const TIFFField * _TIFFFindOrRegisterField(TIFF *, uint32, TIFFDataType)
Definition: tif_dirinfo.c:618
TIFFSetGetFieldType
Definition: tif_dir.h:203
@ TIFF_SETGET_C16_UINT8
Definition: tif_dir.h:232
@ TIFF_SETGET_C0_SINT64
Definition: tif_dir.h:227
@ TIFF_SETGET_DOUBLE
Definition: tif_dir.h:215
@ TIFF_SETGET_SINT64
Definition: tif_dir.h:213
@ TIFF_SETGET_C32_SINT32
Definition: tif_dir.h:249
@ TIFF_SETGET_C16_FLOAT
Definition: tif_dir.h:240
@ TIFF_SETGET_UNDEFINED
Definition: tif_dir.h:204
@ TIFF_SETGET_SINT8
Definition: tif_dir.h:207
@ TIFF_SETGET_C32_ASCII
Definition: tif_dir.h:243
@ TIFF_SETGET_INT
Definition: tif_dir.h:217
@ TIFF_SETGET_C32_UINT8
Definition: tif_dir.h:244
@ TIFF_SETGET_IFD8
Definition: tif_dir.h:216
@ TIFF_SETGET_C32_UINT16
Definition: tif_dir.h:246
@ TIFF_SETGET_C16_DOUBLE
Definition: tif_dir.h:241
@ TIFF_SETGET_UINT64
Definition: tif_dir.h:212
@ TIFF_SETGET_C0_UINT32
Definition: tif_dir.h:224
@ TIFF_SETGET_C16_UINT32
Definition: tif_dir.h:236
@ TIFF_SETGET_UINT16_PAIR
Definition: tif_dir.h:218
@ TIFF_SETGET_C32_SINT16
Definition: tif_dir.h:247
@ TIFF_SETGET_C16_UINT16
Definition: tif_dir.h:234
@ TIFF_SETGET_C16_SINT64
Definition: tif_dir.h:239
@ TIFF_SETGET_C0_FLOAT
Definition: tif_dir.h:228
@ TIFF_SETGET_C0_SINT32
Definition: tif_dir.h:225
@ TIFF_SETGET_C16_UINT64
Definition: tif_dir.h:238
@ TIFF_SETGET_C32_UINT32
Definition: tif_dir.h:248
@ TIFF_SETGET_C0_ASCII
Definition: tif_dir.h:219
@ TIFF_SETGET_C32_SINT8
Definition: tif_dir.h:245
@ TIFF_SETGET_UINT16
Definition: tif_dir.h:208
@ TIFF_SETGET_C16_SINT16
Definition: tif_dir.h:235
@ TIFF_SETGET_C0_UINT8
Definition: tif_dir.h:220
@ TIFF_SETGET_ASCII
Definition: tif_dir.h:205
@ TIFF_SETGET_C0_SINT8
Definition: tif_dir.h:221
@ TIFF_SETGET_C16_SINT8
Definition: tif_dir.h:233
@ TIFF_SETGET_OTHER
Definition: tif_dir.h:255
@ TIFF_SETGET_C0_UINT64
Definition: tif_dir.h:226
@ TIFF_SETGET_FLOAT
Definition: tif_dir.h:214
@ TIFF_SETGET_C16_SINT32
Definition: tif_dir.h:237
@ TIFF_SETGET_SINT16
Definition: tif_dir.h:209
@ TIFF_SETGET_C0_SINT16
Definition: tif_dir.h:223
@ TIFF_SETGET_C32_IFD8
Definition: tif_dir.h:254
@ TIFF_SETGET_UINT32
Definition: tif_dir.h:210
@ TIFF_SETGET_C32_SINT64
Definition: tif_dir.h:251
@ TIFF_SETGET_C16_ASCII
Definition: tif_dir.h:231
@ TIFF_SETGET_C32_DOUBLE
Definition: tif_dir.h:253
@ TIFF_SETGET_UINT8
Definition: tif_dir.h:206
@ TIFF_SETGET_C0_UINT16
Definition: tif_dir.h:222
@ TIFF_SETGET_C32_UINT64
Definition: tif_dir.h:250
@ TIFF_SETGET_C0_IFD8
Definition: tif_dir.h:230
@ TIFF_SETGET_C16_IFD8
Definition: tif_dir.h:242
@ TIFF_SETGET_SINT32
Definition: tif_dir.h:211
@ TIFF_SETGET_C32_FLOAT
Definition: tif_dir.h:252
@ TIFF_SETGET_C0_DOUBLE
Definition: tif_dir.h:229
const TIFFFieldArray * _TIFFGetExifFields(void)
Definition: tif_dirinfo.c:311
TIFFDataType
Definition: tiff.h:123
uint32 ttag_t
Definition: tiffio.h:69