blob: abf3a2edca7aa5d5d86d66a28cf2519901d7c9c8 [file] [log] [blame]
Glenn Randers-Pehrsond60b8fa2006-04-20 21:31:14 -05001
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -05002/* pngpriv.h - private declarations for use inside libpng
Glenn Randers-Pehrsond60b8fa2006-04-20 21:31:14 -05003 *
Glenn Randers-Pehrsond60b8fa2006-04-20 21:31:14 -05004 * For conditions of distribution and use, see copyright notice in png.h
Glenn Randers-Pehrson64b863c2011-01-04 09:57:06 -06005 * Copyright (c) 1998-2011 Glenn Randers-Pehrson
Glenn Randers-Pehrsond60b8fa2006-04-20 21:31:14 -05006 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
7 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
Glenn Randers-Pehrson3e61d792009-06-24 09:31:28 -05008 *
Glenn Randers-Pehrson1345cbe2011-03-31 20:33:04 -05009 * Last changed in libpng 1.5.3 [(PENDING RELEASE)]
Glenn Randers-Pehrsonf5ea1b72011-01-06 06:42:51 -060010 *
Glenn Randers-Pehrsonbfbf8652009-06-26 21:46:52 -050011 * This code is released under the libpng license.
Glenn Randers-Pehrsonc332bbc2009-06-25 13:43:50 -050012 * For conditions of distribution and use, see the disclaimer
Glenn Randers-Pehrson037023b2009-06-24 10:27:36 -050013 * and license in png.h
Glenn Randers-Pehrsond60b8fa2006-04-20 21:31:14 -050014 */
15
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -050016/* 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.
23 */
24
25#ifndef PNGPRIV_H
26#define PNGPRIV_H
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -050027
Glenn Randers-Pehrsonb3b71682011-05-03 22:30:19 -050028/* Feature Test Macros. The following are defined here to ensure that correctly
29 * implemented libraries reveal the APIs libpng needs to build and hide those
30 * that are not needed and potentially damaging to the compilation.
31 *
32 * Feature Test Macros must be defined before any system header is included (see
33 * POSIX 1003.1 2.8.2 "POSIX Symbols."
34 *
35 * These macros only have an effect if the operating system supports either
36 * POSIX 1003.1 or C99, or both. On other operating systems (particularly
37 * Windows/Visual Studio) there is no effect; the OS specific tests below are
38 * still required (as of 2011-05-02.)
39 */
40#define _POSIX_SOURCE 1 /* Just the POSIX 1003.1 and C89 APIs */
Glenn Randers-Pehrsonb3b71682011-05-03 22:30:19 -050041
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -050042/* This is required for the definition of abort(), used as a last ditch
43 * error handler when all else fails.
44 */
45#include <stdlib.h>
46
Glenn Randers-Pehrsoneae8e362010-03-12 17:36:53 -060047#define PNGLIB_BUILD
Glenn Randers-Pehrsonaecef092010-04-17 18:03:02 -050048#ifdef PNG_USER_CONFIG
49# include "pngusr.h"
Glenn Randers-Pehrson4f108d82010-08-24 21:05:43 -050050 /* These should have been defined in pngusr.h */
51# ifndef PNG_USER_PRIVATEBUILD
52# define PNG_USER_PRIVATEBUILD "Custom libpng build"
53# endif
54# ifndef PNG_USER_DLLFNAME_POSTFIX
55# define PNG_USER_DLLFNAME_POSTFIX "Cb"
56# endif
Glenn Randers-Pehrsonaecef092010-04-17 18:03:02 -050057#endif
Glenn Randers-Pehrsonc3cd22b2010-03-08 21:10:25 -060058#include "png.h"
59#include "pnginfo.h"
60#include "pngstruct.h"
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -050061
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -050062/* This is used for 16 bit gamma tables - only the top level pointers are const,
63 * this could be changed:
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -050064 */
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -050065typedef PNG_CONST png_uint_16p FAR * png_const_uint_16pp;
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -050066
Glenn Randers-Pehrsondc6182a2010-03-09 16:45:06 -060067/* Added at libpng-1.2.9 */
68/* Moved to pngpriv.h at libpng-1.5.0 */
69
70/* config.h is created by and PNG_CONFIGURE_LIBPNG is set by the "configure"
Glenn Randers-Pehrson862cb202010-04-16 22:12:51 -050071 * script. We may need it here to get the correct configuration on things
72 * like limits.
Glenn Randers-Pehrsondc6182a2010-03-09 16:45:06 -060073 */
74#ifdef PNG_CONFIGURE_LIBPNG
75# ifdef HAVE_CONFIG_H
76# include "config.h"
77# endif
78#endif
79
Glenn Randers-Pehrson862cb202010-04-16 22:12:51 -050080/* Moved to pngpriv.h at libpng-1.5.0 */
Glenn Randers-Pehrson9f044c12010-12-07 14:59:43 -060081/* NOTE: some of these may have been used in external applications as
82 * these definitions were exposed in pngconf.h prior to 1.5.
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -050083 */
Glenn Randers-Pehrson9f044c12010-12-07 14:59:43 -060084
Glenn Randers-Pehrson862cb202010-04-16 22:12:51 -050085/* If you are running on a machine where you cannot allocate more
86 * than 64K of memory at once, uncomment this. While libpng will not
87 * normally need that much memory in a chunk (unless you load up a very
88 * large file), zlib needs to know how big of a chunk it can use, and
89 * libpng thus makes sure to check any memory allocation to verify it
90 * will fit into memory.
91 *
92 * zlib provides 'MAXSEG_64K' which, if defined, indicates the
93 * same limit and pngconf.h (already included) sets the limit
94 * if certain operating systems are detected.
95 */
96#if defined(MAXSEG_64K) && !defined(PNG_MAX_MALLOC_64K)
97# define PNG_MAX_MALLOC_64K
98#endif
99
Glenn Randers-Pehrsonf3dd1cc2011-03-18 22:02:20 -0500100#ifndef PNG_UNUSED
Glenn Randers-Pehrson25d2d472011-01-31 10:25:10 -0600101/* Unused formal parameter warnings are silenced using the following macro
102 * which is expected to have no bad effects on performance (optimizing
103 * compilers will probably remove it entirely). Note that if you replace
104 * it with something other than whitespace, you must include the terminating
105 * semicolon.
Glenn Randers-Pehrsond546f432010-12-04 20:41:36 -0600106 */
Glenn Randers-Pehrsonf3dd1cc2011-03-18 22:02:20 -0500107# define PNG_UNUSED(param) (void)param;
108#endif
Glenn Randers-Pehrsonbf3293a2011-01-28 15:14:43 -0600109
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500110/* Just a little check that someone hasn't tried to define something
111 * contradictory.
Glenn Randers-Pehrson862cb202010-04-16 22:12:51 -0500112 */
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500113#if (PNG_ZBUF_SIZE > 65536L) && defined(PNG_MAX_MALLOC_64K)
114# undef PNG_ZBUF_SIZE
115# define PNG_ZBUF_SIZE 65536L
Glenn Randers-Pehrson862cb202010-04-16 22:12:51 -0500116#endif
117
John Bowler88b77cc2011-05-05 06:49:55 -0500118/* If warnings or errors are turned off the code is disabled or redirected here.
119 * From 1.5.3 functions have been added to allow very limited formatting of
120 * error and warning messages - this code will also be disabled here.
Glenn Randers-Pehrsonaecef092010-04-17 18:03:02 -0500121 */
John Bowler88b77cc2011-05-05 06:49:55 -0500122#ifdef PNG_WARNINGS_SUPPORTED
123# define PNG_WARNING_PARAMETERS(p) png_warning_parameters p;
124#else
125# define png_warning(s1,s2) ((void)(s1))
126# define png_chunk_warning(s1,s2) ((void)(s1))
127# define png_warning_parameter(p,number,string) ((void)0)
128# define png_warning_parameter_unsigned(p,number,format,value) ((void)0)
129# define png_warning_parameter_signed(p,number,format,value) ((void)0)
130# define png_formatted_warning(pp,p,message) ((void)(pp))
131# define PNG_WARNING_PARAMETERS(p)
Glenn Randers-Pehrsonaecef092010-04-17 18:03:02 -0500132#endif
133#ifndef PNG_ERROR_TEXT_SUPPORTED
134# define png_error(s1,s2) png_err(s1)
135# define png_chunk_error(s1,s2) png_err(s1)
Glenn Randers-Pehrson48dc6eb2010-07-31 07:09:58 -0500136# define png_fixed_error(s1,s2) png_err(s1)
Glenn Randers-Pehrson862cb202010-04-16 22:12:51 -0500137#endif
138
Glenn Randers-Pehrson0ee51442010-07-12 06:29:17 -0500139#ifndef PNG_EXTERN
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500140/* The functions exported by PNG_EXTERN are internal functions, which
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500141 * aren't usually used outside the library (as far as I know), so it is
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500142 * debatable if they should be exported at all. In the future, when it
143 * is possible to have run-time registry of chunk-handling functions,
Glenn Randers-Pehrson9f044c12010-12-07 14:59:43 -0600144 * some of these might be made available again.
Glenn Randers-Pehrson0ee51442010-07-12 06:29:17 -0500145# define PNG_EXTERN extern
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500146 */
Glenn Randers-Pehrson0ee51442010-07-12 06:29:17 -0500147# define PNG_EXTERN
148#endif
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500149
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500150/* Some fixed point APIs are still required even if not exported because
151 * they get used by the corresponding floating point APIs. This magic
152 * deals with this:
153 */
154#ifdef PNG_FIXED_POINT_SUPPORTED
155# define PNGFAPI PNGAPI
156#else
157# define PNGFAPI /* PRIVATE */
158#endif
159
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500160/* Other defines specific to compilers can go here. Try to keep
161 * them inside an appropriate ifdef/endif pair for portability.
162 */
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500163#if defined(PNG_FLOATING_POINT_SUPPORTED) ||\
164 defined(PNG_FLOATING_ARITHMETIC_SUPPORTED)
Glenn Randers-Pehrson233357e2010-07-29 21:49:38 -0500165 /* png.c requires the following ANSI-C constants if the conversion of
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500166 * floating point to ASCII is implemented therein:
Glenn Randers-Pehrsonc36bb792011-02-12 09:49:07 -0600167 *
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500168 * DBL_DIG Maximum number of decimal digits (can be set to any constant)
Glenn Randers-Pehrson233357e2010-07-29 21:49:38 -0500169 * DBL_MIN Smallest normalized fp number (can be set to an arbitrary value)
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500170 * DBL_MAX Maximum floating point number (can be set to an arbitrary value)
171 */
172# include <float.h>
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500173
Glenn Randers-Pehrsond00bbb22010-03-14 09:15:49 -0500174# if (defined(__MWERKS__) && defined(macintosh)) || defined(applec) || \
175 defined(THINK_C) || defined(__SC__) || defined(TARGET_OS_MAC)
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500176 /* We need to check that <math.h> hasn't already been included earlier
177 * as it seems it doesn't agree with <fp.h>, yet we should really use
178 * <fp.h> if possible.
179 */
180# if !defined(__MATH_H__) && !defined(__MATH_H) && !defined(__cmath__)
181# include <fp.h>
182# endif
183# else
184# include <math.h>
185# endif
186# if defined(_AMIGA) && defined(__SASC) && defined(_M68881)
187 /* Amiga SAS/C: We must include builtin FPU functions when compiling using
188 * MATH=68881
189 */
190# include <m68881.h>
191# endif
192#endif
193
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500194/* This provides the non-ANSI (far) memory allocation routines. */
195#if defined(__TURBOC__) && defined(__MSDOS__)
196# include <mem.h>
197# include <alloc.h>
198#endif
199
200#if defined(WIN32) || defined(_Windows) || defined(_WINDOWS) || \
Glenn Randers-Pehrsonf74c5ac2009-09-20 07:27:34 -0500201 defined(_WIN32) || defined(__WIN32__)
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500202# include <windows.h> /* defines _WINDOWS_ macro */
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500203#endif
204
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500205/* Moved here around 1.5.0beta36 from pngconf.h */
206/* Users may want to use these so they are not private. Any library
207 * functions that are passed far data must be model-independent.
Glenn Randers-Pehrson862cb202010-04-16 22:12:51 -0500208 */
209
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500210/* Memory model/platform independent fns */
211#ifndef PNG_ABORT
212# ifdef _WINDOWS_
213# define PNG_ABORT() ExitProcess(0)
214# else
215# define PNG_ABORT() abort()
216# endif
Glenn Randers-Pehrson862cb202010-04-16 22:12:51 -0500217#endif
218
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500219#ifdef USE_FAR_KEYWORD
220/* Use this to make far-to-near assignments */
221# define CHECK 1
222# define NOCHECK 0
223# define CVT_PTR(ptr) (png_far_to_near(png_ptr,ptr,CHECK))
224# define CVT_PTR_NOCHECK(ptr) (png_far_to_near(png_ptr,ptr,NOCHECK))
225# define png_strcpy _fstrcpy
226# define png_strncpy _fstrncpy /* Added to v 1.2.6 */
227# define png_strlen _fstrlen
228# define png_memcmp _fmemcmp /* SJT: added */
229# define png_memcpy _fmemcpy
230# define png_memset _fmemset
231# define png_sprintf sprintf
232#else
233# ifdef _WINDOWS_ /* Favor Windows over C runtime fns */
234# define CVT_PTR(ptr) (ptr)
235# define CVT_PTR_NOCHECK(ptr) (ptr)
236# define png_strcpy lstrcpyA
237# define png_strncpy lstrcpynA
238# define png_strlen lstrlenA
239# define png_memcmp memcmp
240# define png_memcpy CopyMemory
241# define png_memset memset
242# define png_sprintf wsprintfA
243# else
244# define CVT_PTR(ptr) (ptr)
245# define CVT_PTR_NOCHECK(ptr) (ptr)
246# define png_strcpy strcpy
247# define png_strncpy strncpy /* Added to v 1.2.6 */
248# define png_strlen strlen
249# define png_memcmp memcmp /* SJT: added */
250# define png_memcpy memcpy
251# define png_memset memset
252# define png_sprintf sprintf
253# endif
254#endif
255/* End of memory model/platform independent support */
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500256/* End of 1.5.0beta36 move from pngconf.h */
257
258/* CONSTANTS and UTILITY MACROS
259 * These are used internally by libpng and not exposed in the API
Glenn Randers-Pehrson862cb202010-04-16 22:12:51 -0500260 */
Glenn Randers-Pehrson9f044c12010-12-07 14:59:43 -0600261
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500262/* Various modes of operation. Note that after an init, mode is set to
263 * zero automatically when the structure is created.
264 */
265#define PNG_HAVE_IHDR 0x01
266#define PNG_HAVE_PLTE 0x02
267#define PNG_HAVE_IDAT 0x04
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -0500268#define PNG_AFTER_IDAT 0x08 /* Have complete zlib datastream */
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500269#define PNG_HAVE_IEND 0x10
270#define PNG_HAVE_gAMA 0x20
271#define PNG_HAVE_cHRM 0x40
272#define PNG_HAVE_sRGB 0x80
273#define PNG_HAVE_CHUNK_HEADER 0x100
274#define PNG_WROTE_tIME 0x200
275#define PNG_WROTE_INFO_BEFORE_PLTE 0x400
276#define PNG_BACKGROUND_IS_GRAY 0x800
277#define PNG_HAVE_PNG_SIGNATURE 0x1000
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -0500278#define PNG_HAVE_CHUNK_AFTER_IDAT 0x2000 /* Have another chunk after IDAT */
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500279
Glenn Randers-Pehrson6c7a09a2009-06-15 21:57:39 -0500280/* Flags for the transformations the PNG library does on the image data */
Glenn Randers-Pehrson1916f6a2008-08-14 13:44:49 -0500281#define PNG_BGR 0x0001
282#define PNG_INTERLACE 0x0002
283#define PNG_PACK 0x0004
284#define PNG_SHIFT 0x0008
285#define PNG_SWAP_BYTES 0x0010
286#define PNG_INVERT_MONO 0x0020
Glenn Randers-Pehrson3cd7cff2010-04-16 19:27:08 -0500287#define PNG_QUANTIZE 0x0040
Glenn Randers-Pehrson1916f6a2008-08-14 13:44:49 -0500288#define PNG_BACKGROUND 0x0080
289#define PNG_BACKGROUND_EXPAND 0x0100
John Bowler4d562962011-02-12 09:01:20 -0600290#define PNG_EXPAND_16 0x0200 /* Added to libpng 1.5.2 */
Glenn Randers-Pehrson1916f6a2008-08-14 13:44:49 -0500291#define PNG_16_TO_8 0x0400
292#define PNG_RGBA 0x0800
293#define PNG_EXPAND 0x1000
294#define PNG_GAMMA 0x2000
295#define PNG_GRAY_TO_RGB 0x4000
296#define PNG_FILLER 0x8000L
297#define PNG_PACKSWAP 0x10000L
298#define PNG_SWAP_ALPHA 0x20000L
299#define PNG_STRIP_ALPHA 0x40000L
300#define PNG_INVERT_ALPHA 0x80000L
301#define PNG_USER_TRANSFORM 0x100000L
302#define PNG_RGB_TO_GRAY_ERR 0x200000L
303#define PNG_RGB_TO_GRAY_WARN 0x400000L
304#define PNG_RGB_TO_GRAY 0x600000L /* two bits, RGB_TO_GRAY_ERR|WARN */
305 /* 0x800000L Unused */
306#define PNG_ADD_ALPHA 0x1000000L /* Added to libpng-1.2.7 */
307#define PNG_EXPAND_tRNS 0x2000000L /* Added to libpng-1.2.9 */
Glenn Randers-Pehrson5876b852009-11-27 00:24:42 -0600308 /* 0x4000000L unused */
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500309 /* 0x8000000L unused */
310 /* 0x10000000L unused */
311 /* 0x20000000L unused */
312 /* 0x40000000L unused */
313
Glenn Randers-Pehrson6c7a09a2009-06-15 21:57:39 -0500314/* Flags for png_create_struct */
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500315#define PNG_STRUCT_PNG 0x0001
316#define PNG_STRUCT_INFO 0x0002
317
318/* Scaling factor for filter heuristic weighting calculations */
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500319#define PNG_WEIGHT_FACTOR (1<<(PNG_WEIGHT_SHIFT))
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500320#define PNG_COST_FACTOR (1<<(PNG_COST_SHIFT))
321
Glenn Randers-Pehrson6c7a09a2009-06-15 21:57:39 -0500322/* Flags for the png_ptr->flags rather than declaring a byte for each one */
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500323#define PNG_FLAG_ZLIB_CUSTOM_STRATEGY 0x0001
324#define PNG_FLAG_ZLIB_CUSTOM_LEVEL 0x0002
325#define PNG_FLAG_ZLIB_CUSTOM_MEM_LEVEL 0x0004
326#define PNG_FLAG_ZLIB_CUSTOM_WINDOW_BITS 0x0008
327#define PNG_FLAG_ZLIB_CUSTOM_METHOD 0x0010
328#define PNG_FLAG_ZLIB_FINISHED 0x0020
329#define PNG_FLAG_ROW_INIT 0x0040
330#define PNG_FLAG_FILLER_AFTER 0x0080
331#define PNG_FLAG_CRC_ANCILLARY_USE 0x0100
332#define PNG_FLAG_CRC_ANCILLARY_NOWARN 0x0200
333#define PNG_FLAG_CRC_CRITICAL_USE 0x0400
334#define PNG_FLAG_CRC_CRITICAL_IGNORE 0x0800
Glenn Randers-Pehrsonf74c5ac2009-09-20 07:27:34 -0500335 /* 0x1000 unused */
336 /* 0x2000 unused */
337 /* 0x4000 unused */
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500338#define PNG_FLAG_KEEP_UNKNOWN_CHUNKS 0x8000L
339#define PNG_FLAG_KEEP_UNSAFE_CHUNKS 0x10000L
340#define PNG_FLAG_LIBRARY_MISMATCH 0x20000L
341#define PNG_FLAG_STRIP_ERROR_NUMBERS 0x40000L
342#define PNG_FLAG_STRIP_ERROR_TEXT 0x80000L
343#define PNG_FLAG_MALLOC_NULL_MEM_OK 0x100000L
John Bowler9b872f42011-02-12 09:00:16 -0600344 /* 0x200000L unused */
345 /* 0x400000L unused */
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -0500346#define PNG_FLAG_BENIGN_ERRORS_WARN 0x800000L /* Added to libpng-1.4.0 */
Glenn Randers-Pehrson6b3d50b2011-03-31 20:14:29 -0500347#define PNG_FLAG_ZTXT_CUSTOM_STRATEGY 0x1000000L /* 5 lines added */
Glenn Randers-Pehrson1345cbe2011-03-31 20:33:04 -0500348#define PNG_FLAG_ZTXT_CUSTOM_LEVEL 0x2000000L /* to libpng-1.5.3 */
Glenn Randers-Pehrson6b3d50b2011-03-31 20:14:29 -0500349#define PNG_FLAG_ZTXT_CUSTOM_MEM_LEVEL 0x4000000L
350#define PNG_FLAG_ZTXT_CUSTOM_WINDOW_BITS 0x8000000L
351#define PNG_FLAG_ZTXT_CUSTOM_METHOD 0x10000000L
352 /* 0x20000000L unused */
353 /* 0x40000000L unused */
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500354
355#define PNG_FLAG_CRC_ANCILLARY_MASK (PNG_FLAG_CRC_ANCILLARY_USE | \
356 PNG_FLAG_CRC_ANCILLARY_NOWARN)
357
358#define PNG_FLAG_CRC_CRITICAL_MASK (PNG_FLAG_CRC_CRITICAL_USE | \
359 PNG_FLAG_CRC_CRITICAL_IGNORE)
360
361#define PNG_FLAG_CRC_MASK (PNG_FLAG_CRC_ANCILLARY_MASK | \
362 PNG_FLAG_CRC_CRITICAL_MASK)
363
Glenn Randers-Pehrsonbcb3aac2010-09-10 22:05:27 -0500364/* zlib.h declares a magic type 'uInt' that limits the amount of data that zlib
365 * can handle at once. This type need be no larger than 16 bits (so maximum of
366 * 65535), this define allows us to discover how big it is, but limited by the
367 * maximuum for png_size_t. The value can be overriden in a library build
368 * (pngusr.h, or set it in CPPFLAGS) and it works to set it to a considerably
369 * lower value (e.g. 255 works). A lower value may help memory usage (slightly)
370 * and may even improve performance on some systems (and degrade it on others.)
371 */
372#ifndef ZLIB_IO_MAX
373# define ZLIB_IO_MAX ((uInt)-1)
374#endif
375
Glenn Randers-Pehrson6c7a09a2009-06-15 21:57:39 -0500376/* Save typing and make code easier to understand */
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500377
378#define PNG_COLOR_DIST(c1, c2) (abs((int)((c1).red) - (int)((c2).red)) + \
379 abs((int)((c1).green) - (int)((c2).green)) + \
380 abs((int)((c1).blue) - (int)((c2).blue)))
381
382/* Added to libpng-1.2.6 JB */
383#define PNG_ROWBYTES(pixel_bits, width) \
384 ((pixel_bits) >= 8 ? \
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500385 ((png_size_t)(width) * (((png_size_t)(pixel_bits)) >> 3)) : \
386 (( ((png_size_t)(width) * ((png_size_t)(pixel_bits))) + 7) >> 3) )
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500387
388/* PNG_OUT_OF_RANGE returns true if value is outside the range
Glenn Randers-Pehrson9bf60832009-09-20 13:37:50 -0500389 * ideal-delta..ideal+delta. Each argument is evaluated twice.
390 * "ideal" and "delta" should be constants, normally simple
391 * integers, "value" a variable. Added to libpng-1.2.6 JB
392 */
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500393#define PNG_OUT_OF_RANGE(value, ideal, delta) \
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600394 ( (value) < (ideal)-(delta) || (value) > (ideal)+(delta) )
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500395
Glenn Randers-Pehrson363f96e2010-08-11 09:00:26 -0500396/* Conversions between fixed and floating point, only defined if
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500397 * required (to make sure the code doesn't accidentally use float
398 * when it is supposedly disabled.)
399 */
400#ifdef PNG_FLOATING_POINT_SUPPORTED
Glenn Randers-Pehrson233357e2010-07-29 21:49:38 -0500401/* The floating point conversion can't overflow, though it can and
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500402 * does lose accuracy relative to the original fixed point value.
403 * In practice this doesn't matter because png_fixed_point only
404 * stores numbers with very low precision. The png_ptr and s
405 * arguments are unused by default but are there in case error
406 * checking becomes a requirement.
407 */
408#define png_float(png_ptr, fixed, s) (.00001 * (fixed))
409
Glenn Randers-Pehrson233357e2010-07-29 21:49:38 -0500410/* The fixed point conversion performs range checking and evaluates
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500411 * its argument multiple times, so must be used with care. The
412 * range checking uses the PNG specification values for a signed
413 * 32 bit fixed point value except that the values are deliberately
Glenn Randers-Pehrson9f044c12010-12-07 14:59:43 -0600414 * rounded-to-zero to an integral value - 21474 (21474.83 is roughly
415 * (2^31-1) * 100000). 's' is a string that describes the value being
416 * converted.
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500417 *
418 * NOTE: this macro will raise a png_error if the range check fails,
419 * therefore it is normally only appropriate to use this on values
420 * that come from API calls or other sources where an out of range
421 * error indicates a programming error, not a data error!
422 *
423 * NOTE: by default this is off - the macro is not used - because the
424 * function call saves a lot of code.
425 */
426#ifdef PNG_FIXED_POINT_MACRO_SUPPORTED
427#define png_fixed(png_ptr, fp, s) ((fp) <= 21474 && (fp) >= -21474 ?\
Glenn Randers-Pehrson48dc6eb2010-07-31 07:09:58 -0500428 ((png_fixed_point)(100000 * (fp))) : (png_fixed_error(png_ptr, s),0))
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500429#else
430PNG_EXTERN png_fixed_point png_fixed PNGARG((png_structp png_ptr, double fp,
431 png_const_charp text));
432#endif
433#endif
434
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500435/* Constant strings for known chunk types. If you need to add a chunk,
Glenn Randers-Pehrson9bf60832009-09-20 13:37:50 -0500436 * define the name here, and add an invocation of the macro wherever it's
437 * needed.
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500438 */
Glenn Randers-Pehrson9bf60832009-09-20 13:37:50 -0500439#define PNG_IHDR PNG_CONST png_byte png_IHDR[5] = { 73, 72, 68, 82, '\0'}
440#define PNG_IDAT PNG_CONST png_byte png_IDAT[5] = { 73, 68, 65, 84, '\0'}
441#define PNG_IEND PNG_CONST png_byte png_IEND[5] = { 73, 69, 78, 68, '\0'}
442#define PNG_PLTE PNG_CONST png_byte png_PLTE[5] = { 80, 76, 84, 69, '\0'}
443#define PNG_bKGD PNG_CONST png_byte png_bKGD[5] = { 98, 75, 71, 68, '\0'}
444#define PNG_cHRM PNG_CONST png_byte png_cHRM[5] = { 99, 72, 82, 77, '\0'}
445#define PNG_gAMA PNG_CONST png_byte png_gAMA[5] = {103, 65, 77, 65, '\0'}
446#define PNG_hIST PNG_CONST png_byte png_hIST[5] = {104, 73, 83, 84, '\0'}
447#define PNG_iCCP PNG_CONST png_byte png_iCCP[5] = {105, 67, 67, 80, '\0'}
448#define PNG_iTXt PNG_CONST png_byte png_iTXt[5] = {105, 84, 88, 116, '\0'}
449#define PNG_oFFs PNG_CONST png_byte png_oFFs[5] = {111, 70, 70, 115, '\0'}
450#define PNG_pCAL PNG_CONST png_byte png_pCAL[5] = {112, 67, 65, 76, '\0'}
451#define PNG_sCAL PNG_CONST png_byte png_sCAL[5] = {115, 67, 65, 76, '\0'}
452#define PNG_pHYs PNG_CONST png_byte png_pHYs[5] = {112, 72, 89, 115, '\0'}
453#define PNG_sBIT PNG_CONST png_byte png_sBIT[5] = {115, 66, 73, 84, '\0'}
454#define PNG_sPLT PNG_CONST png_byte png_sPLT[5] = {115, 80, 76, 84, '\0'}
455#define PNG_sRGB PNG_CONST png_byte png_sRGB[5] = {115, 82, 71, 66, '\0'}
456#define PNG_sTER PNG_CONST png_byte png_sTER[5] = {115, 84, 69, 82, '\0'}
457#define PNG_tEXt PNG_CONST png_byte png_tEXt[5] = {116, 69, 88, 116, '\0'}
458#define PNG_tIME PNG_CONST png_byte png_tIME[5] = {116, 73, 77, 69, '\0'}
459#define PNG_tRNS PNG_CONST png_byte png_tRNS[5] = {116, 82, 78, 83, '\0'}
460#define PNG_zTXt PNG_CONST png_byte png_zTXt[5] = {122, 84, 88, 116, '\0'}
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500461
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500462
463/* Inhibit C++ name-mangling for libpng functions but not for system calls. */
464#ifdef __cplusplus
465extern "C" {
466#endif /* __cplusplus */
467
468/* These functions are used internally in the code. They generally
469 * shouldn't be used unless you are writing code to add or replace some
470 * functionality in libpng. More information about most functions can
471 * be found in the files where the functions are located.
472 */
473
John Bowler88b77cc2011-05-05 06:49:55 -0500474/* Check the user version string for compatibility, returns false if the version
475 * numbers aren't compatible.
476 */
477PNG_EXTERN int png_user_version_check(png_structp png_ptr,
478 png_const_charp user_png_ver);
479
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500480/* Allocate memory for an internal libpng struct */
Glenn Randers-Pehrson77396b62010-08-02 08:00:10 -0500481PNG_EXTERN PNG_FUNCTION(png_voidp,png_create_struct,PNGARG((int type)),
482 PNG_ALLOCATED);
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500483
484/* Free memory from internal libpng struct */
485PNG_EXTERN void png_destroy_struct PNGARG((png_voidp struct_ptr));
486
Glenn Randers-Pehrson77396b62010-08-02 08:00:10 -0500487PNG_EXTERN PNG_FUNCTION(png_voidp,png_create_struct_2,
488 PNGARG((int type, png_malloc_ptr malloc_fn, png_voidp mem_ptr)),
489 PNG_ALLOCATED);
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500490PNG_EXTERN void png_destroy_struct_2 PNGARG((png_voidp struct_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600491 png_free_ptr free_fn, png_voidp mem_ptr));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500492
493/* Free any memory that info_ptr points to and reset struct. */
494PNG_EXTERN void png_info_destroy PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600495 png_infop info_ptr));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500496
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500497/* Function to allocate memory for zlib. PNGAPI is disallowed. */
Glenn Randers-Pehrson77396b62010-08-02 08:00:10 -0500498PNG_EXTERN PNG_FUNCTION(voidpf,png_zalloc,PNGARG((voidpf png_ptr, uInt items,
499 uInt size)),PNG_ALLOCATED);
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500500
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500501/* Function to free memory for zlib. PNGAPI is disallowed. */
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500502PNG_EXTERN void png_zfree PNGARG((voidpf png_ptr, voidpf ptr));
503
Glenn Randers-Pehrsoneae8e362010-03-12 17:36:53 -0600504/* Next four functions are used internally as callbacks. PNGCBAPI is required
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500505 * but not PNG_EXPORT. PNGAPI added at libpng version 1.2.3, changed to
506 * PNGCBAPI at 1.5.0
Glenn Randers-Pehrsoneae8e362010-03-12 17:36:53 -0600507 */
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500508
Glenn Randers-Pehrsoneae8e362010-03-12 17:36:53 -0600509PNG_EXTERN void PNGCBAPI png_default_read_data PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600510 png_bytep data, png_size_t length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500511
512#ifdef PNG_PROGRESSIVE_READ_SUPPORTED
Glenn Randers-Pehrsoneae8e362010-03-12 17:36:53 -0600513PNG_EXTERN void PNGCBAPI png_push_fill_buffer PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600514 png_bytep buffer, png_size_t length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500515#endif
516
Glenn Randers-Pehrsoneae8e362010-03-12 17:36:53 -0600517PNG_EXTERN void PNGCBAPI png_default_write_data PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600518 png_bytep data, png_size_t length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500519
Glenn Randers-Pehrsondbd40142009-08-31 08:42:02 -0500520#ifdef PNG_WRITE_FLUSH_SUPPORTED
Glenn Randers-Pehrsond4df36c2010-03-06 10:45:55 -0600521# ifdef PNG_STDIO_SUPPORTED
Glenn Randers-Pehrsoneae8e362010-03-12 17:36:53 -0600522PNG_EXTERN void PNGCBAPI png_default_flush PNGARG((png_structp png_ptr));
Glenn Randers-Pehrsond4df36c2010-03-06 10:45:55 -0600523# endif
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500524#endif
525
526/* Reset the CRC variable */
527PNG_EXTERN void png_reset_crc PNGARG((png_structp png_ptr));
528
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500529/* Write the "data" buffer to whatever output you are using */
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500530PNG_EXTERN void png_write_data PNGARG((png_structp png_ptr,
531 png_const_bytep data, png_size_t length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500532
Glenn Randers-Pehrsona5815562010-11-20 21:48:29 -0600533/* Read and check the PNG file signature */
534PNG_EXTERN void png_read_sig PNGARG((png_structp png_ptr, png_infop info_ptr));
535
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500536/* Read the chunk header (length + type name) */
537PNG_EXTERN png_uint_32 png_read_chunk_header PNGARG((png_structp png_ptr));
538
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500539/* Read data from whatever input you are using into the "data" buffer */
540PNG_EXTERN void png_read_data PNGARG((png_structp png_ptr, png_bytep data,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600541 png_size_t length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500542
543/* Read bytes into buf, and update png_ptr->crc */
544PNG_EXTERN void png_crc_read PNGARG((png_structp png_ptr, png_bytep buf,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600545 png_size_t length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500546
547/* Decompress data in a chunk that uses compression */
Glenn Randers-Pehrson8abcf142011-04-03 06:22:02 -0500548#if defined(PNG_READ_COMPRESSED_TEXT_SUPPORTED)
Glenn Randers-Pehrson895a9c92008-07-25 08:51:18 -0500549PNG_EXTERN void png_decompress_chunk PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600550 int comp_type, png_size_t chunklength, png_size_t prefix_length,
551 png_size_t *data_length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500552#endif
553
554/* Read "skip" bytes, read the file crc, and (optionally) verify png_ptr->crc */
555PNG_EXTERN int png_crc_finish PNGARG((png_structp png_ptr, png_uint_32 skip));
556
557/* Read the CRC from the file and compare it to the libpng calculated CRC */
558PNG_EXTERN int png_crc_error PNGARG((png_structp png_ptr));
559
560/* Calculate the CRC over a section of data. Note that we are only
561 * passing a maximum of 64K on systems that have this as a memory limit,
562 * since this is the maximum buffer size we can specify.
563 */
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500564PNG_EXTERN void png_calculate_crc PNGARG((png_structp png_ptr,
565 png_const_bytep ptr, png_size_t length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500566
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500567#ifdef PNG_WRITE_FLUSH_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500568PNG_EXTERN void png_flush PNGARG((png_structp png_ptr));
569#endif
570
Glenn Randers-Pehrson6c7a09a2009-06-15 21:57:39 -0500571/* Write various chunks */
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500572
573/* Write the IHDR chunk, and update the png_struct with the necessary
574 * information.
575 */
576PNG_EXTERN void png_write_IHDR PNGARG((png_structp png_ptr, png_uint_32 width,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600577 png_uint_32 height,
578 int bit_depth, int color_type, int compression_method, int filter_method,
579 int interlace_method));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500580
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500581PNG_EXTERN void png_write_PLTE PNGARG((png_structp png_ptr,
582 png_const_colorp palette, png_uint_32 num_pal));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500583
584PNG_EXTERN void png_write_IDAT PNGARG((png_structp png_ptr, png_bytep data,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600585 png_size_t length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500586
587PNG_EXTERN void png_write_IEND PNGARG((png_structp png_ptr));
588
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500589#ifdef PNG_WRITE_gAMA_SUPPORTED
Glenn Randers-Pehrsond4df36c2010-03-06 10:45:55 -0600590# ifdef PNG_FLOATING_POINT_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500591PNG_EXTERN void png_write_gAMA PNGARG((png_structp png_ptr, double file_gamma));
Glenn Randers-Pehrsond4df36c2010-03-06 10:45:55 -0600592# endif
593# ifdef PNG_FIXED_POINT_SUPPORTED
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600594PNG_EXTERN void png_write_gAMA_fixed PNGARG((png_structp png_ptr,
595 png_fixed_point file_gamma));
Glenn Randers-Pehrsond4df36c2010-03-06 10:45:55 -0600596# endif
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500597#endif
598
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500599#ifdef PNG_WRITE_sBIT_SUPPORTED
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500600PNG_EXTERN void png_write_sBIT PNGARG((png_structp png_ptr,
601 png_const_color_8p sbit, int color_type));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500602#endif
603
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500604#ifdef PNG_WRITE_cHRM_SUPPORTED
Glenn Randers-Pehrsond4df36c2010-03-06 10:45:55 -0600605# ifdef PNG_FLOATING_POINT_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500606PNG_EXTERN void png_write_cHRM PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600607 double white_x, double white_y,
608 double red_x, double red_y, double green_x, double green_y,
609 double blue_x, double blue_y));
Glenn Randers-Pehrsond4df36c2010-03-06 10:45:55 -0600610# endif
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500611PNG_EXTERN void png_write_cHRM_fixed PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600612 png_fixed_point int_white_x, png_fixed_point int_white_y,
613 png_fixed_point int_red_x, png_fixed_point int_red_y, png_fixed_point
614 int_green_x, png_fixed_point int_green_y, png_fixed_point int_blue_x,
615 png_fixed_point int_blue_y));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500616#endif
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500617
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500618#ifdef PNG_WRITE_sRGB_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500619PNG_EXTERN void png_write_sRGB PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600620 int intent));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500621#endif
622
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500623#ifdef PNG_WRITE_iCCP_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500624PNG_EXTERN void png_write_iCCP PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500625 png_const_charp name, int compression_type,
626 png_const_charp profile, int proflen));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500627 /* Note to maintainer: profile should be png_bytep */
628#endif
629
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500630#ifdef PNG_WRITE_sPLT_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500631PNG_EXTERN void png_write_sPLT PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500632 png_const_sPLT_tp palette));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500633#endif
634
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500635#ifdef PNG_WRITE_tRNS_SUPPORTED
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500636PNG_EXTERN void png_write_tRNS PNGARG((png_structp png_ptr,
637 png_const_bytep trans, png_const_color_16p values, int number,
638 int color_type));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500639#endif
640
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500641#ifdef PNG_WRITE_bKGD_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500642PNG_EXTERN void png_write_bKGD PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500643 png_const_color_16p values, int color_type));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500644#endif
645
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500646#ifdef PNG_WRITE_hIST_SUPPORTED
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500647PNG_EXTERN void png_write_hIST PNGARG((png_structp png_ptr,
648 png_const_uint_16p hist, int num_hist));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500649#endif
650
Glenn Randers-Pehrson205483d2011-04-01 12:33:42 -0500651/* Chunks that have keywords */
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500652#if defined(PNG_WRITE_TEXT_SUPPORTED) || defined(PNG_WRITE_pCAL_SUPPORTED) || \
653 defined(PNG_WRITE_iCCP_SUPPORTED) || defined(PNG_WRITE_sPLT_SUPPORTED)
654PNG_EXTERN png_size_t png_check_keyword PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500655 png_const_charp key, png_charpp new_key));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500656#endif
657
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500658#ifdef PNG_WRITE_tEXt_SUPPORTED
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500659PNG_EXTERN void png_write_tEXt PNGARG((png_structp png_ptr, png_const_charp key,
660 png_const_charp text, png_size_t text_len));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500661#endif
662
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500663#ifdef PNG_WRITE_zTXt_SUPPORTED
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500664PNG_EXTERN void png_write_zTXt PNGARG((png_structp png_ptr, png_const_charp key,
665 png_const_charp text, png_size_t text_len, int compression));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500666#endif
667
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500668#ifdef PNG_WRITE_iTXt_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500669PNG_EXTERN void png_write_iTXt PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500670 int compression, png_const_charp key, png_const_charp lang,
671 png_const_charp lang_key, png_const_charp text));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500672#endif
673
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500674#ifdef PNG_TEXT_SUPPORTED /* Added at version 1.0.14 and 1.2.4 */
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500675PNG_EXTERN int png_set_text_2 PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500676 png_infop info_ptr, png_const_textp text_ptr, int num_text));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500677#endif
678
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500679#ifdef PNG_WRITE_oFFs_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500680PNG_EXTERN void png_write_oFFs PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600681 png_int_32 x_offset, png_int_32 y_offset, int unit_type));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500682#endif
683
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500684#ifdef PNG_WRITE_pCAL_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500685PNG_EXTERN void png_write_pCAL PNGARG((png_structp png_ptr, png_charp purpose,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600686 png_int_32 X0, png_int_32 X1, int type, int nparams,
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500687 png_const_charp units, png_charpp params));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500688#endif
689
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500690#ifdef PNG_WRITE_pHYs_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500691PNG_EXTERN void png_write_pHYs PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600692 png_uint_32 x_pixels_per_unit, png_uint_32 y_pixels_per_unit,
693 int unit_type));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500694#endif
695
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500696#ifdef PNG_WRITE_tIME_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500697PNG_EXTERN void png_write_tIME PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500698 png_const_timep mod_time));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500699#endif
700
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500701#ifdef PNG_WRITE_sCAL_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500702PNG_EXTERN void png_write_sCAL_s PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500703 int unit, png_const_charp width, png_const_charp height));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500704#endif
705
706/* Called when finished processing a row of data */
707PNG_EXTERN void png_write_finish_row PNGARG((png_structp png_ptr));
708
709/* Internal use only. Called before first row of data */
710PNG_EXTERN void png_write_start_row PNGARG((png_structp png_ptr));
711
Glenn Randers-Pehrson6c7a09a2009-06-15 21:57:39 -0500712/* Combine a row of data, dealing with alpha, etc. if requested */
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500713PNG_EXTERN void png_combine_row PNGARG((png_structp png_ptr, png_bytep row,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600714 int mask));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500715
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500716#ifdef PNG_READ_INTERLACING_SUPPORTED
Glenn Randers-Pehrson6c7a09a2009-06-15 21:57:39 -0500717/* Expand an interlaced row */
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500718/* OLD pre-1.0.9 interface:
719PNG_EXTERN void png_do_read_interlace PNGARG((png_row_infop row_info,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600720 png_bytep row, int pass, png_uint_32 transformations));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500721 */
722PNG_EXTERN void png_do_read_interlace PNGARG((png_structp png_ptr));
723#endif
724
725/* GRR TO DO (2.0 or whenever): simplify other internal calling interfaces */
726
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500727#ifdef PNG_WRITE_INTERLACING_SUPPORTED
Glenn Randers-Pehrson6c7a09a2009-06-15 21:57:39 -0500728/* Grab pixels out of a row for an interlaced pass */
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500729PNG_EXTERN void png_do_write_interlace PNGARG((png_row_infop row_info,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600730 png_bytep row, int pass));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500731#endif
732
Glenn Randers-Pehrson6c7a09a2009-06-15 21:57:39 -0500733/* Unfilter a row */
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500734PNG_EXTERN void png_read_filter_row PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500735 png_row_infop row_info, png_bytep row, png_const_bytep prev_row,
736 int filter));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500737
738/* Choose the best filter to use and filter the row data */
739PNG_EXTERN void png_write_find_filter PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600740 png_row_infop row_info));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500741
Glenn Randers-Pehrson6c7a09a2009-06-15 21:57:39 -0500742/* Finish a row while reading, dealing with interlacing passes, etc. */
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500743PNG_EXTERN void png_read_finish_row PNGARG((png_structp png_ptr));
744
Glenn Randers-Pehrson6c7a09a2009-06-15 21:57:39 -0500745/* Initialize the row buffers, etc. */
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500746PNG_EXTERN void png_read_start_row PNGARG((png_structp png_ptr));
John Bowler4a12f4a2011-04-17 18:34:22 -0500747
748#ifdef PNG_READ_TRANSFORMS_SUPPORTED
Glenn Randers-Pehrson6c7a09a2009-06-15 21:57:39 -0500749/* Optional call to update the users info structure */
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500750PNG_EXTERN void png_read_transform_info PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600751 png_infop info_ptr));
John Bowler4a12f4a2011-04-17 18:34:22 -0500752#endif
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500753
Glenn Randers-Pehrson6c7a09a2009-06-15 21:57:39 -0500754/* These are the functions that do the transformations */
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500755#ifdef PNG_READ_FILLER_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500756PNG_EXTERN void png_do_read_filler PNGARG((png_row_infop row_info,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600757 png_bytep row, png_uint_32 filler, png_uint_32 flags));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500758#endif
759
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500760#ifdef PNG_READ_SWAP_ALPHA_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500761PNG_EXTERN void png_do_read_swap_alpha PNGARG((png_row_infop row_info,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600762 png_bytep row));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500763#endif
764
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500765#ifdef PNG_WRITE_SWAP_ALPHA_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500766PNG_EXTERN void png_do_write_swap_alpha PNGARG((png_row_infop row_info,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600767 png_bytep row));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500768#endif
769
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500770#ifdef PNG_READ_INVERT_ALPHA_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500771PNG_EXTERN void png_do_read_invert_alpha PNGARG((png_row_infop row_info,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600772 png_bytep row));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500773#endif
774
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500775#ifdef PNG_WRITE_INVERT_ALPHA_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500776PNG_EXTERN void png_do_write_invert_alpha PNGARG((png_row_infop row_info,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600777 png_bytep row));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500778#endif
779
780#if defined(PNG_WRITE_FILLER_SUPPORTED) || \
781 defined(PNG_READ_STRIP_ALPHA_SUPPORTED)
John Bowler9b872f42011-02-12 09:00:16 -0600782PNG_EXTERN void png_do_strip_channel PNGARG((png_row_infop row_info,
783 png_bytep row, int at_start));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500784#endif
785
Glenn Randers-Pehrson39515c92010-08-28 06:21:35 -0500786#ifdef PNG_16BIT_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500787#if defined(PNG_READ_SWAP_SUPPORTED) || defined(PNG_WRITE_SWAP_SUPPORTED)
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500788PNG_EXTERN void png_do_swap PNGARG((png_row_infop row_info,
789 png_bytep row));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500790#endif
Glenn Randers-Pehrson39515c92010-08-28 06:21:35 -0500791#endif
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500792
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600793#if defined(PNG_READ_PACKSWAP_SUPPORTED) || \
794 defined(PNG_WRITE_PACKSWAP_SUPPORTED)
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500795PNG_EXTERN void png_do_packswap PNGARG((png_row_infop row_info,
796 png_bytep row));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500797#endif
798
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500799#ifdef PNG_READ_RGB_TO_GRAY_SUPPORTED
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500800PNG_EXTERN int png_do_rgb_to_gray PNGARG((png_structp png_ptr,
801 png_row_infop row_info, png_bytep row));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500802#endif
803
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500804#ifdef PNG_READ_GRAY_TO_RGB_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500805PNG_EXTERN void png_do_gray_to_rgb PNGARG((png_row_infop row_info,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600806 png_bytep row));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500807#endif
808
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500809#ifdef PNG_READ_PACK_SUPPORTED
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500810PNG_EXTERN void png_do_unpack PNGARG((png_row_infop row_info,
811 png_bytep row));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500812#endif
813
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500814#ifdef PNG_READ_SHIFT_SUPPORTED
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500815PNG_EXTERN void png_do_unshift PNGARG((png_row_infop row_info,
816 png_bytep row, png_const_color_8p sig_bits));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500817#endif
818
819#if defined(PNG_READ_INVERT_SUPPORTED) || defined(PNG_WRITE_INVERT_SUPPORTED)
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500820PNG_EXTERN void png_do_invert PNGARG((png_row_infop row_info,
821 png_bytep row));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500822#endif
823
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500824#ifdef PNG_READ_16_TO_8_SUPPORTED
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500825PNG_EXTERN void png_do_chop PNGARG((png_row_infop row_info,
826 png_bytep row));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500827#endif
828
Glenn Randers-Pehrson3cd7cff2010-04-16 19:27:08 -0500829#ifdef PNG_READ_QUANTIZE_SUPPORTED
830PNG_EXTERN void png_do_quantize PNGARG((png_row_infop row_info,
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500831 png_bytep row, png_const_bytep palette_lookup,
832 png_const_bytep quantize_lookup));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500833
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500834# ifdef PNG_CORRECT_PALETTE_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500835PNG_EXTERN void png_correct_palette PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600836 png_colorp palette, int num_palette));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500837# endif
838#endif
839
840#if defined(PNG_READ_BGR_SUPPORTED) || defined(PNG_WRITE_BGR_SUPPORTED)
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500841PNG_EXTERN void png_do_bgr PNGARG((png_row_infop row_info,
842 png_bytep row));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500843#endif
844
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500845#ifdef PNG_WRITE_PACK_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500846PNG_EXTERN void png_do_pack PNGARG((png_row_infop row_info,
847 png_bytep row, png_uint_32 bit_depth));
848#endif
849
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500850#ifdef PNG_WRITE_SHIFT_SUPPORTED
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500851PNG_EXTERN void png_do_shift PNGARG((png_row_infop row_info,
852 png_bytep row, png_const_color_8p bit_depth));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500853#endif
854
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500855#ifdef PNG_READ_BACKGROUND_SUPPORTED
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500856PNG_EXTERN void png_do_background PNGARG((png_row_infop row_info,
John Bowler4a12f4a2011-04-17 18:34:22 -0500857 png_bytep row, png_structp png_ptr));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500858#endif
859
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500860#ifdef PNG_READ_GAMMA_SUPPORTED
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500861PNG_EXTERN void png_do_gamma PNGARG((png_row_infop row_info,
John Bowler4a12f4a2011-04-17 18:34:22 -0500862 png_bytep row, png_structp png_ptr));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500863#endif
864
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500865#ifdef PNG_READ_EXPAND_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500866PNG_EXTERN void png_do_expand_palette PNGARG((png_row_infop row_info,
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500867 png_bytep row, png_const_colorp palette, png_const_bytep trans,
868 int num_trans));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500869PNG_EXTERN void png_do_expand PNGARG((png_row_infop row_info,
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500870 png_bytep row, png_const_color_16p trans_color));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500871#endif
872
John Bowler4d562962011-02-12 09:01:20 -0600873#ifdef PNG_READ_EXPAND_16_SUPPORTED
874PNG_EXTERN void png_do_expand_16 PNGARG((png_row_infop row_info,
875 png_bytep row));
876#endif
877
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500878/* The following decodes the appropriate chunks, and does error correction,
879 * then calls the appropriate callback for the chunk if it is valid.
880 */
881
Glenn Randers-Pehrson6c7a09a2009-06-15 21:57:39 -0500882/* Decode the IHDR chunk */
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500883PNG_EXTERN void png_handle_IHDR PNGARG((png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600884 png_uint_32 length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500885PNG_EXTERN void png_handle_PLTE PNGARG((png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600886 png_uint_32 length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500887PNG_EXTERN void png_handle_IEND PNGARG((png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600888 png_uint_32 length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500889
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500890#ifdef PNG_READ_bKGD_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500891PNG_EXTERN void png_handle_bKGD PNGARG((png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600892 png_uint_32 length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500893#endif
894
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500895#ifdef PNG_READ_cHRM_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500896PNG_EXTERN void png_handle_cHRM PNGARG((png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600897 png_uint_32 length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500898#endif
899
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500900#ifdef PNG_READ_gAMA_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500901PNG_EXTERN void png_handle_gAMA PNGARG((png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600902 png_uint_32 length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500903#endif
904
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500905#ifdef PNG_READ_hIST_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500906PNG_EXTERN void png_handle_hIST PNGARG((png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600907 png_uint_32 length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500908#endif
909
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500910#ifdef PNG_READ_iCCP_SUPPORTED
Glenn Randers-Pehrsonaa4e3592010-07-06 07:40:47 -0500911PNG_EXTERN void png_handle_iCCP PNGARG((png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600912 png_uint_32 length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500913#endif /* PNG_READ_iCCP_SUPPORTED */
914
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500915#ifdef PNG_READ_iTXt_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500916PNG_EXTERN void png_handle_iTXt PNGARG((png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600917 png_uint_32 length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500918#endif
919
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500920#ifdef PNG_READ_oFFs_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500921PNG_EXTERN void png_handle_oFFs PNGARG((png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600922 png_uint_32 length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500923#endif
924
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500925#ifdef PNG_READ_pCAL_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500926PNG_EXTERN void png_handle_pCAL PNGARG((png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600927 png_uint_32 length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500928#endif
929
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500930#ifdef PNG_READ_pHYs_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500931PNG_EXTERN void png_handle_pHYs PNGARG((png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600932 png_uint_32 length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500933#endif
934
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500935#ifdef PNG_READ_sBIT_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500936PNG_EXTERN void png_handle_sBIT PNGARG((png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600937 png_uint_32 length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500938#endif
939
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500940#ifdef PNG_READ_sCAL_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500941PNG_EXTERN void png_handle_sCAL PNGARG((png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600942 png_uint_32 length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500943#endif
944
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500945#ifdef PNG_READ_sPLT_SUPPORTED
Glenn Randers-Pehrsonaa4e3592010-07-06 07:40:47 -0500946PNG_EXTERN void png_handle_sPLT PNGARG((png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600947 png_uint_32 length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500948#endif /* PNG_READ_sPLT_SUPPORTED */
949
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500950#ifdef PNG_READ_sRGB_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500951PNG_EXTERN void png_handle_sRGB PNGARG((png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600952 png_uint_32 length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500953#endif
954
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500955#ifdef PNG_READ_tEXt_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500956PNG_EXTERN void png_handle_tEXt PNGARG((png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600957 png_uint_32 length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500958#endif
959
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500960#ifdef PNG_READ_tIME_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500961PNG_EXTERN void png_handle_tIME PNGARG((png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600962 png_uint_32 length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500963#endif
964
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500965#ifdef PNG_READ_tRNS_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500966PNG_EXTERN void png_handle_tRNS PNGARG((png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600967 png_uint_32 length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500968#endif
969
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500970#ifdef PNG_READ_zTXt_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500971PNG_EXTERN void png_handle_zTXt PNGARG((png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600972 png_uint_32 length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500973#endif
974
975PNG_EXTERN void png_handle_unknown PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600976 png_infop info_ptr, png_uint_32 length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500977
978PNG_EXTERN void png_check_chunk_name PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500979 png_const_bytep chunk_name));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500980
Glenn Randers-Pehrson6c7a09a2009-06-15 21:57:39 -0500981/* Handle the transformations for reading and writing */
John Bowler4a12f4a2011-04-17 18:34:22 -0500982#ifdef PNG_READ_TRANSFORMS_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500983PNG_EXTERN void png_do_read_transformations PNGARG((png_structp png_ptr));
John Bowler4a12f4a2011-04-17 18:34:22 -0500984#endif
985#ifdef PNG_WRITE_TRANSFORMS_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500986PNG_EXTERN void png_do_write_transformations PNGARG((png_structp png_ptr));
John Bowler4a12f4a2011-04-17 18:34:22 -0500987#endif
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500988
John Bowler4a12f4a2011-04-17 18:34:22 -0500989#ifdef PNG_READ_TRANSFORMS_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500990PNG_EXTERN void png_init_read_transformations PNGARG((png_structp png_ptr));
John Bowler4a12f4a2011-04-17 18:34:22 -0500991#endif
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500992
993#ifdef PNG_PROGRESSIVE_READ_SUPPORTED
994PNG_EXTERN void png_push_read_chunk PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600995 png_infop info_ptr));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500996PNG_EXTERN void png_push_read_sig PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600997 png_infop info_ptr));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500998PNG_EXTERN void png_push_check_crc PNGARG((png_structp png_ptr));
999PNG_EXTERN void png_push_crc_skip PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -06001000 png_uint_32 length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001001PNG_EXTERN void png_push_crc_finish PNGARG((png_structp png_ptr));
1002PNG_EXTERN void png_push_save_buffer PNGARG((png_structp png_ptr));
1003PNG_EXTERN void png_push_restore_buffer PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -06001004 png_bytep buffer, png_size_t buffer_length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001005PNG_EXTERN void png_push_read_IDAT PNGARG((png_structp png_ptr));
1006PNG_EXTERN void png_process_IDAT_data PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -06001007 png_bytep buffer, png_size_t buffer_length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001008PNG_EXTERN void png_push_process_row PNGARG((png_structp png_ptr));
1009PNG_EXTERN void png_push_handle_unknown PNGARG((png_structp png_ptr,
1010 png_infop info_ptr, png_uint_32 length));
1011PNG_EXTERN void png_push_have_info PNGARG((png_structp png_ptr,
1012 png_infop info_ptr));
1013PNG_EXTERN void png_push_have_end PNGARG((png_structp png_ptr,
1014 png_infop info_ptr));
1015PNG_EXTERN void png_push_have_row PNGARG((png_structp png_ptr, png_bytep row));
1016PNG_EXTERN void png_push_read_end PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -06001017 png_infop info_ptr));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001018PNG_EXTERN void png_process_some_data PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -06001019 png_infop info_ptr));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001020PNG_EXTERN void png_read_push_finish_row PNGARG((png_structp png_ptr));
Glenn Randers-Pehrsond4df36c2010-03-06 10:45:55 -06001021# ifdef PNG_READ_tEXt_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001022PNG_EXTERN void png_push_handle_tEXt PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -06001023 png_infop info_ptr, png_uint_32 length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001024PNG_EXTERN void png_push_read_tEXt PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -06001025 png_infop info_ptr));
Glenn Randers-Pehrsond4df36c2010-03-06 10:45:55 -06001026# endif
1027# ifdef PNG_READ_zTXt_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001028PNG_EXTERN void png_push_handle_zTXt PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -06001029 png_infop info_ptr, png_uint_32 length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001030PNG_EXTERN void png_push_read_zTXt PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -06001031 png_infop info_ptr));
Glenn Randers-Pehrsond4df36c2010-03-06 10:45:55 -06001032# endif
1033# ifdef PNG_READ_iTXt_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001034PNG_EXTERN void png_push_handle_iTXt PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -06001035 png_infop info_ptr, png_uint_32 length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001036PNG_EXTERN void png_push_read_iTXt PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -06001037 png_infop info_ptr));
Glenn Randers-Pehrsond4df36c2010-03-06 10:45:55 -06001038# endif
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001039
1040#endif /* PNG_PROGRESSIVE_READ_SUPPORTED */
1041
1042#ifdef PNG_MNG_FEATURES_SUPPORTED
1043PNG_EXTERN void png_do_read_intrapixel PNGARG((png_row_infop row_info,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -06001044 png_bytep row));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001045PNG_EXTERN void png_do_write_intrapixel PNGARG((png_row_infop row_info,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -06001046 png_bytep row));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001047#endif
1048
Glenn Randers-Pehrsonf7831012008-11-13 06:05:13 -06001049/* Added at libpng version 1.4.0 */
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -05001050#ifdef PNG_CHECK_cHRM_SUPPORTED
Glenn Randers-Pehrson134bbe42009-09-24 18:10:49 -05001051PNG_EXTERN int png_check_cHRM_fixed PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -06001052 png_fixed_point int_white_x, png_fixed_point int_white_y,
1053 png_fixed_point int_red_x, png_fixed_point int_red_y, png_fixed_point
1054 int_green_x, png_fixed_point int_green_y, png_fixed_point int_blue_x,
1055 png_fixed_point int_blue_y));
Glenn Randers-Pehrsonf7831012008-11-13 06:05:13 -06001056#endif
Glenn Randers-Pehrsonf7831012008-11-13 06:05:13 -06001057
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -05001058#ifdef PNG_CHECK_cHRM_SUPPORTED
Glenn Randers-Pehrson7ec330d2009-09-25 11:45:42 -05001059/* Added at libpng version 1.2.34 and 1.4.0 */
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -05001060/* Currently only used by png_check_cHRM_fixed */
Glenn Randers-Pehrson7ec330d2009-09-25 11:45:42 -05001061PNG_EXTERN void png_64bit_product PNGARG((long v1, long v2,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -06001062 unsigned long *hi_product, unsigned long *lo_product));
Glenn Randers-Pehrson7ec330d2009-09-25 11:45:42 -05001063#endif
1064
Glenn Randers-Pehrson134bbe42009-09-24 18:10:49 -05001065/* Added at libpng version 1.4.0 */
1066PNG_EXTERN void png_check_IHDR PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -06001067 png_uint_32 width, png_uint_32 height, int bit_depth,
1068 int color_type, int interlace_type, int compression_type,
1069 int filter_type));
Glenn Randers-Pehrson134bbe42009-09-24 18:10:49 -05001070
Glenn Randers-Pehrsond29033f2009-11-07 10:46:42 -06001071/* Free all memory used by the read (old method - NOT DLL EXPORTED) */
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -05001072PNG_EXTERN void png_read_destroy PNGARG((png_structp png_ptr,
1073 png_infop info_ptr, png_infop end_info_ptr));
Glenn Randers-Pehrsond29033f2009-11-07 10:46:42 -06001074
1075/* Free any memory used in png_ptr struct (old method - NOT DLL EXPORTED) */
Glenn Randers-Pehrsonaa4e3592010-07-06 07:40:47 -05001076PNG_EXTERN void png_write_destroy PNGARG((png_structp png_ptr));
Glenn Randers-Pehrsond29033f2009-11-07 10:46:42 -06001077
1078#ifdef USE_FAR_KEYWORD /* memory model conversion function */
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -05001079PNG_EXTERN void *png_far_to_near PNGARG((png_structp png_ptr, png_voidp ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -06001080 int check));
Glenn Randers-Pehrsond29033f2009-11-07 10:46:42 -06001081#endif /* USE_FAR_KEYWORD */
1082
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -05001083#if defined(PNG_FLOATING_POINT_SUPPORTED) && defined(PNG_ERROR_TEXT_SUPPORTED)
Glenn Randers-Pehrson77396b62010-08-02 08:00:10 -05001084PNG_EXTERN PNG_FUNCTION(void, png_fixed_error, (png_structp png_ptr,
1085 png_const_charp name),PNG_NORETURN);
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -05001086#endif
1087
John Bowler88b77cc2011-05-05 06:49:55 -05001088/* Puts 'string' into 'buffer' at buffer[pos], taking care never to overwrite
1089 * the end. Always leaves the buffer nul terminated. Never errors out (and
1090 * there is no error code.)
1091 */
1092PNG_EXTERN size_t png_safecat(png_charp buffer, size_t bufsize, size_t pos,
1093 png_const_charp string);
1094
John Bowlerc5bef942011-05-05 17:35:39 -05001095/* Various internal functions to handle formatted warning messages, currently
1096 * only implemented for warnings.
1097 */
1098#if defined(PNG_WARNINGS_SUPPORTED) || defined(PNG_TIME_RFC1123_SUPPORTED)
John Bowler88b77cc2011-05-05 06:49:55 -05001099/* Utility to dump an unsigned value into a buffer, given a start pointer and
1100 * and end pointer (which should point just *beyond* the end of the buffer!)
1101 * Returns the pointer to the start of the formatted string. This utility only
1102 * does unsigned values.
1103 */
1104PNG_EXTERN png_charp png_format_number(png_const_charp start, png_charp end,
1105 int format, png_alloc_size_t number);
1106
1107/* Convenience macro that takes an array: */
1108#define PNG_FORMAT_NUMBER(buffer,format,number) \
1109 png_format_number(buffer, buffer + (sizeof buffer), format, number)
1110
1111/* Suggested size for a number buffer (enough for 64 bits and a sign!) */
1112#define PNG_NUMBER_BUFFER_SIZE 24
1113
1114/* These are the integer formats currently supported, the name is formed from
1115 * the standard printf(3) format string.
1116 */
1117#define PNG_NUMBER_FORMAT_u 1 /* chose unsigned API! */
1118#define PNG_NUMBER_FORMAT_02u 2
1119#define PNG_NUMBER_FORMAT_d 1 /* chose signed API! */
1120#define PNG_NUMBER_FORMAT_02d 2
1121#define PNG_NUMBER_FORMAT_x 3
1122#define PNG_NUMBER_FORMAT_02x 4
1123#define PNG_NUMBER_FORMAT_fixed 5 /* choose the signed API */
1124#endif
1125
1126#ifdef PNG_WARNINGS_SUPPORTED
1127/* New defines and members adding in libpng-1.5.3 */
1128# define PNG_WARNING_PARAMETER_SIZE 32
1129# define PNG_WARNING_PARAMETER_COUNT 8
1130
1131/* An l-value of this type has to be passed to the APIs below to cache the
1132 * values of the parameters to a formatted warning message.
1133 */
1134typedef char png_warning_parameters[PNG_WARNING_PARAMETER_COUNT][
1135 PNG_WARNING_PARAMETER_SIZE];
1136
1137PNG_EXTERN void png_warning_parameter(png_warning_parameters p, int number,
1138 png_const_charp string);
1139 /* Parameters are limited in size to PNG_WARNING_PARAMETER_SIZE characters,
1140 * including the trailing '\0'.
1141 */
1142PNG_EXTERN void png_warning_parameter_unsigned(png_warning_parameters p,
1143 int number, int format, png_alloc_size_t value);
1144 /* Use png_alloc_size_t because it is an unsigned type as big as any we
1145 * need to output. Use the following for a signed value.
1146 */
1147PNG_EXTERN void png_warning_parameter_signed(png_warning_parameters p,
1148 int number, int format, png_int_32 value);
1149
1150PNG_EXTERN void png_formatted_warning(png_structp png_ptr,
1151 png_warning_parameters p, png_const_charp message);
1152 /* 'message' follows the X/Open approach of using @1, @2 to insert
1153 * parameters previously supplied using the above functions. Errors in
1154 * specifying the paramters will simple result in garbage substitutions.
1155 */
1156#endif
1157
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -05001158/* ASCII to FP interfaces, currently only implemented if sCAL
1159 * support is required.
1160 */
Glenn Randers-Pehrson48dc6eb2010-07-31 07:09:58 -05001161#if defined(PNG_READ_sCAL_SUPPORTED)
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -05001162/* MAX_DIGITS is actually the maximum number of characters in an sCAL
1163 * width or height, derived from the precision (number of significant
1164 * digits - a build time settable option) and assumpitions about the
1165 * maximum ridiculous exponent.
1166 */
1167#define PNG_sCAL_MAX_DIGITS (PNG_sCAL_PRECISION+1/*.*/+1/*E*/+10/*exponent*/)
Glenn Randers-Pehrson48dc6eb2010-07-31 07:09:58 -05001168
1169#ifdef PNG_FLOATING_POINT_SUPPORTED
Glenn Randers-Pehrson2be8b642010-07-29 19:09:18 -05001170PNG_EXTERN void png_ascii_from_fp PNGARG((png_structp png_ptr, png_charp ascii,
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -05001171 png_size_t size, double fp, unsigned int precision));
Glenn Randers-Pehrson48dc6eb2010-07-31 07:09:58 -05001172#endif /* FLOATING_POINT */
1173
1174#ifdef PNG_FIXED_POINT_SUPPORTED
1175PNG_EXTERN void png_ascii_from_fixed PNGARG((png_structp png_ptr,
1176 png_charp ascii, png_size_t size, png_fixed_point fp));
1177#endif /* FIXED_POINT */
1178#endif /* READ_sCAL */
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -05001179
1180#if defined(PNG_sCAL_SUPPORTED) || defined(PNG_pCAL_SUPPORTED)
1181/* An internal API to validate the format of a floating point number.
1182 * The result is the index of the next character. If the number is
1183 * not valid it will be the index of a character in the supposed number.
1184 *
1185 * The format of a number is defined in the PNG extensions specification
1186 * and this API is strictly conformant to that spec, not anyone elses!
1187 *
1188 * The format as a regular expression is:
1189 *
1190 * [+-]?[0-9]+.?([Ee][+-]?[0-9]+)?
1191 *
1192 * or:
1193 *
1194 * [+-]?.[0-9]+(.[0-9]+)?([Ee][+-]?[0-9]+)?
1195 *
1196 * The complexity is that either integer or fraction must be present and the
1197 * fraction is permitted to have no digits only if the integer is present.
1198 *
1199 * NOTE: The dangling E problem.
1200 * There is a PNG valid floating point number in the following:
1201 *
1202 * PNG floating point numb1.ers are not greedy.
1203 *
1204 * Working this out requires *TWO* character lookahead (because of the
1205 * sign), the parser does not do this - it will fail at the 'r' - this
1206 * doesn't matter for PNG sCAL chunk values, but it requires more care
1207 * if the value were ever to be embedded in something more complex. Use
1208 * ANSI-C strtod if you need the lookahead.
1209 */
1210/* State table for the parser. */
1211#define PNG_FP_INTEGER 0 /* before or in integer */
1212#define PNG_FP_FRACTION 1 /* before or in fraction */
1213#define PNG_FP_EXPONENT 2 /* before or in exponent */
1214#define PNG_FP_STATE 3 /* mask for the above */
1215#define PNG_FP_SAW_SIGN 4 /* Saw +/- in current state */
1216#define PNG_FP_SAW_DIGIT 8 /* Saw a digit in current state */
1217#define PNG_FP_SAW_DOT 16 /* Saw a dot in current state */
1218#define PNG_FP_SAW_E 32 /* Saw an E (or e) in current state */
1219#define PNG_FP_SAW_ANY 60 /* Saw any of the above 4 */
1220#define PNG_FP_WAS_VALID 64 /* Preceding substring is a valid fp number */
1221#define PNG_FP_INVALID 128 /* Available for callers as a distinct value */
1222
1223/* Result codes for the parser (boolean - true meants ok, false means
1224 * not ok yet.)
1225 */
1226#define PNG_FP_MAYBE 0 /* The number may be valid in the future */
1227#define PNG_FP_OK 1 /* The number is valid */
1228
1229/* The actual parser. This can be called repeatedly, it updates
1230 * the index into the string and the state variable (which must
1231 * be initialzed to 0). It returns a result code, as above. There
1232 * is no point calling the parser any more if it fails to advance to
1233 * the end of the string - it is stuck on an invalid character (or
1234 * terminated by '\0').
1235 *
1236 * Note that the pointer will consume an E or even an E+ then leave
1237 * a 'maybe' state even though a preceding integer.fraction is valid.
1238 * The PNG_FP_WAS_VALID flag indicates that a preceding substring was
1239 * a valid number. It's possible to recover from this by calling
1240 * the parser again (from the start, with state 0) but with a string
1241 * that omits the last character (i.e. set the size to the index of
1242 * the problem character.) This has not been tested within libpng.
1243 */
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -05001244PNG_EXTERN int png_check_fp_number PNGARG((png_const_charp string,
1245 png_size_t size, int *statep, png_size_tp whereami));
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -05001246
1247/* This is the same but it checks a complete string and returns true
1248 * only if it just contains a floating point number.
1249 */
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -05001250PNG_EXTERN int png_check_fp_string PNGARG((png_const_charp string,
1251 png_size_t size));
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -05001252#endif /* pCAL || sCAL */
1253
Glenn Randers-Pehrson48dc6eb2010-07-31 07:09:58 -05001254#if defined(PNG_READ_GAMMA_SUPPORTED) ||\
1255 defined(PNG_INCH_CONVERSIONS_SUPPORTED) || defined(PNG_READ_pHYs_SUPPORTED)
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -05001256/* Added at libpng version 1.5.0 */
1257/* This is a utility to provide a*times/div (rounded) and indicate
1258 * if there is an overflow. The result is a boolean - false (0)
1259 * for overflow, true (1) if no overflow, in which case *res
1260 * holds the result.
1261 */
1262PNG_EXTERN int png_muldiv PNGARG((png_fixed_point_p res, png_fixed_point a,
Glenn Randers-Pehrson8625b392011-02-03 21:43:38 -06001263 png_int_32 multiplied_by, png_int_32 divided_by));
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -05001264#endif
1265
1266#if defined(PNG_READ_GAMMA_SUPPORTED) || defined(PNG_INCH_CONVERSIONS_SUPPORTED)
1267/* Same deal, but issue a warning on overflow and return 0. */
1268PNG_EXTERN png_fixed_point png_muldiv_warn PNGARG((png_structp png_ptr,
Glenn Randers-Pehrson8625b392011-02-03 21:43:38 -06001269 png_fixed_point a, png_int_32 multiplied_by, png_int_32 divided_by));
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -05001270#endif
1271
1272#ifdef PNG_READ_GAMMA_SUPPORTED
1273/* Calculate a reciprocal - used for gamma values. This returns
1274 * 0 if the argument is 0 in order to maintain an undefined value,
1275 * there are no warnings.
1276 */
1277PNG_EXTERN png_fixed_point png_reciprocal PNGARG((png_fixed_point a));
1278
1279/* The same but gives a reciprocal of the product of two fixed point
1280 * values. Accuracy is suitable for gamma calculations but this is
1281 * not exact - use png_muldiv for that.
1282 */
1283PNG_EXTERN png_fixed_point png_reciprocal2 PNGARG((png_fixed_point a,
1284 png_fixed_point b));
1285#endif
1286
1287#ifdef PNG_READ_GAMMA_SUPPORTED
1288/* Internal fixed point gamma correction. These APIs are called as
1289 * required to convert single values - they don't need to be fast,
1290 * they are not used when processing image pixel values.
1291 *
1292 * While the input is an 'unsigned' value it must actually be the
1293 * correct bit value - 0..255 or 0..65535 as required.
1294 */
1295PNG_EXTERN png_uint_16 png_gamma_correct PNGARG((png_structp png_ptr,
Glenn Randers-Pehrson8625b392011-02-03 21:43:38 -06001296 unsigned int value, png_fixed_point gamma_value));
1297PNG_EXTERN int png_gamma_significant PNGARG((png_fixed_point gamma_value));
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -05001298PNG_EXTERN png_uint_16 png_gamma_16bit_correct PNGARG((unsigned int value,
Glenn Randers-Pehrson8625b392011-02-03 21:43:38 -06001299 png_fixed_point gamma_value));
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -05001300PNG_EXTERN png_byte png_gamma_8bit_correct PNGARG((unsigned int value,
Glenn Randers-Pehrson8625b392011-02-03 21:43:38 -06001301 png_fixed_point gamma_value));
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -05001302PNG_EXTERN void png_build_gamma_table PNGARG((png_structp png_ptr,
Glenn Randers-Pehrson67439c42010-08-19 07:01:09 -05001303 int bit_depth));
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -05001304#endif
Glenn Randers-Pehrsond29033f2009-11-07 10:46:42 -06001305
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001306/* Maintainer: Put new private prototypes here ^ and in libpngpf.3 */
1307
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -05001308
1309#include "pngdebug.h"
1310
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001311#ifdef __cplusplus
1312}
1313#endif
1314
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -05001315#endif /* PNGPRIV_H */