2 /* pngpriv.h - private declarations for use inside libpng
4 * For conditions of distribution and use, see copyright notice in png.h
5 * Copyright (c) 1998-2011 Glenn Randers-Pehrson
6 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
7 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
9 * Last changed in libpng 1.5.2 [March 31, 2011]
11 * This code is released under the libpng license.
12 * For conditions of distribution and use, see the disclaimer
13 * and license in png.h
16 /* The symbols declared in this file (including the functions declared
17 * as PNG_EXTERN) are PRIVATE. They are not part of the libpng public
18 * interface, and are not recommended for use by regular applications.
19 * Some of them may become public in the future; others may stay private,
20 * change in an incompatible way, or even disappear.
21 * Although the libpng users are not forbidden to include this header,
22 * they should be well aware of the issues that may arise from doing so.
28 /* This is required for the definition of abort(), used as a last ditch
29 * error handler when all else fails.
34 #ifdef PNG_USER_CONFIG
36 /* These should have been defined in pngusr.h */
37 # ifndef PNG_USER_PRIVATEBUILD
38 # define PNG_USER_PRIVATEBUILD "Custom libpng build"
40 # ifndef PNG_USER_DLLFNAME_POSTFIX
41 # define PNG_USER_DLLFNAME_POSTFIX "Cb"
46 #include "pngstruct.h"
48 /* This is used for 16 bit gamma tables - only the top level pointers are const,
49 * this could be changed:
51 typedef PNG_CONST png_uint_16p FAR * png_const_uint_16pp;
53 /* Added at libpng-1.2.9 */
54 /* Moved to pngpriv.h at libpng-1.5.0 */
56 /* config.h is created by and PNG_CONFIGURE_LIBPNG is set by the "configure"
57 * script. We may need it here to get the correct configuration on things
60 #ifdef PNG_CONFIGURE_LIBPNG
66 /* Moved to pngpriv.h at libpng-1.5.0 */
67 /* NOTE: some of these may have been used in external applications as
68 * these definitions were exposed in pngconf.h prior to 1.5.
71 /* If you are running on a machine where you cannot allocate more
72 * than 64K of memory at once, uncomment this. While libpng will not
73 * normally need that much memory in a chunk (unless you load up a very
74 * large file), zlib needs to know how big of a chunk it can use, and
75 * libpng thus makes sure to check any memory allocation to verify it
76 * will fit into memory.
78 * zlib provides 'MAXSEG_64K' which, if defined, indicates the
79 * same limit and pngconf.h (already included) sets the limit
80 * if certain operating systems are detected.
82 #if defined(MAXSEG_64K) && !defined(PNG_MAX_MALLOC_64K)
83 # define PNG_MAX_MALLOC_64K
87 /* Unused formal parameter warnings are silenced using the following macro
88 * which is expected to have no bad effects on performance (optimizing
89 * compilers will probably remove it entirely). Note that if you replace
90 * it with something other than whitespace, you must include the terminating
93 # define PNG_UNUSED(param) (void)param;
96 /* Just a little check that someone hasn't tried to define something
99 #if (PNG_ZBUF_SIZE > 65536L) && defined(PNG_MAX_MALLOC_64K)
100 # undef PNG_ZBUF_SIZE
101 # define PNG_ZBUF_SIZE 65536L
104 /* If warnings or errors are turned off the code is disabled
105 * or redirected here.
107 #ifndef PNG_WARNINGS_SUPPORTED
108 # define png_warning(s1,s2) ((void)0)
109 # define png_chunk_warning(s1,s2) ((void)0)
111 #ifndef PNG_ERROR_TEXT_SUPPORTED
112 # define png_error(s1,s2) png_err(s1)
113 # define png_chunk_error(s1,s2) png_err(s1)
114 # define png_fixed_error(s1,s2) png_err(s1)
118 /* The functions exported by PNG_EXTERN are internal functions, which
119 * aren't usually used outside the library (as far as I know), so it is
120 * debatable if they should be exported at all. In the future, when it
121 * is possible to have run-time registry of chunk-handling functions,
122 * some of these might be made available again.
123 # define PNG_EXTERN extern
128 /* Some fixed point APIs are still required even if not exported because
129 * they get used by the corresponding floating point APIs. This magic
132 #ifdef PNG_FIXED_POINT_SUPPORTED
133 # define PNGFAPI PNGAPI
135 # define PNGFAPI /* PRIVATE */
138 /* Other defines specific to compilers can go here. Try to keep
139 * them inside an appropriate ifdef/endif pair for portability.
141 #if defined(PNG_FLOATING_POINT_SUPPORTED) ||\
142 defined(PNG_FLOATING_ARITHMETIC_SUPPORTED)
143 /* png.c requires the following ANSI-C constants if the conversion of
144 * floating point to ASCII is implemented therein:
146 * DBL_DIG Maximum number of decimal digits (can be set to any constant)
147 * DBL_MIN Smallest normalized fp number (can be set to an arbitrary value)
148 * DBL_MAX Maximum floating point number (can be set to an arbitrary value)
152 # if (defined(__MWERKS__) && defined(macintosh)) || defined(applec) || \
153 defined(THINK_C) || defined(__SC__) || defined(TARGET_OS_MAC)
154 /* We need to check that <math.h> hasn't already been included earlier
155 * as it seems it doesn't agree with <fp.h>, yet we should really use
156 * <fp.h> if possible.
158 # if !defined(__MATH_H__) && !defined(__MATH_H) && !defined(__cmath__)
164 # if defined(_AMIGA) && defined(__SASC) && defined(_M68881)
165 /* Amiga SAS/C: We must include builtin FPU functions when compiling using
172 /* This provides the non-ANSI (far) memory allocation routines. */
173 #if defined(__TURBOC__) && defined(__MSDOS__)
178 #if defined(WIN32) || defined(_Windows) || defined(_WINDOWS) || \
179 defined(_WIN32) || defined(__WIN32__)
180 # include <windows.h> /* defines _WINDOWS_ macro */
183 /* Moved here around 1.5.0beta36 from pngconf.h */
184 /* Users may want to use these so they are not private. Any library
185 * functions that are passed far data must be model-independent.
188 /* Memory model/platform independent fns */
191 # define PNG_ABORT() ExitProcess(0)
193 # define PNG_ABORT() abort()
197 #ifdef USE_FAR_KEYWORD
198 /* Use this to make far-to-near assignments */
201 # define CVT_PTR(ptr) (png_far_to_near(png_ptr,ptr,CHECK))
202 # define CVT_PTR_NOCHECK(ptr) (png_far_to_near(png_ptr,ptr,NOCHECK))
203 # define png_strcpy _fstrcpy
204 # define png_strncpy _fstrncpy /* Added to v 1.2.6 */
205 # define png_strlen _fstrlen
206 # define png_memcmp _fmemcmp /* SJT: added */
207 # define png_memcpy _fmemcpy
208 # define png_memset _fmemset
209 # define png_sprintf sprintf
211 # ifdef _WINDOWS_ /* Favor Windows over C runtime fns */
212 # define CVT_PTR(ptr) (ptr)
213 # define CVT_PTR_NOCHECK(ptr) (ptr)
214 # define png_strcpy lstrcpyA
215 # define png_strncpy lstrcpynA
216 # define png_strlen lstrlenA
217 # define png_memcmp memcmp
218 # define png_memcpy CopyMemory
219 # define png_memset memset
220 # define png_sprintf wsprintfA
222 # define CVT_PTR(ptr) (ptr)
223 # define CVT_PTR_NOCHECK(ptr) (ptr)
224 # define png_strcpy strcpy
225 # define png_strncpy strncpy /* Added to v 1.2.6 */
226 # define png_strlen strlen
227 # define png_memcmp memcmp /* SJT: added */
228 # define png_memcpy memcpy
229 # define png_memset memset
230 # define png_sprintf sprintf
233 /* End of memory model/platform independent support */
235 #ifndef PNG_NO_SNPRINTF
237 # define png_snprintf _snprintf /* Added to v 1.2.19 */
238 # define png_snprintf2 _snprintf
239 # define png_snprintf6 _snprintf
241 # define png_snprintf snprintf /* Added to v 1.2.19 */
242 # define png_snprintf2 snprintf
243 # define png_snprintf6 snprintf
246 /* You don't have or don't want to use snprintf(). Caution: Using
247 * sprintf instead of snprintf exposes your application to accidental
248 * or malevolent buffer overflows. If you don't have snprintf()
249 * as a general rule you should provide one (you can get one from
252 # define png_snprintf(s1,n,fmt,x1) png_sprintf(s1,fmt,x1)
253 # define png_snprintf2(s1,n,fmt,x1,x2) png_sprintf(s1,fmt,x1,x2)
254 # define png_snprintf6(s1,n,fmt,x1,x2,x3,x4,x5,x6) \
255 png_sprintf(s1,fmt,x1,x2,x3,x4,x5,x6)
257 /* End of 1.5.0beta36 move from pngconf.h */
259 /* CONSTANTS and UTILITY MACROS
260 * These are used internally by libpng and not exposed in the API
263 /* Various modes of operation. Note that after an init, mode is set to
264 * zero automatically when the structure is created.
266 #define PNG_HAVE_IHDR 0x01
267 #define PNG_HAVE_PLTE 0x02
268 #define PNG_HAVE_IDAT 0x04
269 #define PNG_AFTER_IDAT 0x08 /* Have complete zlib datastream */
270 #define PNG_HAVE_IEND 0x10
271 #define PNG_HAVE_gAMA 0x20
272 #define PNG_HAVE_cHRM 0x40
273 #define PNG_HAVE_sRGB 0x80
274 #define PNG_HAVE_CHUNK_HEADER 0x100
275 #define PNG_WROTE_tIME 0x200
276 #define PNG_WROTE_INFO_BEFORE_PLTE 0x400
277 #define PNG_BACKGROUND_IS_GRAY 0x800
278 #define PNG_HAVE_PNG_SIGNATURE 0x1000
279 #define PNG_HAVE_CHUNK_AFTER_IDAT 0x2000 /* Have another chunk after IDAT */
281 /* Flags for the transformations the PNG library does on the image data */
282 #define PNG_BGR 0x0001
283 #define PNG_INTERLACE 0x0002
284 #define PNG_PACK 0x0004
285 #define PNG_SHIFT 0x0008
286 #define PNG_SWAP_BYTES 0x0010
287 #define PNG_INVERT_MONO 0x0020
288 #define PNG_QUANTIZE 0x0040
289 #define PNG_BACKGROUND 0x0080
290 #define PNG_BACKGROUND_EXPAND 0x0100
291 #define PNG_EXPAND_16 0x0200 /* Added to libpng 1.5.2 */
292 #define PNG_16_TO_8 0x0400
293 #define PNG_RGBA 0x0800
294 #define PNG_EXPAND 0x1000
295 #define PNG_GAMMA 0x2000
296 #define PNG_GRAY_TO_RGB 0x4000
297 #define PNG_FILLER 0x8000L
298 #define PNG_PACKSWAP 0x10000L
299 #define PNG_SWAP_ALPHA 0x20000L
300 #define PNG_STRIP_ALPHA 0x40000L
301 #define PNG_INVERT_ALPHA 0x80000L
302 #define PNG_USER_TRANSFORM 0x100000L
303 #define PNG_RGB_TO_GRAY_ERR 0x200000L
304 #define PNG_RGB_TO_GRAY_WARN 0x400000L
305 #define PNG_RGB_TO_GRAY 0x600000L /* two bits, RGB_TO_GRAY_ERR|WARN */
306 /* 0x800000L Unused */
307 #define PNG_ADD_ALPHA 0x1000000L /* Added to libpng-1.2.7 */
308 #define PNG_EXPAND_tRNS 0x2000000L /* Added to libpng-1.2.9 */
309 /* 0x4000000L unused */
310 /* 0x8000000L unused */
311 /* 0x10000000L unused */
312 /* 0x20000000L unused */
313 /* 0x40000000L unused */
315 /* Flags for png_create_struct */
316 #define PNG_STRUCT_PNG 0x0001
317 #define PNG_STRUCT_INFO 0x0002
319 /* Scaling factor for filter heuristic weighting calculations */
320 #define PNG_WEIGHT_FACTOR (1<<(PNG_WEIGHT_SHIFT))
321 #define PNG_COST_FACTOR (1<<(PNG_COST_SHIFT))
323 /* Flags for the png_ptr->flags rather than declaring a byte for each one */
324 #define PNG_FLAG_ZLIB_CUSTOM_STRATEGY 0x0001
325 #define PNG_FLAG_ZLIB_CUSTOM_LEVEL 0x0002
326 #define PNG_FLAG_ZLIB_CUSTOM_MEM_LEVEL 0x0004
327 #define PNG_FLAG_ZLIB_CUSTOM_WINDOW_BITS 0x0008
328 #define PNG_FLAG_ZLIB_CUSTOM_METHOD 0x0010
329 #define PNG_FLAG_ZLIB_FINISHED 0x0020
330 #define PNG_FLAG_ROW_INIT 0x0040
331 #define PNG_FLAG_FILLER_AFTER 0x0080
332 #define PNG_FLAG_CRC_ANCILLARY_USE 0x0100
333 #define PNG_FLAG_CRC_ANCILLARY_NOWARN 0x0200
334 #define PNG_FLAG_CRC_CRITICAL_USE 0x0400
335 #define PNG_FLAG_CRC_CRITICAL_IGNORE 0x0800
339 #define PNG_FLAG_KEEP_UNKNOWN_CHUNKS 0x8000L
340 #define PNG_FLAG_KEEP_UNSAFE_CHUNKS 0x10000L
341 #define PNG_FLAG_LIBRARY_MISMATCH 0x20000L
342 #define PNG_FLAG_STRIP_ERROR_NUMBERS 0x40000L
343 #define PNG_FLAG_STRIP_ERROR_TEXT 0x80000L
344 #define PNG_FLAG_MALLOC_NULL_MEM_OK 0x100000L
345 /* 0x200000L unused */
346 /* 0x400000L unused */
347 #define PNG_FLAG_BENIGN_ERRORS_WARN 0x800000L /* Added to libpng-1.4.0 */
348 /* 0x1000000L unused */
349 /* 0x2000000L unused */
350 /* 0x4000000L unused */
351 /* 0x8000000L unused */
352 /* 0x10000000L unused */
353 /* 0x20000000L unused */
354 /* 0x40000000L unused */
356 #define PNG_FLAG_CRC_ANCILLARY_MASK (PNG_FLAG_CRC_ANCILLARY_USE | \
357 PNG_FLAG_CRC_ANCILLARY_NOWARN)
359 #define PNG_FLAG_CRC_CRITICAL_MASK (PNG_FLAG_CRC_CRITICAL_USE | \
360 PNG_FLAG_CRC_CRITICAL_IGNORE)
362 #define PNG_FLAG_CRC_MASK (PNG_FLAG_CRC_ANCILLARY_MASK | \
363 PNG_FLAG_CRC_CRITICAL_MASK)
365 /* zlib.h declares a magic type 'uInt' that limits the amount of data that zlib
366 * can handle at once. This type need be no larger than 16 bits (so maximum of
367 * 65535), this define allows us to discover how big it is, but limited by the
368 * maximuum for png_size_t. The value can be overriden in a library build
369 * (pngusr.h, or set it in CPPFLAGS) and it works to set it to a considerably
370 * lower value (e.g. 255 works). A lower value may help memory usage (slightly)
371 * and may even improve performance on some systems (and degrade it on others.)
374 # define ZLIB_IO_MAX ((uInt)-1)
377 /* Save typing and make code easier to understand */
379 #define PNG_COLOR_DIST(c1, c2) (abs((int)((c1).red) - (int)((c2).red)) + \
380 abs((int)((c1).green) - (int)((c2).green)) + \
381 abs((int)((c1).blue) - (int)((c2).blue)))
383 /* Added to libpng-1.2.6 JB */
384 #define PNG_ROWBYTES(pixel_bits, width) \
385 ((pixel_bits) >= 8 ? \
386 ((png_size_t)(width) * (((png_size_t)(pixel_bits)) >> 3)) : \
387 (( ((png_size_t)(width) * ((png_size_t)(pixel_bits))) + 7) >> 3) )
389 /* PNG_OUT_OF_RANGE returns true if value is outside the range
390 * ideal-delta..ideal+delta. Each argument is evaluated twice.
391 * "ideal" and "delta" should be constants, normally simple
392 * integers, "value" a variable. Added to libpng-1.2.6 JB
394 #define PNG_OUT_OF_RANGE(value, ideal, delta) \
395 ( (value) < (ideal)-(delta) || (value) > (ideal)+(delta) )
397 /* Conversions between fixed and floating point, only defined if
398 * required (to make sure the code doesn't accidentally use float
399 * when it is supposedly disabled.)
401 #ifdef PNG_FLOATING_POINT_SUPPORTED
402 /* The floating point conversion can't overflow, though it can and
403 * does lose accuracy relative to the original fixed point value.
404 * In practice this doesn't matter because png_fixed_point only
405 * stores numbers with very low precision. The png_ptr and s
406 * arguments are unused by default but are there in case error
407 * checking becomes a requirement.
409 #define png_float(png_ptr, fixed, s) (.00001 * (fixed))
411 /* The fixed point conversion performs range checking and evaluates
412 * its argument multiple times, so must be used with care. The
413 * range checking uses the PNG specification values for a signed
414 * 32 bit fixed point value except that the values are deliberately
415 * rounded-to-zero to an integral value - 21474 (21474.83 is roughly
416 * (2^31-1) * 100000). 's' is a string that describes the value being
419 * NOTE: this macro will raise a png_error if the range check fails,
420 * therefore it is normally only appropriate to use this on values
421 * that come from API calls or other sources where an out of range
422 * error indicates a programming error, not a data error!
424 * NOTE: by default this is off - the macro is not used - because the
425 * function call saves a lot of code.
427 #ifdef PNG_FIXED_POINT_MACRO_SUPPORTED
428 #define png_fixed(png_ptr, fp, s) ((fp) <= 21474 && (fp) >= -21474 ?\
429 ((png_fixed_point)(100000 * (fp))) : (png_fixed_error(png_ptr, s),0))
431 PNG_EXTERN png_fixed_point png_fixed PNGARG((png_structp png_ptr, double fp,
432 png_const_charp text));
436 /* Constant strings for known chunk types. If you need to add a chunk,
437 * define the name here, and add an invocation of the macro wherever it's
440 #define PNG_IHDR PNG_CONST png_byte png_IHDR[5] = { 73, 72, 68, 82, '\0'}
441 #define PNG_IDAT PNG_CONST png_byte png_IDAT[5] = { 73, 68, 65, 84, '\0'}
442 #define PNG_IEND PNG_CONST png_byte png_IEND[5] = { 73, 69, 78, 68, '\0'}
443 #define PNG_PLTE PNG_CONST png_byte png_PLTE[5] = { 80, 76, 84, 69, '\0'}
444 #define PNG_bKGD PNG_CONST png_byte png_bKGD[5] = { 98, 75, 71, 68, '\0'}
445 #define PNG_cHRM PNG_CONST png_byte png_cHRM[5] = { 99, 72, 82, 77, '\0'}
446 #define PNG_gAMA PNG_CONST png_byte png_gAMA[5] = {103, 65, 77, 65, '\0'}
447 #define PNG_hIST PNG_CONST png_byte png_hIST[5] = {104, 73, 83, 84, '\0'}
448 #define PNG_iCCP PNG_CONST png_byte png_iCCP[5] = {105, 67, 67, 80, '\0'}
449 #define PNG_iTXt PNG_CONST png_byte png_iTXt[5] = {105, 84, 88, 116, '\0'}
450 #define PNG_oFFs PNG_CONST png_byte png_oFFs[5] = {111, 70, 70, 115, '\0'}
451 #define PNG_pCAL PNG_CONST png_byte png_pCAL[5] = {112, 67, 65, 76, '\0'}
452 #define PNG_sCAL PNG_CONST png_byte png_sCAL[5] = {115, 67, 65, 76, '\0'}
453 #define PNG_pHYs PNG_CONST png_byte png_pHYs[5] = {112, 72, 89, 115, '\0'}
454 #define PNG_sBIT PNG_CONST png_byte png_sBIT[5] = {115, 66, 73, 84, '\0'}
455 #define PNG_sPLT PNG_CONST png_byte png_sPLT[5] = {115, 80, 76, 84, '\0'}
456 #define PNG_sRGB PNG_CONST png_byte png_sRGB[5] = {115, 82, 71, 66, '\0'}
457 #define PNG_sTER PNG_CONST png_byte png_sTER[5] = {115, 84, 69, 82, '\0'}
458 #define PNG_tEXt PNG_CONST png_byte png_tEXt[5] = {116, 69, 88, 116, '\0'}
459 #define PNG_tIME PNG_CONST png_byte png_tIME[5] = {116, 73, 77, 69, '\0'}
460 #define PNG_tRNS PNG_CONST png_byte png_tRNS[5] = {116, 82, 78, 83, '\0'}
461 #define PNG_zTXt PNG_CONST png_byte png_zTXt[5] = {122, 84, 88, 116, '\0'}
464 /* Inhibit C++ name-mangling for libpng functions but not for system calls. */
467 #endif /* __cplusplus */
469 /* These functions are used internally in the code. They generally
470 * shouldn't be used unless you are writing code to add or replace some
471 * functionality in libpng. More information about most functions can
472 * be found in the files where the functions are located.
475 /* Allocate memory for an internal libpng struct */
476 PNG_EXTERN PNG_FUNCTION(png_voidp,png_create_struct,PNGARG((int type)),
479 /* Free memory from internal libpng struct */
480 PNG_EXTERN void png_destroy_struct PNGARG((png_voidp struct_ptr));
482 PNG_EXTERN PNG_FUNCTION(png_voidp,png_create_struct_2,
483 PNGARG((int type, png_malloc_ptr malloc_fn, png_voidp mem_ptr)),
485 PNG_EXTERN void png_destroy_struct_2 PNGARG((png_voidp struct_ptr,
486 png_free_ptr free_fn, png_voidp mem_ptr));
488 /* Free any memory that info_ptr points to and reset struct. */
489 PNG_EXTERN void png_info_destroy PNGARG((png_structp png_ptr,
490 png_infop info_ptr));
492 /* Function to allocate memory for zlib. PNGAPI is disallowed. */
493 PNG_EXTERN PNG_FUNCTION(voidpf,png_zalloc,PNGARG((voidpf png_ptr, uInt items,
494 uInt size)),PNG_ALLOCATED);
496 /* Function to free memory for zlib. PNGAPI is disallowed. */
497 PNG_EXTERN void png_zfree PNGARG((voidpf png_ptr, voidpf ptr));
499 /* Next four functions are used internally as callbacks. PNGCBAPI is required
500 * but not PNG_EXPORT. PNGAPI added at libpng version 1.2.3, changed to
504 PNG_EXTERN void PNGCBAPI png_default_read_data PNGARG((png_structp png_ptr,
505 png_bytep data, png_size_t length));
507 #ifdef PNG_PROGRESSIVE_READ_SUPPORTED
508 PNG_EXTERN void PNGCBAPI png_push_fill_buffer PNGARG((png_structp png_ptr,
509 png_bytep buffer, png_size_t length));
512 PNG_EXTERN void PNGCBAPI png_default_write_data PNGARG((png_structp png_ptr,
513 png_bytep data, png_size_t length));
515 #ifdef PNG_WRITE_FLUSH_SUPPORTED
516 # ifdef PNG_STDIO_SUPPORTED
517 PNG_EXTERN void PNGCBAPI png_default_flush PNGARG((png_structp png_ptr));
521 /* Reset the CRC variable */
522 PNG_EXTERN void png_reset_crc PNGARG((png_structp png_ptr));
524 /* Write the "data" buffer to whatever output you are using */
525 PNG_EXTERN void png_write_data PNGARG((png_structp png_ptr,
526 png_const_bytep data, png_size_t length));
528 /* Read and check the PNG file signature */
529 PNG_EXTERN void png_read_sig PNGARG((png_structp png_ptr, png_infop info_ptr));
531 /* Read the chunk header (length + type name) */
532 PNG_EXTERN png_uint_32 png_read_chunk_header PNGARG((png_structp png_ptr));
534 /* Read data from whatever input you are using into the "data" buffer */
535 PNG_EXTERN void png_read_data PNGARG((png_structp png_ptr, png_bytep data,
538 /* Read bytes into buf, and update png_ptr->crc */
539 PNG_EXTERN void png_crc_read PNGARG((png_structp png_ptr, png_bytep buf,
542 /* Decompress data in a chunk that uses compression */
543 #if defined(PNG_zTXt_SUPPORTED) || defined(PNG_iTXt_SUPPORTED) || \
544 defined(PNG_iCCP_SUPPORTED) || defined(PNG_sPLT_SUPPORTED)
545 PNG_EXTERN void png_decompress_chunk PNGARG((png_structp png_ptr,
546 int comp_type, png_size_t chunklength, png_size_t prefix_length,
547 png_size_t *data_length));
550 /* Read "skip" bytes, read the file crc, and (optionally) verify png_ptr->crc */
551 PNG_EXTERN int png_crc_finish PNGARG((png_structp png_ptr, png_uint_32 skip));
553 /* Read the CRC from the file and compare it to the libpng calculated CRC */
554 PNG_EXTERN int png_crc_error PNGARG((png_structp png_ptr));
556 /* Calculate the CRC over a section of data. Note that we are only
557 * passing a maximum of 64K on systems that have this as a memory limit,
558 * since this is the maximum buffer size we can specify.
560 PNG_EXTERN void png_calculate_crc PNGARG((png_structp png_ptr,
561 png_const_bytep ptr, png_size_t length));
563 #ifdef PNG_WRITE_FLUSH_SUPPORTED
564 PNG_EXTERN void png_flush PNGARG((png_structp png_ptr));
567 /* Write various chunks */
569 /* Write the IHDR chunk, and update the png_struct with the necessary
572 PNG_EXTERN void png_write_IHDR PNGARG((png_structp png_ptr, png_uint_32 width,
574 int bit_depth, int color_type, int compression_method, int filter_method,
575 int interlace_method));
577 PNG_EXTERN void png_write_PLTE PNGARG((png_structp png_ptr,
578 png_const_colorp palette, png_uint_32 num_pal));
580 PNG_EXTERN void png_write_IDAT PNGARG((png_structp png_ptr, png_bytep data,
583 PNG_EXTERN void png_write_IEND PNGARG((png_structp png_ptr));
585 #ifdef PNG_WRITE_gAMA_SUPPORTED
586 # ifdef PNG_FLOATING_POINT_SUPPORTED
587 PNG_EXTERN void png_write_gAMA PNGARG((png_structp png_ptr, double file_gamma));
589 # ifdef PNG_FIXED_POINT_SUPPORTED
590 PNG_EXTERN void png_write_gAMA_fixed PNGARG((png_structp png_ptr,
591 png_fixed_point file_gamma));
595 #ifdef PNG_WRITE_sBIT_SUPPORTED
596 PNG_EXTERN void png_write_sBIT PNGARG((png_structp png_ptr,
597 png_const_color_8p sbit, int color_type));
600 #ifdef PNG_WRITE_cHRM_SUPPORTED
601 # ifdef PNG_FLOATING_POINT_SUPPORTED
602 PNG_EXTERN void png_write_cHRM PNGARG((png_structp png_ptr,
603 double white_x, double white_y,
604 double red_x, double red_y, double green_x, double green_y,
605 double blue_x, double blue_y));
607 PNG_EXTERN void png_write_cHRM_fixed PNGARG((png_structp png_ptr,
608 png_fixed_point int_white_x, png_fixed_point int_white_y,
609 png_fixed_point int_red_x, png_fixed_point int_red_y, png_fixed_point
610 int_green_x, png_fixed_point int_green_y, png_fixed_point int_blue_x,
611 png_fixed_point int_blue_y));
614 #ifdef PNG_WRITE_sRGB_SUPPORTED
615 PNG_EXTERN void png_write_sRGB PNGARG((png_structp png_ptr,
619 #ifdef PNG_WRITE_iCCP_SUPPORTED
620 PNG_EXTERN void png_write_iCCP PNGARG((png_structp png_ptr,
621 png_const_charp name, int compression_type,
622 png_const_charp profile, int proflen));
623 /* Note to maintainer: profile should be png_bytep */
626 #ifdef PNG_WRITE_sPLT_SUPPORTED
627 PNG_EXTERN void png_write_sPLT PNGARG((png_structp png_ptr,
628 png_const_sPLT_tp palette));
631 #ifdef PNG_WRITE_tRNS_SUPPORTED
632 PNG_EXTERN void png_write_tRNS PNGARG((png_structp png_ptr,
633 png_const_bytep trans, png_const_color_16p values, int number,
637 #ifdef PNG_WRITE_bKGD_SUPPORTED
638 PNG_EXTERN void png_write_bKGD PNGARG((png_structp png_ptr,
639 png_const_color_16p values, int color_type));
642 #ifdef PNG_WRITE_hIST_SUPPORTED
643 PNG_EXTERN void png_write_hIST PNGARG((png_structp png_ptr,
644 png_const_uint_16p hist, int num_hist));
647 #if defined(PNG_WRITE_TEXT_SUPPORTED) || defined(PNG_WRITE_pCAL_SUPPORTED) || \
648 defined(PNG_WRITE_iCCP_SUPPORTED) || defined(PNG_WRITE_sPLT_SUPPORTED)
649 PNG_EXTERN png_size_t png_check_keyword PNGARG((png_structp png_ptr,
650 png_const_charp key, png_charpp new_key));
653 #ifdef PNG_WRITE_tEXt_SUPPORTED
654 PNG_EXTERN void png_write_tEXt PNGARG((png_structp png_ptr, png_const_charp key,
655 png_const_charp text, png_size_t text_len));
658 #ifdef PNG_WRITE_zTXt_SUPPORTED
659 PNG_EXTERN void png_write_zTXt PNGARG((png_structp png_ptr, png_const_charp key,
660 png_const_charp text, png_size_t text_len, int compression));
663 #ifdef PNG_WRITE_iTXt_SUPPORTED
664 PNG_EXTERN void png_write_iTXt PNGARG((png_structp png_ptr,
665 int compression, png_const_charp key, png_const_charp lang,
666 png_const_charp lang_key, png_const_charp text));
669 #ifdef PNG_TEXT_SUPPORTED /* Added at version 1.0.14 and 1.2.4 */
670 PNG_EXTERN int png_set_text_2 PNGARG((png_structp png_ptr,
671 png_infop info_ptr, png_const_textp text_ptr, int num_text));
674 #ifdef PNG_WRITE_oFFs_SUPPORTED
675 PNG_EXTERN void png_write_oFFs PNGARG((png_structp png_ptr,
676 png_int_32 x_offset, png_int_32 y_offset, int unit_type));
679 #ifdef PNG_WRITE_pCAL_SUPPORTED
680 PNG_EXTERN void png_write_pCAL PNGARG((png_structp png_ptr, png_charp purpose,
681 png_int_32 X0, png_int_32 X1, int type, int nparams,
682 png_const_charp units, png_charpp params));
685 #ifdef PNG_WRITE_pHYs_SUPPORTED
686 PNG_EXTERN void png_write_pHYs PNGARG((png_structp png_ptr,
687 png_uint_32 x_pixels_per_unit, png_uint_32 y_pixels_per_unit,
691 #ifdef PNG_WRITE_tIME_SUPPORTED
692 PNG_EXTERN void png_write_tIME PNGARG((png_structp png_ptr,
693 png_const_timep mod_time));
696 #ifdef PNG_WRITE_sCAL_SUPPORTED
697 PNG_EXTERN void png_write_sCAL_s PNGARG((png_structp png_ptr,
698 int unit, png_const_charp width, png_const_charp height));
701 /* Called when finished processing a row of data */
702 PNG_EXTERN void png_write_finish_row PNGARG((png_structp png_ptr));
704 /* Internal use only. Called before first row of data */
705 PNG_EXTERN void png_write_start_row PNGARG((png_structp png_ptr));
707 /* Combine a row of data, dealing with alpha, etc. if requested */
708 PNG_EXTERN void png_combine_row PNGARG((png_structp png_ptr, png_bytep row,
711 #ifdef PNG_READ_INTERLACING_SUPPORTED
712 /* Expand an interlaced row */
713 /* OLD pre-1.0.9 interface:
714 PNG_EXTERN void png_do_read_interlace PNGARG((png_row_infop row_info,
715 png_bytep row, int pass, png_uint_32 transformations));
717 PNG_EXTERN void png_do_read_interlace PNGARG((png_structp png_ptr));
720 /* GRR TO DO (2.0 or whenever): simplify other internal calling interfaces */
722 #ifdef PNG_WRITE_INTERLACING_SUPPORTED
723 /* Grab pixels out of a row for an interlaced pass */
724 PNG_EXTERN void png_do_write_interlace PNGARG((png_row_infop row_info,
725 png_bytep row, int pass));
729 PNG_EXTERN void png_read_filter_row PNGARG((png_structp png_ptr,
730 png_row_infop row_info, png_bytep row, png_const_bytep prev_row,
733 /* Choose the best filter to use and filter the row data */
734 PNG_EXTERN void png_write_find_filter PNGARG((png_structp png_ptr,
735 png_row_infop row_info));
737 /* Write out the filtered row. */
738 PNG_EXTERN void png_write_filtered_row PNGARG((png_structp png_ptr,
739 png_bytep filtered_row));
740 /* Finish a row while reading, dealing with interlacing passes, etc. */
741 PNG_EXTERN void png_read_finish_row PNGARG((png_structp png_ptr));
743 /* Initialize the row buffers, etc. */
744 PNG_EXTERN void png_read_start_row PNGARG((png_structp png_ptr));
745 /* Optional call to update the users info structure */
746 PNG_EXTERN void png_read_transform_info PNGARG((png_structp png_ptr,
747 png_infop info_ptr));
749 /* These are the functions that do the transformations */
750 #ifdef PNG_READ_FILLER_SUPPORTED
751 PNG_EXTERN void png_do_read_filler PNGARG((png_row_infop row_info,
752 png_bytep row, png_uint_32 filler, png_uint_32 flags));
755 #ifdef PNG_READ_SWAP_ALPHA_SUPPORTED
756 PNG_EXTERN void png_do_read_swap_alpha PNGARG((png_row_infop row_info,
760 #ifdef PNG_WRITE_SWAP_ALPHA_SUPPORTED
761 PNG_EXTERN void png_do_write_swap_alpha PNGARG((png_row_infop row_info,
765 #ifdef PNG_READ_INVERT_ALPHA_SUPPORTED
766 PNG_EXTERN void png_do_read_invert_alpha PNGARG((png_row_infop row_info,
770 #ifdef PNG_WRITE_INVERT_ALPHA_SUPPORTED
771 PNG_EXTERN void png_do_write_invert_alpha PNGARG((png_row_infop row_info,
775 #if defined(PNG_WRITE_FILLER_SUPPORTED) || \
776 defined(PNG_READ_STRIP_ALPHA_SUPPORTED)
777 PNG_EXTERN void png_do_strip_channel PNGARG((png_row_infop row_info,
778 png_bytep row, int at_start));
781 #ifdef PNG_16BIT_SUPPORTED
782 #if defined(PNG_READ_SWAP_SUPPORTED) || defined(PNG_WRITE_SWAP_SUPPORTED)
783 PNG_EXTERN void png_do_swap PNGARG((png_row_infop row_info,
788 #if defined(PNG_READ_PACKSWAP_SUPPORTED) || \
789 defined(PNG_WRITE_PACKSWAP_SUPPORTED)
790 PNG_EXTERN void png_do_packswap PNGARG((png_row_infop row_info,
794 #ifdef PNG_READ_RGB_TO_GRAY_SUPPORTED
795 PNG_EXTERN int png_do_rgb_to_gray PNGARG((png_structp png_ptr,
796 png_row_infop row_info, png_bytep row));
799 #ifdef PNG_READ_GRAY_TO_RGB_SUPPORTED
800 PNG_EXTERN void png_do_gray_to_rgb PNGARG((png_row_infop row_info,
804 #ifdef PNG_READ_PACK_SUPPORTED
805 PNG_EXTERN void png_do_unpack PNGARG((png_row_infop row_info,
809 #ifdef PNG_READ_SHIFT_SUPPORTED
810 PNG_EXTERN void png_do_unshift PNGARG((png_row_infop row_info,
811 png_bytep row, png_const_color_8p sig_bits));
814 #if defined(PNG_READ_INVERT_SUPPORTED) || defined(PNG_WRITE_INVERT_SUPPORTED)
815 PNG_EXTERN void png_do_invert PNGARG((png_row_infop row_info,
819 #ifdef PNG_READ_16_TO_8_SUPPORTED
820 PNG_EXTERN void png_do_chop PNGARG((png_row_infop row_info,
824 #ifdef PNG_READ_QUANTIZE_SUPPORTED
825 PNG_EXTERN void png_do_quantize PNGARG((png_row_infop row_info,
826 png_bytep row, png_const_bytep palette_lookup,
827 png_const_bytep quantize_lookup));
829 # ifdef PNG_CORRECT_PALETTE_SUPPORTED
830 PNG_EXTERN void png_correct_palette PNGARG((png_structp png_ptr,
831 png_colorp palette, int num_palette));
835 #if defined(PNG_READ_BGR_SUPPORTED) || defined(PNG_WRITE_BGR_SUPPORTED)
836 PNG_EXTERN void png_do_bgr PNGARG((png_row_infop row_info,
840 #ifdef PNG_WRITE_PACK_SUPPORTED
841 PNG_EXTERN void png_do_pack PNGARG((png_row_infop row_info,
842 png_bytep row, png_uint_32 bit_depth));
845 #ifdef PNG_WRITE_SHIFT_SUPPORTED
846 PNG_EXTERN void png_do_shift PNGARG((png_row_infop row_info,
847 png_bytep row, png_const_color_8p bit_depth));
850 #ifdef PNG_READ_BACKGROUND_SUPPORTED
851 # ifdef PNG_READ_GAMMA_SUPPORTED
852 PNG_EXTERN void png_do_background PNGARG((png_row_infop row_info,
853 png_bytep row, png_const_color_16p trans_color,
854 png_const_color_16p background, png_const_color_16p background_1,
855 png_const_bytep gamma_table, png_const_bytep gamma_from_1,
856 png_const_bytep gamma_to_1, png_const_uint_16pp gamma_16,
857 png_const_uint_16pp gamma_16_from_1, png_const_uint_16pp gamma_16_to_1,
860 PNG_EXTERN void png_do_background PNGARG((png_row_infop row_info,
861 png_bytep row, png_const_color_16p trans_color,
862 png_const_color_16p background));
866 #ifdef PNG_READ_GAMMA_SUPPORTED
867 PNG_EXTERN void png_do_gamma PNGARG((png_row_infop row_info,
868 png_bytep row, png_const_bytep gamma_table,
869 png_const_uint_16pp gamma_16_table, int gamma_shift));
872 #ifdef PNG_READ_EXPAND_SUPPORTED
873 PNG_EXTERN void png_do_expand_palette PNGARG((png_row_infop row_info,
874 png_bytep row, png_const_colorp palette, png_const_bytep trans,
876 PNG_EXTERN void png_do_expand PNGARG((png_row_infop row_info,
877 png_bytep row, png_const_color_16p trans_color));
880 #ifdef PNG_READ_EXPAND_16_SUPPORTED
881 PNG_EXTERN void png_do_expand_16 PNGARG((png_row_infop row_info,
885 /* The following decodes the appropriate chunks, and does error correction,
886 * then calls the appropriate callback for the chunk if it is valid.
889 /* Decode the IHDR chunk */
890 PNG_EXTERN void png_handle_IHDR PNGARG((png_structp png_ptr, png_infop info_ptr,
891 png_uint_32 length));
892 PNG_EXTERN void png_handle_PLTE PNGARG((png_structp png_ptr, png_infop info_ptr,
893 png_uint_32 length));
894 PNG_EXTERN void png_handle_IEND PNGARG((png_structp png_ptr, png_infop info_ptr,
895 png_uint_32 length));
897 #ifdef PNG_READ_bKGD_SUPPORTED
898 PNG_EXTERN void png_handle_bKGD PNGARG((png_structp png_ptr, png_infop info_ptr,
899 png_uint_32 length));
902 #ifdef PNG_READ_cHRM_SUPPORTED
903 PNG_EXTERN void png_handle_cHRM PNGARG((png_structp png_ptr, png_infop info_ptr,
904 png_uint_32 length));
907 #ifdef PNG_READ_gAMA_SUPPORTED
908 PNG_EXTERN void png_handle_gAMA PNGARG((png_structp png_ptr, png_infop info_ptr,
909 png_uint_32 length));
912 #ifdef PNG_READ_hIST_SUPPORTED
913 PNG_EXTERN void png_handle_hIST PNGARG((png_structp png_ptr, png_infop info_ptr,
914 png_uint_32 length));
917 #ifdef PNG_READ_iCCP_SUPPORTED
918 PNG_EXTERN void png_handle_iCCP PNGARG((png_structp png_ptr, png_infop info_ptr,
919 png_uint_32 length));
920 #endif /* PNG_READ_iCCP_SUPPORTED */
922 #ifdef PNG_READ_iTXt_SUPPORTED
923 PNG_EXTERN void png_handle_iTXt PNGARG((png_structp png_ptr, png_infop info_ptr,
924 png_uint_32 length));
927 #ifdef PNG_READ_oFFs_SUPPORTED
928 PNG_EXTERN void png_handle_oFFs PNGARG((png_structp png_ptr, png_infop info_ptr,
929 png_uint_32 length));
932 #ifdef PNG_READ_pCAL_SUPPORTED
933 PNG_EXTERN void png_handle_pCAL PNGARG((png_structp png_ptr, png_infop info_ptr,
934 png_uint_32 length));
937 #ifdef PNG_READ_pHYs_SUPPORTED
938 PNG_EXTERN void png_handle_pHYs PNGARG((png_structp png_ptr, png_infop info_ptr,
939 png_uint_32 length));
942 #ifdef PNG_READ_sBIT_SUPPORTED
943 PNG_EXTERN void png_handle_sBIT PNGARG((png_structp png_ptr, png_infop info_ptr,
944 png_uint_32 length));
947 #ifdef PNG_READ_sCAL_SUPPORTED
948 PNG_EXTERN void png_handle_sCAL PNGARG((png_structp png_ptr, png_infop info_ptr,
949 png_uint_32 length));
952 #ifdef PNG_READ_sPLT_SUPPORTED
953 PNG_EXTERN void png_handle_sPLT PNGARG((png_structp png_ptr, png_infop info_ptr,
954 png_uint_32 length));
955 #endif /* PNG_READ_sPLT_SUPPORTED */
957 #ifdef PNG_READ_sRGB_SUPPORTED
958 PNG_EXTERN void png_handle_sRGB PNGARG((png_structp png_ptr, png_infop info_ptr,
959 png_uint_32 length));
962 #ifdef PNG_READ_tEXt_SUPPORTED
963 PNG_EXTERN void png_handle_tEXt PNGARG((png_structp png_ptr, png_infop info_ptr,
964 png_uint_32 length));
967 #ifdef PNG_READ_tIME_SUPPORTED
968 PNG_EXTERN void png_handle_tIME PNGARG((png_structp png_ptr, png_infop info_ptr,
969 png_uint_32 length));
972 #ifdef PNG_READ_tRNS_SUPPORTED
973 PNG_EXTERN void png_handle_tRNS PNGARG((png_structp png_ptr, png_infop info_ptr,
974 png_uint_32 length));
977 #ifdef PNG_READ_zTXt_SUPPORTED
978 PNG_EXTERN void png_handle_zTXt PNGARG((png_structp png_ptr, png_infop info_ptr,
979 png_uint_32 length));
982 PNG_EXTERN void png_handle_unknown PNGARG((png_structp png_ptr,
983 png_infop info_ptr, png_uint_32 length));
985 PNG_EXTERN void png_check_chunk_name PNGARG((png_structp png_ptr,
986 png_const_bytep chunk_name));
988 /* Handle the transformations for reading and writing */
989 PNG_EXTERN void png_do_read_transformations PNGARG((png_structp png_ptr));
990 PNG_EXTERN void png_do_write_transformations PNGARG((png_structp png_ptr));
992 PNG_EXTERN void png_init_read_transformations PNGARG((png_structp png_ptr));
994 #ifdef PNG_PROGRESSIVE_READ_SUPPORTED
995 PNG_EXTERN void png_push_read_chunk PNGARG((png_structp png_ptr,
996 png_infop info_ptr));
997 PNG_EXTERN void png_push_read_sig PNGARG((png_structp png_ptr,
998 png_infop info_ptr));
999 PNG_EXTERN void png_push_check_crc PNGARG((png_structp png_ptr));
1000 PNG_EXTERN void png_push_crc_skip PNGARG((png_structp png_ptr,
1001 png_uint_32 length));
1002 PNG_EXTERN void png_push_crc_finish PNGARG((png_structp png_ptr));
1003 PNG_EXTERN void png_push_save_buffer PNGARG((png_structp png_ptr));
1004 PNG_EXTERN void png_push_restore_buffer PNGARG((png_structp png_ptr,
1005 png_bytep buffer, png_size_t buffer_length));
1006 PNG_EXTERN void png_push_read_IDAT PNGARG((png_structp png_ptr));
1007 PNG_EXTERN void png_process_IDAT_data PNGARG((png_structp png_ptr,
1008 png_bytep buffer, png_size_t buffer_length));
1009 PNG_EXTERN void png_push_process_row PNGARG((png_structp png_ptr));
1010 PNG_EXTERN void png_push_handle_unknown PNGARG((png_structp png_ptr,
1011 png_infop info_ptr, png_uint_32 length));
1012 PNG_EXTERN void png_push_have_info PNGARG((png_structp png_ptr,
1013 png_infop info_ptr));
1014 PNG_EXTERN void png_push_have_end PNGARG((png_structp png_ptr,
1015 png_infop info_ptr));
1016 PNG_EXTERN void png_push_have_row PNGARG((png_structp png_ptr, png_bytep row));
1017 PNG_EXTERN void png_push_read_end PNGARG((png_structp png_ptr,
1018 png_infop info_ptr));
1019 PNG_EXTERN void png_process_some_data PNGARG((png_structp png_ptr,
1020 png_infop info_ptr));
1021 PNG_EXTERN void png_read_push_finish_row PNGARG((png_structp png_ptr));
1022 # ifdef PNG_READ_tEXt_SUPPORTED
1023 PNG_EXTERN void png_push_handle_tEXt PNGARG((png_structp png_ptr,
1024 png_infop info_ptr, png_uint_32 length));
1025 PNG_EXTERN void png_push_read_tEXt PNGARG((png_structp png_ptr,
1026 png_infop info_ptr));
1028 # ifdef PNG_READ_zTXt_SUPPORTED
1029 PNG_EXTERN void png_push_handle_zTXt PNGARG((png_structp png_ptr,
1030 png_infop info_ptr, png_uint_32 length));
1031 PNG_EXTERN void png_push_read_zTXt PNGARG((png_structp png_ptr,
1032 png_infop info_ptr));
1034 # ifdef PNG_READ_iTXt_SUPPORTED
1035 PNG_EXTERN void png_push_handle_iTXt PNGARG((png_structp png_ptr,
1036 png_infop info_ptr, png_uint_32 length));
1037 PNG_EXTERN void png_push_read_iTXt PNGARG((png_structp png_ptr,
1038 png_infop info_ptr));
1041 #endif /* PNG_PROGRESSIVE_READ_SUPPORTED */
1043 #ifdef PNG_MNG_FEATURES_SUPPORTED
1044 PNG_EXTERN void png_do_read_intrapixel PNGARG((png_row_infop row_info,
1046 PNG_EXTERN void png_do_write_intrapixel PNGARG((png_row_infop row_info,
1050 /* Added at libpng version 1.4.0 */
1051 #ifdef PNG_CHECK_cHRM_SUPPORTED
1052 PNG_EXTERN int png_check_cHRM_fixed PNGARG((png_structp png_ptr,
1053 png_fixed_point int_white_x, png_fixed_point int_white_y,
1054 png_fixed_point int_red_x, png_fixed_point int_red_y, png_fixed_point
1055 int_green_x, png_fixed_point int_green_y, png_fixed_point int_blue_x,
1056 png_fixed_point int_blue_y));
1059 #ifdef PNG_CHECK_cHRM_SUPPORTED
1060 /* Added at libpng version 1.2.34 and 1.4.0 */
1061 /* Currently only used by png_check_cHRM_fixed */
1062 PNG_EXTERN void png_64bit_product PNGARG((long v1, long v2,
1063 unsigned long *hi_product, unsigned long *lo_product));
1066 /* Added at libpng version 1.4.0 */
1067 PNG_EXTERN void png_check_IHDR PNGARG((png_structp png_ptr,
1068 png_uint_32 width, png_uint_32 height, int bit_depth,
1069 int color_type, int interlace_type, int compression_type,
1072 /* Free all memory used by the read (old method - NOT DLL EXPORTED) */
1073 PNG_EXTERN void png_read_destroy PNGARG((png_structp png_ptr,
1074 png_infop info_ptr, png_infop end_info_ptr));
1076 /* Free any memory used in png_ptr struct (old method - NOT DLL EXPORTED) */
1077 PNG_EXTERN void png_write_destroy PNGARG((png_structp png_ptr));
1079 #ifdef USE_FAR_KEYWORD /* memory model conversion function */
1080 PNG_EXTERN void *png_far_to_near PNGARG((png_structp png_ptr, png_voidp ptr,
1082 #endif /* USE_FAR_KEYWORD */
1084 #if defined(PNG_FLOATING_POINT_SUPPORTED) && defined(PNG_ERROR_TEXT_SUPPORTED)
1085 PNG_EXTERN PNG_FUNCTION(void, png_fixed_error, (png_structp png_ptr,
1086 png_const_charp name),PNG_NORETURN);
1089 /* ASCII to FP interfaces, currently only implemented if sCAL
1090 * support is required.
1092 #if defined(PNG_READ_sCAL_SUPPORTED)
1093 /* MAX_DIGITS is actually the maximum number of characters in an sCAL
1094 * width or height, derived from the precision (number of significant
1095 * digits - a build time settable option) and assumpitions about the
1096 * maximum ridiculous exponent.
1098 #define PNG_sCAL_MAX_DIGITS (PNG_sCAL_PRECISION+1/*.*/+1/*E*/+10/*exponent*/)
1100 #ifdef PNG_FLOATING_POINT_SUPPORTED
1101 PNG_EXTERN void png_ascii_from_fp PNGARG((png_structp png_ptr, png_charp ascii,
1102 png_size_t size, double fp, unsigned int precision));
1103 #endif /* FLOATING_POINT */
1105 #ifdef PNG_FIXED_POINT_SUPPORTED
1106 PNG_EXTERN void png_ascii_from_fixed PNGARG((png_structp png_ptr,
1107 png_charp ascii, png_size_t size, png_fixed_point fp));
1108 #endif /* FIXED_POINT */
1109 #endif /* READ_sCAL */
1111 #if defined(PNG_sCAL_SUPPORTED) || defined(PNG_pCAL_SUPPORTED)
1112 /* An internal API to validate the format of a floating point number.
1113 * The result is the index of the next character. If the number is
1114 * not valid it will be the index of a character in the supposed number.
1116 * The format of a number is defined in the PNG extensions specification
1117 * and this API is strictly conformant to that spec, not anyone elses!
1119 * The format as a regular expression is:
1121 * [+-]?[0-9]+.?([Ee][+-]?[0-9]+)?
1125 * [+-]?.[0-9]+(.[0-9]+)?([Ee][+-]?[0-9]+)?
1127 * The complexity is that either integer or fraction must be present and the
1128 * fraction is permitted to have no digits only if the integer is present.
1130 * NOTE: The dangling E problem.
1131 * There is a PNG valid floating point number in the following:
1133 * PNG floating point numb1.ers are not greedy.
1135 * Working this out requires *TWO* character lookahead (because of the
1136 * sign), the parser does not do this - it will fail at the 'r' - this
1137 * doesn't matter for PNG sCAL chunk values, but it requires more care
1138 * if the value were ever to be embedded in something more complex. Use
1139 * ANSI-C strtod if you need the lookahead.
1141 /* State table for the parser. */
1142 #define PNG_FP_INTEGER 0 /* before or in integer */
1143 #define PNG_FP_FRACTION 1 /* before or in fraction */
1144 #define PNG_FP_EXPONENT 2 /* before or in exponent */
1145 #define PNG_FP_STATE 3 /* mask for the above */
1146 #define PNG_FP_SAW_SIGN 4 /* Saw +/- in current state */
1147 #define PNG_FP_SAW_DIGIT 8 /* Saw a digit in current state */
1148 #define PNG_FP_SAW_DOT 16 /* Saw a dot in current state */
1149 #define PNG_FP_SAW_E 32 /* Saw an E (or e) in current state */
1150 #define PNG_FP_SAW_ANY 60 /* Saw any of the above 4 */
1151 #define PNG_FP_WAS_VALID 64 /* Preceding substring is a valid fp number */
1152 #define PNG_FP_INVALID 128 /* Available for callers as a distinct value */
1154 /* Result codes for the parser (boolean - true meants ok, false means
1157 #define PNG_FP_MAYBE 0 /* The number may be valid in the future */
1158 #define PNG_FP_OK 1 /* The number is valid */
1160 /* The actual parser. This can be called repeatedly, it updates
1161 * the index into the string and the state variable (which must
1162 * be initialzed to 0). It returns a result code, as above. There
1163 * is no point calling the parser any more if it fails to advance to
1164 * the end of the string - it is stuck on an invalid character (or
1165 * terminated by '\0').
1167 * Note that the pointer will consume an E or even an E+ then leave
1168 * a 'maybe' state even though a preceding integer.fraction is valid.
1169 * The PNG_FP_WAS_VALID flag indicates that a preceding substring was
1170 * a valid number. It's possible to recover from this by calling
1171 * the parser again (from the start, with state 0) but with a string
1172 * that omits the last character (i.e. set the size to the index of
1173 * the problem character.) This has not been tested within libpng.
1175 PNG_EXTERN int png_check_fp_number PNGARG((png_const_charp string,
1176 png_size_t size, int *statep, png_size_tp whereami));
1178 /* This is the same but it checks a complete string and returns true
1179 * only if it just contains a floating point number.
1181 PNG_EXTERN int png_check_fp_string PNGARG((png_const_charp string,
1183 #endif /* pCAL || sCAL */
1185 #if defined(PNG_READ_GAMMA_SUPPORTED) ||\
1186 defined(PNG_INCH_CONVERSIONS_SUPPORTED) || defined(PNG_READ_pHYs_SUPPORTED)
1187 /* Added at libpng version 1.5.0 */
1188 /* This is a utility to provide a*times/div (rounded) and indicate
1189 * if there is an overflow. The result is a boolean - false (0)
1190 * for overflow, true (1) if no overflow, in which case *res
1193 PNG_EXTERN int png_muldiv PNGARG((png_fixed_point_p res, png_fixed_point a,
1194 png_int_32 multiplied_by, png_int_32 divided_by));
1197 #if defined(PNG_READ_GAMMA_SUPPORTED) || defined(PNG_INCH_CONVERSIONS_SUPPORTED)
1198 /* Same deal, but issue a warning on overflow and return 0. */
1199 PNG_EXTERN png_fixed_point png_muldiv_warn PNGARG((png_structp png_ptr,
1200 png_fixed_point a, png_int_32 multiplied_by, png_int_32 divided_by));
1203 #ifdef PNG_READ_GAMMA_SUPPORTED
1204 /* Calculate a reciprocal - used for gamma values. This returns
1205 * 0 if the argument is 0 in order to maintain an undefined value,
1206 * there are no warnings.
1208 PNG_EXTERN png_fixed_point png_reciprocal PNGARG((png_fixed_point a));
1210 /* The same but gives a reciprocal of the product of two fixed point
1211 * values. Accuracy is suitable for gamma calculations but this is
1212 * not exact - use png_muldiv for that.
1214 PNG_EXTERN png_fixed_point png_reciprocal2 PNGARG((png_fixed_point a,
1215 png_fixed_point b));
1218 #ifdef PNG_READ_GAMMA_SUPPORTED
1219 /* Internal fixed point gamma correction. These APIs are called as
1220 * required to convert single values - they don't need to be fast,
1221 * they are not used when processing image pixel values.
1223 * While the input is an 'unsigned' value it must actually be the
1224 * correct bit value - 0..255 or 0..65535 as required.
1226 PNG_EXTERN png_uint_16 png_gamma_correct PNGARG((png_structp png_ptr,
1227 unsigned int value, png_fixed_point gamma_value));
1228 PNG_EXTERN int png_gamma_significant PNGARG((png_fixed_point gamma_value));
1229 PNG_EXTERN png_uint_16 png_gamma_16bit_correct PNGARG((unsigned int value,
1230 png_fixed_point gamma_value));
1231 PNG_EXTERN png_byte png_gamma_8bit_correct PNGARG((unsigned int value,
1232 png_fixed_point gamma_value));
1233 PNG_EXTERN void png_build_gamma_table PNGARG((png_structp png_ptr,
1237 /* Maintainer: Put new private prototypes here ^ and in libpngpf.3 */
1240 #include "pngdebug.h"
1246 #endif /* PNGPRIV_H */