pngstruct.h 14.5 KB
Newer Older
1 2 3

/* pngstruct.h - header file for PNG reference library
 *
4
 * Copyright (c) 1998-2011 Glenn Randers-Pehrson
5 6 7
 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
 *
8
 * Last changed in libpng 1.5.4 [(PENDING RELEASE)]
9 10 11 12 13 14
 *
 * This code is released under the libpng license.
 * For conditions of distribution and use, see the disclaimer
 * and license in png.h
 */

15 16 17
/* The structure that holds the information to read and write PNG files.
 * The only people who need to care about what is inside of this are the
 * people who will be modifying the library for their own special needs.
18
 * It should NOT be accessed directly by an application.
19 20
 */

21 22
#ifndef PNGSTRUCT_H
#define PNGSTRUCT_H
G
[devel]  
Glenn Randers-Pehrson 已提交
23 24 25 26 27 28
/* zlib.h defines the structure z_stream, an instance of which is included
 * in this structure and is required for decompressing the LZ compressed
 * data in PNG files.
 */
#include "zlib.h"

29 30 31
struct png_struct_def
{
#ifdef PNG_SETJMP_SUPPORTED
32
   jmp_buf longjmp_buffer;    /* used in png_error */
33
   png_longjmp_ptr longjmp_fn;/* setjmp non-local goto function. */
34
#endif
35
   png_error_ptr error_fn;    /* function for printing errors and aborting */
36
#ifdef PNG_WARNINGS_SUPPORTED
37
   png_error_ptr warning_fn;  /* function for printing warnings */
38
#endif
39 40 41 42
   png_voidp error_ptr;       /* user supplied struct for error functions */
   png_rw_ptr write_data_fn;  /* function for writing output data */
   png_rw_ptr read_data_fn;   /* function for reading input data */
   png_voidp io_ptr;          /* ptr to application struct for I/O functions */
43 44

#ifdef PNG_READ_USER_TRANSFORM_SUPPORTED
45
   png_user_transform_ptr read_user_transform_fn; /* user read transform */
46 47 48
#endif

#ifdef PNG_WRITE_USER_TRANSFORM_SUPPORTED
49
   png_user_transform_ptr write_user_transform_fn; /* user write transform */
50 51 52 53 54 55
#endif

/* These were added in libpng-1.0.2 */
#ifdef PNG_USER_TRANSFORM_PTR_SUPPORTED
#if defined(PNG_READ_USER_TRANSFORM_SUPPORTED) || \
    defined(PNG_WRITE_USER_TRANSFORM_SUPPORTED)
56 57 58
   png_voidp user_transform_ptr; /* user supplied struct for user transform */
   png_byte user_transform_depth;    /* bit depth of user transformed pixels */
   png_byte user_transform_channels; /* channels in user transformed pixels */
59 60 61
#endif
#endif

62 63 64 65 66 67
   png_uint_32 mode;          /* tells us where we are in the PNG file */
   png_uint_32 flags;         /* flags indicating various things to libpng */
   png_uint_32 transformations; /* which transformations to perform */

   z_stream zstream;          /* pointer to decompression structure (below) */
   png_bytep zbuf;            /* buffer for zlib */
68
   uInt zbuf_size;            /* size of zbuf (typically 65536) */
69 70
#ifdef PNG_WRITE_SUPPORTED

71
/* Added in 1.5.4: state to keep track of whether the zstream has been
72 73 74 75 76 77 78 79 80
 * initialized and if so whether it is for IDAT or some other chunk.
 */
#define PNG_ZLIB_UNINITIALIZED 0
#define PNG_ZLIB_FOR_IDAT      1
#define PNG_ZLIB_FOR_TEXT      2 /* anything other than IDAT */
#define PNG_ZLIB_USE_MASK      3 /* bottom two bits */
#define PNG_ZLIB_IN_USE        4 /* a flag value */

   png_uint_32 zlib_state;       /* State of zlib initialization */
81
/* End of material added at libpng 1.5.4 */
82

83 84 85 86 87
   int zlib_level;            /* holds zlib compression level */
   int zlib_method;           /* holds zlib compression method */
   int zlib_window_bits;      /* holds zlib compression window bits */
   int zlib_mem_level;        /* holds zlib compression memory level */
   int zlib_strategy;         /* holds zlib compression strategy */
88
#endif
89
/* Added at libpng 1.5.4 */
90
#if defined(PNG_WRITE_COMPRESSED_TEXT_SUPPORTED) || \
91
    defined(PNG_WRITE_CUSTOMIZE_ZTXT_COMPRESSION_SUPPORTED)
92 93 94 95 96
   int zlib_text_level;            /* holds zlib compression level */
   int zlib_text_method;           /* holds zlib compression method */
   int zlib_text_window_bits;      /* holds zlib compression window bits */
   int zlib_text_mem_level;        /* holds zlib compression memory level */
   int zlib_text_strategy;         /* holds zlib compression strategy */
97
#endif
98
/* End of material added at libpng 1.5.4 */
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113

   png_uint_32 width;         /* width of image in pixels */
   png_uint_32 height;        /* height of image in pixels */
   png_uint_32 num_rows;      /* number of rows in current pass */
   png_uint_32 usr_width;     /* width of row at start of write */
   png_size_t rowbytes;       /* size of row in bytes */
   png_uint_32 iwidth;        /* width of current interlaced row in pixels */
   png_uint_32 row_number;    /* current row in interlace pass */
   png_bytep prev_row;        /* buffer to save previous (unfiltered) row */
   png_bytep row_buf;         /* buffer to save current (unfiltered) row */
   png_bytep sub_row;         /* buffer to save "sub" row when filtering */
   png_bytep up_row;          /* buffer to save "up" row when filtering */
   png_bytep avg_row;         /* buffer to save "avg" row when filtering */
   png_bytep paeth_row;       /* buffer to save "Paeth" row when filtering */
   png_row_info row_info;     /* used for transformation routines */
114
   png_size_t info_rowbytes;  /* Added in 1.5.4: cache of updated row bytes */
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133

   png_uint_32 idat_size;     /* current IDAT size for read */
   png_uint_32 crc;           /* current chunk CRC value */
   png_colorp palette;        /* palette from the input file */
   png_uint_16 num_palette;   /* number of color entries in palette */
   png_uint_16 num_trans;     /* number of transparency values */
   png_byte chunk_name[5];    /* null-terminated name of current chunk */
   png_byte compression;      /* file compression type (always 0) */
   png_byte filter;           /* file filter type (always 0) */
   png_byte interlaced;       /* PNG_INTERLACE_NONE, PNG_INTERLACE_ADAM7 */
   png_byte pass;             /* current interlace pass (0 - 6) */
   png_byte do_filter;        /* row filter flags (see PNG_FILTER_ below ) */
   png_byte color_type;       /* color type of file */
   png_byte bit_depth;        /* bit depth of file */
   png_byte usr_bit_depth;    /* bit depth of users row */
   png_byte pixel_depth;      /* number of bits per pixel */
   png_byte channels;         /* number of channels in file */
   png_byte usr_channels;     /* channels at start of write */
   png_byte sig_bytes;        /* magic bytes read/written from start of file */
134 135

#if defined(PNG_READ_FILLER_SUPPORTED) || defined(PNG_WRITE_FILLER_SUPPORTED)
136
   png_uint_16 filler;           /* filler bytes for pixel expansion */
137 138
#endif

139 140
#if defined(PNG_bKGD_SUPPORTED) || defined(PNG_READ_BACKGROUND_SUPPORTED) ||\
   defined(PNG_READ_ALPHA_MODE_SUPPORTED)
141
   png_byte background_gamma_type;
G
[devel]  
Glenn Randers-Pehrson 已提交
142
   png_fixed_point background_gamma;
143
   png_color_16 background;   /* background color in screen gamma space */
144
#ifdef PNG_READ_GAMMA_SUPPORTED
145
   png_color_16 background_1; /* background normalized to gamma 1.0 */
146 147 148 149
#endif
#endif /* PNG_bKGD_SUPPORTED */

#ifdef PNG_WRITE_FLUSH_SUPPORTED
150 151 152
   png_flush_ptr output_flush_fn; /* Function for flushing output */
   png_uint_32 flush_dist;    /* how many rows apart to flush, 0 - no flush */
   png_uint_32 flush_rows;    /* number of rows written since last flush */
153 154 155
#endif

#if defined(PNG_READ_GAMMA_SUPPORTED) || defined(PNG_READ_BACKGROUND_SUPPORTED)
156
   int gamma_shift;      /* number of "insignificant" bits in 16-bit gamma */
G
[devel]  
Glenn Randers-Pehrson 已提交
157 158
   png_fixed_point gamma;        /* file gamma value */
   png_fixed_point screen_gamma; /* screen gamma value (display_exponent) */
159 160 161
#endif

#if defined(PNG_READ_GAMMA_SUPPORTED) || defined(PNG_READ_BACKGROUND_SUPPORTED)
162 163 164 165 166 167
   png_bytep gamma_table;     /* gamma table for 8-bit depth files */
   png_bytep gamma_from_1;    /* converts from 1.0 to screen */
   png_bytep gamma_to_1;      /* converts from file to 1.0 */
   png_uint_16pp gamma_16_table; /* gamma table for 16-bit depth files */
   png_uint_16pp gamma_16_from_1; /* converts from 1.0 to screen */
   png_uint_16pp gamma_16_to_1; /* converts from file to 1.0 */
168 169 170
#endif

#if defined(PNG_READ_GAMMA_SUPPORTED) || defined(PNG_sBIT_SUPPORTED)
171
   png_color_8 sig_bit;       /* significant bits in each available channel */
172 173 174
#endif

#if defined(PNG_READ_SHIFT_SUPPORTED) || defined(PNG_WRITE_SHIFT_SUPPORTED)
175
   png_color_8 shift;         /* shift for significant bit tranformation */
176 177 178 179
#endif

#if defined(PNG_tRNS_SUPPORTED) || defined(PNG_READ_BACKGROUND_SUPPORTED) \
 || defined(PNG_READ_EXPAND_SUPPORTED) || defined(PNG_READ_BACKGROUND_SUPPORTED)
180 181
   png_bytep trans_alpha;           /* alpha values for paletted files */
   png_color_16 trans_color;  /* transparent color for non-paletted files */
182 183
#endif

184 185
   png_read_status_ptr read_row_fn;   /* called after each row is decoded */
   png_write_status_ptr write_row_fn; /* called after each row is encoded */
186
#ifdef PNG_PROGRESSIVE_READ_SUPPORTED
187
   png_progressive_info_ptr info_fn; /* called after header data fully read */
G
[devel]  
Glenn Randers-Pehrson 已提交
188
   png_progressive_row_ptr row_fn;   /* called after a prog. row is decoded */
189 190 191 192 193 194 195 196 197 198 199 200 201
   png_progressive_end_ptr end_fn;   /* called after image is complete */
   png_bytep save_buffer_ptr;        /* current location in save_buffer */
   png_bytep save_buffer;            /* buffer for previously read data */
   png_bytep current_buffer_ptr;     /* current location in current_buffer */
   png_bytep current_buffer;         /* buffer for recently used data */
   png_uint_32 push_length;          /* size of current input chunk */
   png_uint_32 skip_length;          /* bytes to skip in input data */
   png_size_t save_buffer_size;      /* amount of data now in save_buffer */
   png_size_t save_buffer_max;       /* total size of save_buffer */
   png_size_t buffer_size;           /* total amount of available input data */
   png_size_t current_buffer_size;   /* amount of data now in current_buffer */
   int process_mode;                 /* what push library is currently doing */
   int cur_palette;                  /* current push library palette index */
202 203

#  ifdef PNG_TEXT_SUPPORTED
204 205 206 207
     png_size_t current_text_size;   /* current size of text input data */
     png_size_t current_text_left;   /* how much text left to read in input */
     png_charp current_text;         /* current text chunk buffer */
     png_charp current_text_ptr;     /* current location in current_text */
208 209 210 211 212 213
#  endif /* PNG_PROGRESSIVE_READ_SUPPORTED && PNG_TEXT_SUPPORTED */

#endif /* PNG_PROGRESSIVE_READ_SUPPORTED */

#if defined(__TURBOC__) && !defined(_Windows) && !defined(__FLAT__)
/* For the Borland special 64K segment handler */
214 215 216 217 218
   png_bytepp offset_table_ptr;
   png_bytep offset_table;
   png_uint_16 offset_table_number;
   png_uint_16 offset_table_count;
   png_uint_16 offset_table_count_free;
219 220
#endif

221 222 223
#ifdef PNG_READ_QUANTIZE_SUPPORTED
   png_bytep palette_lookup; /* lookup table for quantizing */
   png_bytep quantize_index; /* index translation for palette files */
224 225
#endif

226
#if defined(PNG_READ_QUANTIZE_SUPPORTED) || defined(PNG_hIST_SUPPORTED)
227
   png_uint_16p hist;                /* histogram */
228 229 230
#endif

#ifdef PNG_WRITE_WEIGHTED_FILTER_SUPPORTED
231 232 233 234 235 236 237
   png_byte heuristic_method;        /* heuristic for row filter selection */
   png_byte num_prev_filters;        /* number of weights for previous rows */
   png_bytep prev_filters;           /* filter type(s) of previous row(s) */
   png_uint_16p filter_weights;      /* weight(s) for previous line(s) */
   png_uint_16p inv_filter_weights;  /* 1/weight(s) for previous line(s) */
   png_uint_16p filter_costs;        /* relative filter calculation cost */
   png_uint_16p inv_filter_costs;    /* 1/relative filter calculation cost */
238 239 240
#endif

#ifdef PNG_TIME_RFC1123_SUPPORTED
241
   char time_buffer[29]; /* String to hold RFC 1123 time text */
242 243 244 245
#endif

/* New members added in libpng-1.0.6 */

246
   png_uint_32 free_me;    /* flags items libpng is responsible for freeing */
247 248

#ifdef PNG_USER_CHUNKS_SUPPORTED
249 250
   png_voidp user_chunk_ptr;
   png_user_chunk_ptr read_user_chunk_fn; /* user read chunk handler */
251 252 253
#endif

#ifdef PNG_HANDLE_AS_UNKNOWN_SUPPORTED
254 255
   int num_chunk_list;
   png_bytep chunk_list;
256 257 258 259
#endif

/* New members added in libpng-1.0.3 */
#ifdef PNG_READ_RGB_TO_GRAY_SUPPORTED
260
   png_byte rgb_to_gray_status;
261
   /* These were changed from png_byte in libpng-1.0.6 */
262 263 264
   png_uint_16 rgb_to_gray_red_coeff;
   png_uint_16 rgb_to_gray_green_coeff;
   png_uint_16 rgb_to_gray_blue_coeff;
265 266 267 268 269 270 271
#endif

/* New member added in libpng-1.0.4 (renamed in 1.0.9) */
#if defined(PNG_MNG_FEATURES_SUPPORTED) || \
    defined(PNG_READ_EMPTY_PLTE_SUPPORTED) || \
    defined(PNG_WRITE_EMPTY_PLTE_SUPPORTED)
/* Changed from png_byte to png_uint_32 at version 1.2.0 */
272
   png_uint_32 mng_features_permitted;
273 274 275 276
#endif

/* New member added in libpng-1.0.9, ifdef'ed out in 1.0.12, enabled in 1.2.0 */
#ifdef PNG_MNG_FEATURES_SUPPORTED
277
   png_byte filter_type;
278 279 280 281 282 283
#endif

/* New members added in libpng-1.2.0 */

/* New members added in libpng-1.0.2 but first enabled by default in 1.2.0 */
#ifdef PNG_USER_MEM_SUPPORTED
284 285 286
   png_voidp mem_ptr;             /* user supplied struct for mem functions */
   png_malloc_ptr malloc_fn;      /* function for allocating memory */
   png_free_ptr free_fn;          /* function for freeing memory */
287 288 289
#endif

/* New member added in libpng-1.0.13 and 1.2.0 */
290
   png_bytep big_row_buf;         /* buffer to save current (unfiltered) row */
291

292
#ifdef PNG_READ_QUANTIZE_SUPPORTED
293
/* The following three members were added at version 1.0.14 and 1.2.4 */
294
   png_bytep quantize_sort;          /* working sort array */
295 296 297 298
   png_bytep index_to_palette;       /* where the original index currently is
                                        in the palette */
   png_bytep palette_to_index;       /* which original index points to this
                                         palette color */
299 300 301
#endif

/* New members added in libpng-1.0.16 and 1.2.6 */
302
   png_byte compression_type;
303 304

#ifdef PNG_USER_LIMITS_SUPPORTED
305 306 307
   png_uint_32 user_width_max;
   png_uint_32 user_height_max;

308 309 310
   /* Added in libpng-1.4.0: Total number of sPLT, text, and unknown
    * chunks that can be stored (0 means unlimited).
    */
311 312
   png_uint_32 user_chunk_cache_max;

313 314 315
   /* Total memory that a zTXt, sPLT, iTXt, iCCP, or unknown chunk
    * can occupy when decompressed.  0 means unlimited.
    */
316
   png_alloc_size_t user_chunk_malloc_max;
317 318 319 320 321
#endif

/* New member added in libpng-1.0.25 and 1.2.17 */
#ifdef PNG_UNKNOWN_CHUNKS_SUPPORTED
   /* Storage for unknown chunk that the library doesn't recognize. */
322
   png_unknown_chunk unknown_chunk;
323 324 325
#endif

/* New members added in libpng-1.2.26 */
326 327
  png_size_t old_big_row_buf_size;
  png_size_t old_prev_row_size;
328 329

/* New member added in libpng-1.2.30 */
330
  png_charp chunkdata;  /* buffer for reading chunk data */
331 332 333

#ifdef PNG_IO_STATE_SUPPORTED
/* New member added in libpng-1.4.0 */
334
   png_uint_32 io_state;
335 336
#endif
};
337
#endif /* PNGSTRUCT_H */