blob: 9ca489d9e988b2b2c5ee932daa558312c4fb567d [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-Pehrson75d5bfd2011-08-17 07:33:48 -05009 * Last changed in libpng 1.5.5 [(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
John Bowler7b979652011-08-16 22:36:43 -050047#define PNGLIB_BUILD /*libpng is being built, not used*/
48
Glenn Randers-Pehrsonaecef092010-04-17 18:03:02 -050049#ifdef PNG_USER_CONFIG
50# include "pngusr.h"
Glenn Randers-Pehrson4f108d82010-08-24 21:05:43 -050051 /* These should have been defined in pngusr.h */
52# ifndef PNG_USER_PRIVATEBUILD
53# define PNG_USER_PRIVATEBUILD "Custom libpng build"
54# endif
55# ifndef PNG_USER_DLLFNAME_POSTFIX
56# define PNG_USER_DLLFNAME_POSTFIX "Cb"
57# endif
Glenn Randers-Pehrsonaecef092010-04-17 18:03:02 -050058#endif
John Bowler7b979652011-08-16 22:36:43 -050059
60/* Is this a build of a DLL where compilation of the object modules requires
61 * different preprocessor settings to those required for a simple library? If
62 * so PNG_BUILD_DLL must be set.
63 *
64 * If libpng is used inside a DLL but that DLL does not export the libpng APIs
65 * PNG_BUILD_DLL must not be set. To avoid the code below kicking in build a
66 * static library of libpng then link the DLL against that.
67 */
68#ifndef PNG_BUILD_DLL
69# ifdef DLL_EXPORT
70 /* This is set by libtool when files are compiled for a DLL; libtool
71 * always compiles twice, even on systems where it isn't necessary. Set
72 * PNG_BUILD_DLL in case it is necessary:
73 */
74# define PNG_BUILD_DLL
75# else
76# ifdef _WINDLL
77 /* This is set by the Microsoft Visual Studio IDE in projects that
78 * build a DLL. It can't easily be removed from those projects (it
79 * isn't visible in the Visual Studio UI) so it is a fairly reliable
80 * indication that PNG_IMPEXP needs to be set to the DLL export
81 * attributes.
82 */
83# define PNG_BUILD_DLL
84# else
85# ifdef __DLL__
86 /* This is set by the Borland C system when compiling for a DLL
87 * (as above.)
88 */
89# define PNG_BUILD_DLL
90# else
91 /* Add additional compiler cases here. */
92# endif
93# endif
94# endif
95#endif /* Setting PNG_BUILD_DLL if required */
96
97/* See pngconf.h for more details: the builder of the library may set this on
98 * the command line to the right thing for the specific compilation system or it
99 * may be automagically set above (at present we know of no system where it does
100 * need to be set on the command line.)
101 *
102 * PNG_IMPEXP must be set here when building the library to prevent pngconf.h
103 * setting it to the "import" setting for a DLL build.
104 */
105#ifndef PNG_IMPEXP
106# ifdef PNG_BUILD_DLL
107# define PNG_IMPEXP PNG_DLL_EXPORT
108# else
109 /* Not building a DLL, or the DLL doesn't require specific export
110 * definitions.
111 */
112# define PNG_IMPEXP
113# endif
114#endif
115
116/* No warnings for private or deprecated functions in the build: */
117#ifndef PNG_DEPRECATED
118# define PNG_DEPRECATED
119#endif
120#ifndef PNG_PRIVATE
121# define PNG_PRIVATE
122#endif
123
Glenn Randers-Pehrsonc3cd22b2010-03-08 21:10:25 -0600124#include "png.h"
125#include "pnginfo.h"
126#include "pngstruct.h"
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500127
John Bowler7b979652011-08-16 22:36:43 -0500128/* pngconf.h does not set PNG_DLL_EXPORT unless it is required, so: */
129#ifndef PNG_DLL_EXPORT
130# define PNG_DLL_EXPORT
131#endif
132
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500133/* This is used for 16 bit gamma tables - only the top level pointers are const,
134 * this could be changed:
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500135 */
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500136typedef PNG_CONST png_uint_16p FAR * png_const_uint_16pp;
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500137
Glenn Randers-Pehrsondc6182a2010-03-09 16:45:06 -0600138/* Added at libpng-1.2.9 */
139/* Moved to pngpriv.h at libpng-1.5.0 */
140
141/* config.h is created by and PNG_CONFIGURE_LIBPNG is set by the "configure"
Glenn Randers-Pehrson862cb202010-04-16 22:12:51 -0500142 * script. We may need it here to get the correct configuration on things
143 * like limits.
Glenn Randers-Pehrsondc6182a2010-03-09 16:45:06 -0600144 */
145#ifdef PNG_CONFIGURE_LIBPNG
146# ifdef HAVE_CONFIG_H
147# include "config.h"
148# endif
149#endif
150
Glenn Randers-Pehrson862cb202010-04-16 22:12:51 -0500151/* Moved to pngpriv.h at libpng-1.5.0 */
Glenn Randers-Pehrson9f044c12010-12-07 14:59:43 -0600152/* NOTE: some of these may have been used in external applications as
153 * these definitions were exposed in pngconf.h prior to 1.5.
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500154 */
Glenn Randers-Pehrson9f044c12010-12-07 14:59:43 -0600155
Glenn Randers-Pehrson862cb202010-04-16 22:12:51 -0500156/* If you are running on a machine where you cannot allocate more
157 * than 64K of memory at once, uncomment this. While libpng will not
158 * normally need that much memory in a chunk (unless you load up a very
159 * large file), zlib needs to know how big of a chunk it can use, and
160 * libpng thus makes sure to check any memory allocation to verify it
161 * will fit into memory.
162 *
163 * zlib provides 'MAXSEG_64K' which, if defined, indicates the
164 * same limit and pngconf.h (already included) sets the limit
165 * if certain operating systems are detected.
166 */
167#if defined(MAXSEG_64K) && !defined(PNG_MAX_MALLOC_64K)
168# define PNG_MAX_MALLOC_64K
169#endif
170
Glenn Randers-Pehrsonf3dd1cc2011-03-18 22:02:20 -0500171#ifndef PNG_UNUSED
Glenn Randers-Pehrson25d2d472011-01-31 10:25:10 -0600172/* Unused formal parameter warnings are silenced using the following macro
173 * which is expected to have no bad effects on performance (optimizing
174 * compilers will probably remove it entirely). Note that if you replace
175 * it with something other than whitespace, you must include the terminating
176 * semicolon.
Glenn Randers-Pehrsond546f432010-12-04 20:41:36 -0600177 */
Glenn Randers-Pehrsonf3dd1cc2011-03-18 22:02:20 -0500178# define PNG_UNUSED(param) (void)param;
179#endif
Glenn Randers-Pehrsonbf3293a2011-01-28 15:14:43 -0600180
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500181/* Just a little check that someone hasn't tried to define something
182 * contradictory.
Glenn Randers-Pehrson862cb202010-04-16 22:12:51 -0500183 */
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500184#if (PNG_ZBUF_SIZE > 65536L) && defined(PNG_MAX_MALLOC_64K)
185# undef PNG_ZBUF_SIZE
186# define PNG_ZBUF_SIZE 65536L
Glenn Randers-Pehrson862cb202010-04-16 22:12:51 -0500187#endif
188
John Bowler8d261262011-06-18 13:37:11 -0500189/* PNG_STATIC is used to mark internal file scope functions if they need to be
190 * accessed for implementation tests (see the code in tests/?*).
191 */
192#ifndef PNG_STATIC
193# define PNG_STATIC static
194#endif
195
John Bowler88b77cc2011-05-05 06:49:55 -0500196/* If warnings or errors are turned off the code is disabled or redirected here.
Glenn Randers-Pehrsonef217b72011-06-15 12:58:27 -0500197 * From 1.5.4 functions have been added to allow very limited formatting of
John Bowler88b77cc2011-05-05 06:49:55 -0500198 * error and warning messages - this code will also be disabled here.
Glenn Randers-Pehrsonaecef092010-04-17 18:03:02 -0500199 */
John Bowler88b77cc2011-05-05 06:49:55 -0500200#ifdef PNG_WARNINGS_SUPPORTED
201# define PNG_WARNING_PARAMETERS(p) png_warning_parameters p;
202#else
203# define png_warning(s1,s2) ((void)(s1))
204# define png_chunk_warning(s1,s2) ((void)(s1))
205# define png_warning_parameter(p,number,string) ((void)0)
206# define png_warning_parameter_unsigned(p,number,format,value) ((void)0)
207# define png_warning_parameter_signed(p,number,format,value) ((void)0)
208# define png_formatted_warning(pp,p,message) ((void)(pp))
Glenn Randers-Pehrsonaf855e42011-05-07 10:52:49 -0500209# define PNG_WARNING_PARAMETERS(p)
Glenn Randers-Pehrsonaecef092010-04-17 18:03:02 -0500210#endif
211#ifndef PNG_ERROR_TEXT_SUPPORTED
212# define png_error(s1,s2) png_err(s1)
213# define png_chunk_error(s1,s2) png_err(s1)
Glenn Randers-Pehrson48dc6eb2010-07-31 07:09:58 -0500214# define png_fixed_error(s1,s2) png_err(s1)
Glenn Randers-Pehrson862cb202010-04-16 22:12:51 -0500215#endif
216
Glenn Randers-Pehrson0ee51442010-07-12 06:29:17 -0500217#ifndef PNG_EXTERN
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500218/* The functions exported by PNG_EXTERN are internal functions, which
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500219 * aren't usually used outside the library (as far as I know), so it is
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500220 * debatable if they should be exported at all. In the future, when it
221 * is possible to have run-time registry of chunk-handling functions,
Glenn Randers-Pehrson9f044c12010-12-07 14:59:43 -0600222 * some of these might be made available again.
Glenn Randers-Pehrson0ee51442010-07-12 06:29:17 -0500223# define PNG_EXTERN extern
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500224 */
Glenn Randers-Pehrson0ee51442010-07-12 06:29:17 -0500225# define PNG_EXTERN
226#endif
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500227
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500228/* Some fixed point APIs are still required even if not exported because
229 * they get used by the corresponding floating point APIs. This magic
230 * deals with this:
231 */
232#ifdef PNG_FIXED_POINT_SUPPORTED
233# define PNGFAPI PNGAPI
234#else
235# define PNGFAPI /* PRIVATE */
236#endif
237
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500238/* Other defines specific to compilers can go here. Try to keep
239 * them inside an appropriate ifdef/endif pair for portability.
240 */
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500241#if defined(PNG_FLOATING_POINT_SUPPORTED) ||\
242 defined(PNG_FLOATING_ARITHMETIC_SUPPORTED)
Glenn Randers-Pehrson233357e2010-07-29 21:49:38 -0500243 /* png.c requires the following ANSI-C constants if the conversion of
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500244 * floating point to ASCII is implemented therein:
Glenn Randers-Pehrsonc36bb792011-02-12 09:49:07 -0600245 *
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500246 * DBL_DIG Maximum number of decimal digits (can be set to any constant)
Glenn Randers-Pehrson233357e2010-07-29 21:49:38 -0500247 * DBL_MIN Smallest normalized fp number (can be set to an arbitrary value)
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500248 * DBL_MAX Maximum floating point number (can be set to an arbitrary value)
249 */
250# include <float.h>
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500251
Glenn Randers-Pehrsond00bbb22010-03-14 09:15:49 -0500252# if (defined(__MWERKS__) && defined(macintosh)) || defined(applec) || \
253 defined(THINK_C) || defined(__SC__) || defined(TARGET_OS_MAC)
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500254 /* We need to check that <math.h> hasn't already been included earlier
255 * as it seems it doesn't agree with <fp.h>, yet we should really use
256 * <fp.h> if possible.
257 */
258# if !defined(__MATH_H__) && !defined(__MATH_H) && !defined(__cmath__)
259# include <fp.h>
260# endif
261# else
262# include <math.h>
263# endif
264# if defined(_AMIGA) && defined(__SASC) && defined(_M68881)
265 /* Amiga SAS/C: We must include builtin FPU functions when compiling using
266 * MATH=68881
267 */
268# include <m68881.h>
269# endif
270#endif
271
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500272/* This provides the non-ANSI (far) memory allocation routines. */
273#if defined(__TURBOC__) && defined(__MSDOS__)
274# include <mem.h>
275# include <alloc.h>
276#endif
277
278#if defined(WIN32) || defined(_Windows) || defined(_WINDOWS) || \
Glenn Randers-Pehrsonf74c5ac2009-09-20 07:27:34 -0500279 defined(_WIN32) || defined(__WIN32__)
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500280# include <windows.h> /* defines _WINDOWS_ macro */
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500281#endif
282
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500283/* Moved here around 1.5.0beta36 from pngconf.h */
284/* Users may want to use these so they are not private. Any library
285 * functions that are passed far data must be model-independent.
Glenn Randers-Pehrson862cb202010-04-16 22:12:51 -0500286 */
287
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500288/* Memory model/platform independent fns */
289#ifndef PNG_ABORT
290# ifdef _WINDOWS_
291# define PNG_ABORT() ExitProcess(0)
292# else
293# define PNG_ABORT() abort()
294# endif
Glenn Randers-Pehrson862cb202010-04-16 22:12:51 -0500295#endif
296
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500297#ifdef USE_FAR_KEYWORD
298/* Use this to make far-to-near assignments */
299# define CHECK 1
300# define NOCHECK 0
301# define CVT_PTR(ptr) (png_far_to_near(png_ptr,ptr,CHECK))
302# define CVT_PTR_NOCHECK(ptr) (png_far_to_near(png_ptr,ptr,NOCHECK))
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500303# define png_strlen _fstrlen
304# define png_memcmp _fmemcmp /* SJT: added */
305# define png_memcpy _fmemcpy
306# define png_memset _fmemset
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500307#else
308# ifdef _WINDOWS_ /* Favor Windows over C runtime fns */
309# define CVT_PTR(ptr) (ptr)
310# define CVT_PTR_NOCHECK(ptr) (ptr)
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500311# define png_strlen lstrlenA
312# define png_memcmp memcmp
313# define png_memcpy CopyMemory
314# define png_memset memset
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500315# else
316# define CVT_PTR(ptr) (ptr)
317# define CVT_PTR_NOCHECK(ptr) (ptr)
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500318# define png_strlen strlen
319# define png_memcmp memcmp /* SJT: added */
320# define png_memcpy memcpy
321# define png_memset memset
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500322# endif
323#endif
324/* End of memory model/platform independent support */
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500325/* End of 1.5.0beta36 move from pngconf.h */
326
327/* CONSTANTS and UTILITY MACROS
328 * These are used internally by libpng and not exposed in the API
Glenn Randers-Pehrson862cb202010-04-16 22:12:51 -0500329 */
Glenn Randers-Pehrson9f044c12010-12-07 14:59:43 -0600330
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500331/* Various modes of operation. Note that after an init, mode is set to
Glenn Randers-Pehrson2d3fc1c2011-05-10 23:48:00 -0500332 * zero automatically when the structure is created. Three of these
333 * are defined in png.h because they need to be visible to applications
334 * that call png_set_unknown_chunk().
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500335 */
Glenn Randers-Pehrson2d3fc1c2011-05-10 23:48:00 -0500336/* #define PNG_HAVE_IHDR 0x01 (defined in png.h) */
337/* #define PNG_HAVE_PLTE 0x02 (defined in png.h) */
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500338#define PNG_HAVE_IDAT 0x04
Glenn Randers-Pehrson2d3fc1c2011-05-10 23:48:00 -0500339/* #define PNG_AFTER_IDAT 0x08 (defined in png.h) */
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500340#define PNG_HAVE_IEND 0x10
341#define PNG_HAVE_gAMA 0x20
342#define PNG_HAVE_cHRM 0x40
343#define PNG_HAVE_sRGB 0x80
344#define PNG_HAVE_CHUNK_HEADER 0x100
345#define PNG_WROTE_tIME 0x200
346#define PNG_WROTE_INFO_BEFORE_PLTE 0x400
347#define PNG_BACKGROUND_IS_GRAY 0x800
348#define PNG_HAVE_PNG_SIGNATURE 0x1000
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -0500349#define PNG_HAVE_CHUNK_AFTER_IDAT 0x2000 /* Have another chunk after IDAT */
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500350
Glenn Randers-Pehrson6c7a09a2009-06-15 21:57:39 -0500351/* Flags for the transformations the PNG library does on the image data */
Glenn Randers-Pehrson1916f6a2008-08-14 13:44:49 -0500352#define PNG_BGR 0x0001
353#define PNG_INTERLACE 0x0002
354#define PNG_PACK 0x0004
355#define PNG_SHIFT 0x0008
356#define PNG_SWAP_BYTES 0x0010
357#define PNG_INVERT_MONO 0x0020
Glenn Randers-Pehrson3cd7cff2010-04-16 19:27:08 -0500358#define PNG_QUANTIZE 0x0040
John Bowlerd273ad22011-05-07 21:00:28 -0500359#define PNG_COMPOSE 0x0080 /* Was PNG_BACKGROUND */
Glenn Randers-Pehrson1916f6a2008-08-14 13:44:49 -0500360#define PNG_BACKGROUND_EXPAND 0x0100
John Bowler4d562962011-02-12 09:01:20 -0600361#define PNG_EXPAND_16 0x0200 /* Added to libpng 1.5.2 */
John Bowler8d261262011-06-18 13:37:11 -0500362#define PNG_16_TO_8 0x0400 /* Becomes 'chop' in 1.5.4 */
Glenn Randers-Pehrson1916f6a2008-08-14 13:44:49 -0500363#define PNG_RGBA 0x0800
364#define PNG_EXPAND 0x1000
365#define PNG_GAMMA 0x2000
366#define PNG_GRAY_TO_RGB 0x4000
367#define PNG_FILLER 0x8000L
368#define PNG_PACKSWAP 0x10000L
369#define PNG_SWAP_ALPHA 0x20000L
370#define PNG_STRIP_ALPHA 0x40000L
371#define PNG_INVERT_ALPHA 0x80000L
372#define PNG_USER_TRANSFORM 0x100000L
373#define PNG_RGB_TO_GRAY_ERR 0x200000L
374#define PNG_RGB_TO_GRAY_WARN 0x400000L
375#define PNG_RGB_TO_GRAY 0x600000L /* two bits, RGB_TO_GRAY_ERR|WARN */
Glenn Randers-Pehrsonef217b72011-06-15 12:58:27 -0500376#define PNG_ENCODE_ALPHA 0x800000L /* Added to libpng-1.5.4 */
Glenn Randers-Pehrson1916f6a2008-08-14 13:44:49 -0500377#define PNG_ADD_ALPHA 0x1000000L /* Added to libpng-1.2.7 */
378#define PNG_EXPAND_tRNS 0x2000000L /* Added to libpng-1.2.9 */
John Bowler8d261262011-06-18 13:37:11 -0500379#define PNG_SCALE_16_TO_8 0x4000000L /* Added to libpng-1.5.4 */
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500380 /* 0x8000000L unused */
381 /* 0x10000000L unused */
382 /* 0x20000000L unused */
383 /* 0x40000000L unused */
384
Glenn Randers-Pehrson6c7a09a2009-06-15 21:57:39 -0500385/* Flags for png_create_struct */
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500386#define PNG_STRUCT_PNG 0x0001
387#define PNG_STRUCT_INFO 0x0002
388
389/* Scaling factor for filter heuristic weighting calculations */
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500390#define PNG_WEIGHT_FACTOR (1<<(PNG_WEIGHT_SHIFT))
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500391#define PNG_COST_FACTOR (1<<(PNG_COST_SHIFT))
392
Glenn Randers-Pehrson6c7a09a2009-06-15 21:57:39 -0500393/* Flags for the png_ptr->flags rather than declaring a byte for each one */
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500394#define PNG_FLAG_ZLIB_CUSTOM_STRATEGY 0x0001
395#define PNG_FLAG_ZLIB_CUSTOM_LEVEL 0x0002
396#define PNG_FLAG_ZLIB_CUSTOM_MEM_LEVEL 0x0004
397#define PNG_FLAG_ZLIB_CUSTOM_WINDOW_BITS 0x0008
398#define PNG_FLAG_ZLIB_CUSTOM_METHOD 0x0010
399#define PNG_FLAG_ZLIB_FINISHED 0x0020
400#define PNG_FLAG_ROW_INIT 0x0040
401#define PNG_FLAG_FILLER_AFTER 0x0080
402#define PNG_FLAG_CRC_ANCILLARY_USE 0x0100
403#define PNG_FLAG_CRC_ANCILLARY_NOWARN 0x0200
404#define PNG_FLAG_CRC_CRITICAL_USE 0x0400
405#define PNG_FLAG_CRC_CRITICAL_IGNORE 0x0800
Glenn Randers-Pehrsonef217b72011-06-15 12:58:27 -0500406#define PNG_FLAG_ASSUME_sRGB 0x1000 /* Added to libpng-1.5.4 */
407#define PNG_FLAG_OPTIMIZE_ALPHA 0x2000 /* Added to libpng-1.5.4 */
408#define PNG_FLAG_DETECT_UNINITIALIZED 0x4000 /* Added to libpng-1.5.4 */
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500409#define PNG_FLAG_KEEP_UNKNOWN_CHUNKS 0x8000L
410#define PNG_FLAG_KEEP_UNSAFE_CHUNKS 0x10000L
411#define PNG_FLAG_LIBRARY_MISMATCH 0x20000L
412#define PNG_FLAG_STRIP_ERROR_NUMBERS 0x40000L
413#define PNG_FLAG_STRIP_ERROR_TEXT 0x80000L
414#define PNG_FLAG_MALLOC_NULL_MEM_OK 0x100000L
John Bowler9b872f42011-02-12 09:00:16 -0600415 /* 0x200000L unused */
416 /* 0x400000L unused */
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -0500417#define PNG_FLAG_BENIGN_ERRORS_WARN 0x800000L /* Added to libpng-1.4.0 */
Glenn Randers-Pehrson6b3d50b2011-03-31 20:14:29 -0500418#define PNG_FLAG_ZTXT_CUSTOM_STRATEGY 0x1000000L /* 5 lines added */
Glenn Randers-Pehrsonef217b72011-06-15 12:58:27 -0500419#define PNG_FLAG_ZTXT_CUSTOM_LEVEL 0x2000000L /* to libpng-1.5.4 */
Glenn Randers-Pehrson6b3d50b2011-03-31 20:14:29 -0500420#define PNG_FLAG_ZTXT_CUSTOM_MEM_LEVEL 0x4000000L
421#define PNG_FLAG_ZTXT_CUSTOM_WINDOW_BITS 0x8000000L
422#define PNG_FLAG_ZTXT_CUSTOM_METHOD 0x10000000L
423 /* 0x20000000L unused */
424 /* 0x40000000L unused */
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500425
426#define PNG_FLAG_CRC_ANCILLARY_MASK (PNG_FLAG_CRC_ANCILLARY_USE | \
427 PNG_FLAG_CRC_ANCILLARY_NOWARN)
428
429#define PNG_FLAG_CRC_CRITICAL_MASK (PNG_FLAG_CRC_CRITICAL_USE | \
430 PNG_FLAG_CRC_CRITICAL_IGNORE)
431
432#define PNG_FLAG_CRC_MASK (PNG_FLAG_CRC_ANCILLARY_MASK | \
433 PNG_FLAG_CRC_CRITICAL_MASK)
434
Glenn Randers-Pehrsonbcb3aac2010-09-10 22:05:27 -0500435/* zlib.h declares a magic type 'uInt' that limits the amount of data that zlib
436 * can handle at once. This type need be no larger than 16 bits (so maximum of
437 * 65535), this define allows us to discover how big it is, but limited by the
438 * maximuum for png_size_t. The value can be overriden in a library build
439 * (pngusr.h, or set it in CPPFLAGS) and it works to set it to a considerably
440 * lower value (e.g. 255 works). A lower value may help memory usage (slightly)
441 * and may even improve performance on some systems (and degrade it on others.)
442 */
443#ifndef ZLIB_IO_MAX
444# define ZLIB_IO_MAX ((uInt)-1)
445#endif
446
Glenn Randers-Pehrson6c7a09a2009-06-15 21:57:39 -0500447/* Save typing and make code easier to understand */
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500448
449#define PNG_COLOR_DIST(c1, c2) (abs((int)((c1).red) - (int)((c2).red)) + \
450 abs((int)((c1).green) - (int)((c2).green)) + \
451 abs((int)((c1).blue) - (int)((c2).blue)))
452
453/* Added to libpng-1.2.6 JB */
454#define PNG_ROWBYTES(pixel_bits, width) \
455 ((pixel_bits) >= 8 ? \
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500456 ((png_size_t)(width) * (((png_size_t)(pixel_bits)) >> 3)) : \
457 (( ((png_size_t)(width) * ((png_size_t)(pixel_bits))) + 7) >> 3) )
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500458
459/* PNG_OUT_OF_RANGE returns true if value is outside the range
Glenn Randers-Pehrson9bf60832009-09-20 13:37:50 -0500460 * ideal-delta..ideal+delta. Each argument is evaluated twice.
461 * "ideal" and "delta" should be constants, normally simple
462 * integers, "value" a variable. Added to libpng-1.2.6 JB
463 */
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500464#define PNG_OUT_OF_RANGE(value, ideal, delta) \
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600465 ( (value) < (ideal)-(delta) || (value) > (ideal)+(delta) )
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500466
Glenn Randers-Pehrson363f96e2010-08-11 09:00:26 -0500467/* Conversions between fixed and floating point, only defined if
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500468 * required (to make sure the code doesn't accidentally use float
469 * when it is supposedly disabled.)
470 */
471#ifdef PNG_FLOATING_POINT_SUPPORTED
Glenn Randers-Pehrson233357e2010-07-29 21:49:38 -0500472/* The floating point conversion can't overflow, though it can and
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500473 * does lose accuracy relative to the original fixed point value.
474 * In practice this doesn't matter because png_fixed_point only
475 * stores numbers with very low precision. The png_ptr and s
476 * arguments are unused by default but are there in case error
477 * checking becomes a requirement.
478 */
479#define png_float(png_ptr, fixed, s) (.00001 * (fixed))
480
Glenn Randers-Pehrson233357e2010-07-29 21:49:38 -0500481/* The fixed point conversion performs range checking and evaluates
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500482 * its argument multiple times, so must be used with care. The
483 * range checking uses the PNG specification values for a signed
484 * 32 bit fixed point value except that the values are deliberately
Glenn Randers-Pehrson9f044c12010-12-07 14:59:43 -0600485 * rounded-to-zero to an integral value - 21474 (21474.83 is roughly
486 * (2^31-1) * 100000). 's' is a string that describes the value being
487 * converted.
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500488 *
489 * NOTE: this macro will raise a png_error if the range check fails,
490 * therefore it is normally only appropriate to use this on values
491 * that come from API calls or other sources where an out of range
492 * error indicates a programming error, not a data error!
493 *
494 * NOTE: by default this is off - the macro is not used - because the
495 * function call saves a lot of code.
496 */
497#ifdef PNG_FIXED_POINT_MACRO_SUPPORTED
498#define png_fixed(png_ptr, fp, s) ((fp) <= 21474 && (fp) >= -21474 ?\
Glenn Randers-Pehrson48dc6eb2010-07-31 07:09:58 -0500499 ((png_fixed_point)(100000 * (fp))) : (png_fixed_error(png_ptr, s),0))
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500500#else
501PNG_EXTERN png_fixed_point png_fixed PNGARG((png_structp png_ptr, double fp,
502 png_const_charp text));
503#endif
504#endif
505
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500506/* Constant strings for known chunk types. If you need to add a chunk,
Glenn Randers-Pehrson9bf60832009-09-20 13:37:50 -0500507 * define the name here, and add an invocation of the macro wherever it's
508 * needed.
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500509 */
Glenn Randers-Pehrson9bf60832009-09-20 13:37:50 -0500510#define PNG_IHDR PNG_CONST png_byte png_IHDR[5] = { 73, 72, 68, 82, '\0'}
511#define PNG_IDAT PNG_CONST png_byte png_IDAT[5] = { 73, 68, 65, 84, '\0'}
512#define PNG_IEND PNG_CONST png_byte png_IEND[5] = { 73, 69, 78, 68, '\0'}
513#define PNG_PLTE PNG_CONST png_byte png_PLTE[5] = { 80, 76, 84, 69, '\0'}
514#define PNG_bKGD PNG_CONST png_byte png_bKGD[5] = { 98, 75, 71, 68, '\0'}
515#define PNG_cHRM PNG_CONST png_byte png_cHRM[5] = { 99, 72, 82, 77, '\0'}
516#define PNG_gAMA PNG_CONST png_byte png_gAMA[5] = {103, 65, 77, 65, '\0'}
517#define PNG_hIST PNG_CONST png_byte png_hIST[5] = {104, 73, 83, 84, '\0'}
518#define PNG_iCCP PNG_CONST png_byte png_iCCP[5] = {105, 67, 67, 80, '\0'}
519#define PNG_iTXt PNG_CONST png_byte png_iTXt[5] = {105, 84, 88, 116, '\0'}
520#define PNG_oFFs PNG_CONST png_byte png_oFFs[5] = {111, 70, 70, 115, '\0'}
521#define PNG_pCAL PNG_CONST png_byte png_pCAL[5] = {112, 67, 65, 76, '\0'}
522#define PNG_sCAL PNG_CONST png_byte png_sCAL[5] = {115, 67, 65, 76, '\0'}
523#define PNG_pHYs PNG_CONST png_byte png_pHYs[5] = {112, 72, 89, 115, '\0'}
524#define PNG_sBIT PNG_CONST png_byte png_sBIT[5] = {115, 66, 73, 84, '\0'}
525#define PNG_sPLT PNG_CONST png_byte png_sPLT[5] = {115, 80, 76, 84, '\0'}
526#define PNG_sRGB PNG_CONST png_byte png_sRGB[5] = {115, 82, 71, 66, '\0'}
527#define PNG_sTER PNG_CONST png_byte png_sTER[5] = {115, 84, 69, 82, '\0'}
528#define PNG_tEXt PNG_CONST png_byte png_tEXt[5] = {116, 69, 88, 116, '\0'}
529#define PNG_tIME PNG_CONST png_byte png_tIME[5] = {116, 73, 77, 69, '\0'}
530#define PNG_tRNS PNG_CONST png_byte png_tRNS[5] = {116, 82, 78, 83, '\0'}
531#define PNG_zTXt PNG_CONST png_byte png_zTXt[5] = {122, 84, 88, 116, '\0'}
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500532
Glenn Randers-Pehrsonef217b72011-06-15 12:58:27 -0500533/* Gamma values (new at libpng-1.5.4): */
John Bowlerf70c7d02011-05-10 22:54:37 -0500534#define PNG_GAMMA_MAC_OLD 151724 /* Assume '1.8' is really 2.2/1.45! */
535#define PNG_GAMMA_MAC_INVERSE 65909
536#define PNG_GAMMA_sRGB_INVERSE 45455
537
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500538
539/* Inhibit C++ name-mangling for libpng functions but not for system calls. */
540#ifdef __cplusplus
541extern "C" {
542#endif /* __cplusplus */
543
544/* These functions are used internally in the code. They generally
545 * shouldn't be used unless you are writing code to add or replace some
546 * functionality in libpng. More information about most functions can
547 * be found in the files where the functions are located.
548 */
549
John Bowler88b77cc2011-05-05 06:49:55 -0500550/* Check the user version string for compatibility, returns false if the version
551 * numbers aren't compatible.
552 */
553PNG_EXTERN int png_user_version_check(png_structp png_ptr,
554 png_const_charp user_png_ver);
555
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500556/* Allocate memory for an internal libpng struct */
Glenn Randers-Pehrson77396b62010-08-02 08:00:10 -0500557PNG_EXTERN PNG_FUNCTION(png_voidp,png_create_struct,PNGARG((int type)),
558 PNG_ALLOCATED);
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500559
560/* Free memory from internal libpng struct */
561PNG_EXTERN void png_destroy_struct PNGARG((png_voidp struct_ptr));
562
Glenn Randers-Pehrson77396b62010-08-02 08:00:10 -0500563PNG_EXTERN PNG_FUNCTION(png_voidp,png_create_struct_2,
564 PNGARG((int type, png_malloc_ptr malloc_fn, png_voidp mem_ptr)),
565 PNG_ALLOCATED);
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500566PNG_EXTERN void png_destroy_struct_2 PNGARG((png_voidp struct_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600567 png_free_ptr free_fn, png_voidp mem_ptr));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500568
569/* Free any memory that info_ptr points to and reset struct. */
570PNG_EXTERN void png_info_destroy PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600571 png_infop info_ptr));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500572
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500573/* Function to allocate memory for zlib. PNGAPI is disallowed. */
Glenn Randers-Pehrson77396b62010-08-02 08:00:10 -0500574PNG_EXTERN PNG_FUNCTION(voidpf,png_zalloc,PNGARG((voidpf png_ptr, uInt items,
575 uInt size)),PNG_ALLOCATED);
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500576
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500577/* Function to free memory for zlib. PNGAPI is disallowed. */
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500578PNG_EXTERN void png_zfree PNGARG((voidpf png_ptr, voidpf ptr));
579
Glenn Randers-Pehrsoneae8e362010-03-12 17:36:53 -0600580/* Next four functions are used internally as callbacks. PNGCBAPI is required
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -0500581 * but not PNG_EXPORT. PNGAPI added at libpng version 1.2.3, changed to
582 * PNGCBAPI at 1.5.0
Glenn Randers-Pehrsoneae8e362010-03-12 17:36:53 -0600583 */
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500584
Glenn Randers-Pehrsoneae8e362010-03-12 17:36:53 -0600585PNG_EXTERN void PNGCBAPI png_default_read_data PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600586 png_bytep data, png_size_t length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500587
588#ifdef PNG_PROGRESSIVE_READ_SUPPORTED
Glenn Randers-Pehrsoneae8e362010-03-12 17:36:53 -0600589PNG_EXTERN void PNGCBAPI png_push_fill_buffer PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600590 png_bytep buffer, png_size_t length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500591#endif
592
Glenn Randers-Pehrsoneae8e362010-03-12 17:36:53 -0600593PNG_EXTERN void PNGCBAPI png_default_write_data PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600594 png_bytep data, png_size_t length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500595
Glenn Randers-Pehrsondbd40142009-08-31 08:42:02 -0500596#ifdef PNG_WRITE_FLUSH_SUPPORTED
Glenn Randers-Pehrsond4df36c2010-03-06 10:45:55 -0600597# ifdef PNG_STDIO_SUPPORTED
Glenn Randers-Pehrsoneae8e362010-03-12 17:36:53 -0600598PNG_EXTERN void PNGCBAPI png_default_flush PNGARG((png_structp png_ptr));
Glenn Randers-Pehrsond4df36c2010-03-06 10:45:55 -0600599# endif
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500600#endif
601
602/* Reset the CRC variable */
603PNG_EXTERN void png_reset_crc PNGARG((png_structp png_ptr));
604
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500605/* Write the "data" buffer to whatever output you are using */
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500606PNG_EXTERN void png_write_data PNGARG((png_structp png_ptr,
607 png_const_bytep data, png_size_t length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500608
Glenn Randers-Pehrsona5815562010-11-20 21:48:29 -0600609/* Read and check the PNG file signature */
610PNG_EXTERN void png_read_sig PNGARG((png_structp png_ptr, png_infop info_ptr));
611
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -0500612/* Read the chunk header (length + type name) */
613PNG_EXTERN png_uint_32 png_read_chunk_header PNGARG((png_structp png_ptr));
614
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500615/* Read data from whatever input you are using into the "data" buffer */
616PNG_EXTERN void png_read_data PNGARG((png_structp png_ptr, png_bytep data,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600617 png_size_t length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500618
619/* Read bytes into buf, and update png_ptr->crc */
620PNG_EXTERN void png_crc_read PNGARG((png_structp png_ptr, png_bytep buf,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600621 png_size_t length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500622
623/* Decompress data in a chunk that uses compression */
Glenn Randers-Pehrson8abcf142011-04-03 06:22:02 -0500624#if defined(PNG_READ_COMPRESSED_TEXT_SUPPORTED)
Glenn Randers-Pehrson895a9c92008-07-25 08:51:18 -0500625PNG_EXTERN void png_decompress_chunk PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600626 int comp_type, png_size_t chunklength, png_size_t prefix_length,
627 png_size_t *data_length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500628#endif
629
630/* Read "skip" bytes, read the file crc, and (optionally) verify png_ptr->crc */
631PNG_EXTERN int png_crc_finish PNGARG((png_structp png_ptr, png_uint_32 skip));
632
633/* Read the CRC from the file and compare it to the libpng calculated CRC */
634PNG_EXTERN int png_crc_error PNGARG((png_structp png_ptr));
635
636/* Calculate the CRC over a section of data. Note that we are only
637 * passing a maximum of 64K on systems that have this as a memory limit,
638 * since this is the maximum buffer size we can specify.
639 */
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500640PNG_EXTERN void png_calculate_crc PNGARG((png_structp png_ptr,
641 png_const_bytep ptr, png_size_t length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500642
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500643#ifdef PNG_WRITE_FLUSH_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500644PNG_EXTERN void png_flush PNGARG((png_structp png_ptr));
645#endif
646
Glenn Randers-Pehrson6c7a09a2009-06-15 21:57:39 -0500647/* Write various chunks */
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500648
649/* Write the IHDR chunk, and update the png_struct with the necessary
650 * information.
651 */
652PNG_EXTERN void png_write_IHDR PNGARG((png_structp png_ptr, png_uint_32 width,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600653 png_uint_32 height,
654 int bit_depth, int color_type, int compression_method, int filter_method,
655 int interlace_method));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500656
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500657PNG_EXTERN void png_write_PLTE PNGARG((png_structp png_ptr,
658 png_const_colorp palette, png_uint_32 num_pal));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500659
660PNG_EXTERN void png_write_IDAT PNGARG((png_structp png_ptr, png_bytep data,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600661 png_size_t length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500662
663PNG_EXTERN void png_write_IEND PNGARG((png_structp png_ptr));
664
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500665#ifdef PNG_WRITE_gAMA_SUPPORTED
Glenn Randers-Pehrsond4df36c2010-03-06 10:45:55 -0600666# ifdef PNG_FLOATING_POINT_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500667PNG_EXTERN void png_write_gAMA PNGARG((png_structp png_ptr, double file_gamma));
Glenn Randers-Pehrsond4df36c2010-03-06 10:45:55 -0600668# endif
669# ifdef PNG_FIXED_POINT_SUPPORTED
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600670PNG_EXTERN void png_write_gAMA_fixed PNGARG((png_structp png_ptr,
671 png_fixed_point file_gamma));
Glenn Randers-Pehrsond4df36c2010-03-06 10:45:55 -0600672# endif
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500673#endif
674
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500675#ifdef PNG_WRITE_sBIT_SUPPORTED
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500676PNG_EXTERN void png_write_sBIT PNGARG((png_structp png_ptr,
677 png_const_color_8p sbit, int color_type));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500678#endif
679
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500680#ifdef PNG_WRITE_cHRM_SUPPORTED
Glenn Randers-Pehrsond4df36c2010-03-06 10:45:55 -0600681# ifdef PNG_FLOATING_POINT_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500682PNG_EXTERN void png_write_cHRM PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600683 double white_x, double white_y,
684 double red_x, double red_y, double green_x, double green_y,
685 double blue_x, double blue_y));
Glenn Randers-Pehrsond4df36c2010-03-06 10:45:55 -0600686# endif
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500687PNG_EXTERN void png_write_cHRM_fixed PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600688 png_fixed_point int_white_x, png_fixed_point int_white_y,
689 png_fixed_point int_red_x, png_fixed_point int_red_y, png_fixed_point
690 int_green_x, png_fixed_point int_green_y, png_fixed_point int_blue_x,
691 png_fixed_point int_blue_y));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500692#endif
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500693
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500694#ifdef PNG_WRITE_sRGB_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500695PNG_EXTERN void png_write_sRGB PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600696 int intent));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500697#endif
698
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500699#ifdef PNG_WRITE_iCCP_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500700PNG_EXTERN void png_write_iCCP PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500701 png_const_charp name, int compression_type,
702 png_const_charp profile, int proflen));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500703 /* Note to maintainer: profile should be png_bytep */
704#endif
705
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500706#ifdef PNG_WRITE_sPLT_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500707PNG_EXTERN void png_write_sPLT PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500708 png_const_sPLT_tp palette));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500709#endif
710
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500711#ifdef PNG_WRITE_tRNS_SUPPORTED
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500712PNG_EXTERN void png_write_tRNS PNGARG((png_structp png_ptr,
713 png_const_bytep trans, png_const_color_16p values, int number,
714 int color_type));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500715#endif
716
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500717#ifdef PNG_WRITE_bKGD_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500718PNG_EXTERN void png_write_bKGD PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500719 png_const_color_16p values, int color_type));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500720#endif
721
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500722#ifdef PNG_WRITE_hIST_SUPPORTED
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500723PNG_EXTERN void png_write_hIST PNGARG((png_structp png_ptr,
724 png_const_uint_16p hist, int num_hist));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500725#endif
726
Glenn Randers-Pehrson205483d2011-04-01 12:33:42 -0500727/* Chunks that have keywords */
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500728#if defined(PNG_WRITE_TEXT_SUPPORTED) || defined(PNG_WRITE_pCAL_SUPPORTED) || \
729 defined(PNG_WRITE_iCCP_SUPPORTED) || defined(PNG_WRITE_sPLT_SUPPORTED)
730PNG_EXTERN png_size_t png_check_keyword PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500731 png_const_charp key, png_charpp new_key));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500732#endif
733
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500734#ifdef PNG_WRITE_tEXt_SUPPORTED
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500735PNG_EXTERN void png_write_tEXt PNGARG((png_structp png_ptr, png_const_charp key,
736 png_const_charp text, png_size_t text_len));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500737#endif
738
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500739#ifdef PNG_WRITE_zTXt_SUPPORTED
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500740PNG_EXTERN void png_write_zTXt PNGARG((png_structp png_ptr, png_const_charp key,
741 png_const_charp text, png_size_t text_len, int compression));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500742#endif
743
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500744#ifdef PNG_WRITE_iTXt_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500745PNG_EXTERN void png_write_iTXt PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500746 int compression, png_const_charp key, png_const_charp lang,
747 png_const_charp lang_key, png_const_charp text));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500748#endif
749
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500750#ifdef PNG_TEXT_SUPPORTED /* Added at version 1.0.14 and 1.2.4 */
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500751PNG_EXTERN int png_set_text_2 PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500752 png_infop info_ptr, png_const_textp text_ptr, int num_text));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500753#endif
754
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500755#ifdef PNG_WRITE_oFFs_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500756PNG_EXTERN void png_write_oFFs PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600757 png_int_32 x_offset, png_int_32 y_offset, int unit_type));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500758#endif
759
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500760#ifdef PNG_WRITE_pCAL_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500761PNG_EXTERN void png_write_pCAL PNGARG((png_structp png_ptr, png_charp purpose,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600762 png_int_32 X0, png_int_32 X1, int type, int nparams,
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500763 png_const_charp units, png_charpp params));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500764#endif
765
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500766#ifdef PNG_WRITE_pHYs_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500767PNG_EXTERN void png_write_pHYs PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600768 png_uint_32 x_pixels_per_unit, png_uint_32 y_pixels_per_unit,
769 int unit_type));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500770#endif
771
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500772#ifdef PNG_WRITE_tIME_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500773PNG_EXTERN void png_write_tIME PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500774 png_const_timep mod_time));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500775#endif
776
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500777#ifdef PNG_WRITE_sCAL_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500778PNG_EXTERN void png_write_sCAL_s PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500779 int unit, png_const_charp width, png_const_charp height));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500780#endif
781
782/* Called when finished processing a row of data */
783PNG_EXTERN void png_write_finish_row PNGARG((png_structp png_ptr));
784
785/* Internal use only. Called before first row of data */
786PNG_EXTERN void png_write_start_row PNGARG((png_structp png_ptr));
787
Glenn Randers-Pehrson6c7a09a2009-06-15 21:57:39 -0500788/* Combine a row of data, dealing with alpha, etc. if requested */
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500789PNG_EXTERN void png_combine_row PNGARG((png_structp png_ptr, png_bytep row,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600790 int mask));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500791
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500792#ifdef PNG_READ_INTERLACING_SUPPORTED
Glenn Randers-Pehrson6c7a09a2009-06-15 21:57:39 -0500793/* Expand an interlaced row */
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500794/* OLD pre-1.0.9 interface:
795PNG_EXTERN void png_do_read_interlace PNGARG((png_row_infop row_info,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600796 png_bytep row, int pass, png_uint_32 transformations));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500797 */
798PNG_EXTERN void png_do_read_interlace PNGARG((png_structp png_ptr));
799#endif
800
801/* GRR TO DO (2.0 or whenever): simplify other internal calling interfaces */
802
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500803#ifdef PNG_WRITE_INTERLACING_SUPPORTED
Glenn Randers-Pehrson6c7a09a2009-06-15 21:57:39 -0500804/* Grab pixels out of a row for an interlaced pass */
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500805PNG_EXTERN void png_do_write_interlace PNGARG((png_row_infop row_info,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600806 png_bytep row, int pass));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500807#endif
808
Glenn Randers-Pehrson6c7a09a2009-06-15 21:57:39 -0500809/* Unfilter a row */
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500810PNG_EXTERN void png_read_filter_row PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500811 png_row_infop row_info, png_bytep row, png_const_bytep prev_row,
812 int filter));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500813
814/* Choose the best filter to use and filter the row data */
815PNG_EXTERN void png_write_find_filter PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600816 png_row_infop row_info));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500817
Glenn Randers-Pehrson6c7a09a2009-06-15 21:57:39 -0500818/* Finish a row while reading, dealing with interlacing passes, etc. */
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500819PNG_EXTERN void png_read_finish_row PNGARG((png_structp png_ptr));
820
Glenn Randers-Pehrson6c7a09a2009-06-15 21:57:39 -0500821/* Initialize the row buffers, etc. */
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500822PNG_EXTERN void png_read_start_row PNGARG((png_structp png_ptr));
John Bowler4a12f4a2011-04-17 18:34:22 -0500823
824#ifdef PNG_READ_TRANSFORMS_SUPPORTED
Glenn Randers-Pehrson6c7a09a2009-06-15 21:57:39 -0500825/* Optional call to update the users info structure */
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500826PNG_EXTERN void png_read_transform_info PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600827 png_infop info_ptr));
John Bowler4a12f4a2011-04-17 18:34:22 -0500828#endif
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500829
Glenn Randers-Pehrson6c7a09a2009-06-15 21:57:39 -0500830/* These are the functions that do the transformations */
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500831#ifdef PNG_READ_FILLER_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500832PNG_EXTERN void png_do_read_filler PNGARG((png_row_infop row_info,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600833 png_bytep row, png_uint_32 filler, png_uint_32 flags));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500834#endif
835
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500836#ifdef PNG_READ_SWAP_ALPHA_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500837PNG_EXTERN void png_do_read_swap_alpha PNGARG((png_row_infop row_info,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600838 png_bytep row));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500839#endif
840
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500841#ifdef PNG_WRITE_SWAP_ALPHA_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500842PNG_EXTERN void png_do_write_swap_alpha PNGARG((png_row_infop row_info,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600843 png_bytep row));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500844#endif
845
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500846#ifdef PNG_READ_INVERT_ALPHA_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500847PNG_EXTERN void png_do_read_invert_alpha PNGARG((png_row_infop row_info,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600848 png_bytep row));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500849#endif
850
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500851#ifdef PNG_WRITE_INVERT_ALPHA_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500852PNG_EXTERN void png_do_write_invert_alpha PNGARG((png_row_infop row_info,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600853 png_bytep row));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500854#endif
855
856#if defined(PNG_WRITE_FILLER_SUPPORTED) || \
857 defined(PNG_READ_STRIP_ALPHA_SUPPORTED)
John Bowler9b872f42011-02-12 09:00:16 -0600858PNG_EXTERN void png_do_strip_channel PNGARG((png_row_infop row_info,
859 png_bytep row, int at_start));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500860#endif
861
Glenn Randers-Pehrson39515c92010-08-28 06:21:35 -0500862#ifdef PNG_16BIT_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500863#if defined(PNG_READ_SWAP_SUPPORTED) || defined(PNG_WRITE_SWAP_SUPPORTED)
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500864PNG_EXTERN void png_do_swap PNGARG((png_row_infop row_info,
865 png_bytep row));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500866#endif
Glenn Randers-Pehrson39515c92010-08-28 06:21:35 -0500867#endif
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500868
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600869#if defined(PNG_READ_PACKSWAP_SUPPORTED) || \
870 defined(PNG_WRITE_PACKSWAP_SUPPORTED)
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500871PNG_EXTERN void png_do_packswap PNGARG((png_row_infop row_info,
872 png_bytep row));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500873#endif
874
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500875#ifdef PNG_READ_RGB_TO_GRAY_SUPPORTED
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500876PNG_EXTERN int png_do_rgb_to_gray PNGARG((png_structp png_ptr,
877 png_row_infop row_info, png_bytep row));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500878#endif
879
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500880#ifdef PNG_READ_GRAY_TO_RGB_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500881PNG_EXTERN void png_do_gray_to_rgb PNGARG((png_row_infop row_info,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600882 png_bytep row));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500883#endif
884
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500885#ifdef PNG_READ_PACK_SUPPORTED
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500886PNG_EXTERN void png_do_unpack PNGARG((png_row_infop row_info,
887 png_bytep row));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500888#endif
889
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500890#ifdef PNG_READ_SHIFT_SUPPORTED
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500891PNG_EXTERN void png_do_unshift PNGARG((png_row_infop row_info,
892 png_bytep row, png_const_color_8p sig_bits));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500893#endif
894
895#if defined(PNG_READ_INVERT_SUPPORTED) || defined(PNG_WRITE_INVERT_SUPPORTED)
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500896PNG_EXTERN void png_do_invert PNGARG((png_row_infop row_info,
897 png_bytep row));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500898#endif
899
John Bowler8d261262011-06-18 13:37:11 -0500900#ifdef PNG_READ_SCALE_16_TO_8_SUPPORTED
John Bowler550bab02011-06-14 06:17:26 -0500901PNG_EXTERN void png_do_scale_16_to_8 PNGARG((png_row_infop row_info,
902 png_bytep row));
Glenn Randers-Pehrson5f0b9272011-06-16 09:05:40 -0500903#endif
John Bowler550bab02011-06-14 06:17:26 -0500904
Glenn Randers-Pehrsonab63dd02011-06-17 20:04:17 -0500905#ifdef PNG_READ_STRIP_16_TO_8_SUPPORTED
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500906PNG_EXTERN void png_do_chop PNGARG((png_row_infop row_info,
907 png_bytep row));
Glenn Randers-Pehrson2232baa2011-06-14 06:59:46 -0500908#endif
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500909
Glenn Randers-Pehrson3cd7cff2010-04-16 19:27:08 -0500910#ifdef PNG_READ_QUANTIZE_SUPPORTED
911PNG_EXTERN void png_do_quantize PNGARG((png_row_infop row_info,
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500912 png_bytep row, png_const_bytep palette_lookup,
913 png_const_bytep quantize_lookup));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500914
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500915# ifdef PNG_CORRECT_PALETTE_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500916PNG_EXTERN void png_correct_palette PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600917 png_colorp palette, int num_palette));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500918# endif
919#endif
920
921#if defined(PNG_READ_BGR_SUPPORTED) || defined(PNG_WRITE_BGR_SUPPORTED)
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500922PNG_EXTERN void png_do_bgr PNGARG((png_row_infop row_info,
923 png_bytep row));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500924#endif
925
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500926#ifdef PNG_WRITE_PACK_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500927PNG_EXTERN void png_do_pack PNGARG((png_row_infop row_info,
928 png_bytep row, png_uint_32 bit_depth));
929#endif
930
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500931#ifdef PNG_WRITE_SHIFT_SUPPORTED
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500932PNG_EXTERN void png_do_shift PNGARG((png_row_infop row_info,
933 png_bytep row, png_const_color_8p bit_depth));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500934#endif
935
John Bowlerd273ad22011-05-07 21:00:28 -0500936#if defined(PNG_READ_BACKGROUND_SUPPORTED) ||\
937 defined(PNG_READ_ALPHA_MODE_SUPPORTED)
938PNG_EXTERN void png_do_compose PNGARG((png_row_infop row_info,
John Bowler4a12f4a2011-04-17 18:34:22 -0500939 png_bytep row, png_structp png_ptr));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500940#endif
941
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500942#ifdef PNG_READ_GAMMA_SUPPORTED
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500943PNG_EXTERN void png_do_gamma PNGARG((png_row_infop row_info,
John Bowler4a12f4a2011-04-17 18:34:22 -0500944 png_bytep row, png_structp png_ptr));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500945#endif
946
John Bowlerd273ad22011-05-07 21:00:28 -0500947#ifdef PNG_READ_ALPHA_MODE_SUPPORTED
948PNG_EXTERN void png_do_encode_alpha PNGARG((png_row_infop row_info,
949 png_bytep row, png_structp png_ptr));
950#endif
951
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500952#ifdef PNG_READ_EXPAND_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500953PNG_EXTERN void png_do_expand_palette PNGARG((png_row_infop row_info,
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500954 png_bytep row, png_const_colorp palette, png_const_bytep trans,
955 int num_trans));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500956PNG_EXTERN void png_do_expand PNGARG((png_row_infop row_info,
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -0500957 png_bytep row, png_const_color_16p trans_color));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500958#endif
959
John Bowler4d562962011-02-12 09:01:20 -0600960#ifdef PNG_READ_EXPAND_16_SUPPORTED
961PNG_EXTERN void png_do_expand_16 PNGARG((png_row_infop row_info,
962 png_bytep row));
963#endif
964
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500965/* The following decodes the appropriate chunks, and does error correction,
966 * then calls the appropriate callback for the chunk if it is valid.
967 */
968
Glenn Randers-Pehrson6c7a09a2009-06-15 21:57:39 -0500969/* Decode the IHDR chunk */
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500970PNG_EXTERN void png_handle_IHDR PNGARG((png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600971 png_uint_32 length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500972PNG_EXTERN void png_handle_PLTE PNGARG((png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600973 png_uint_32 length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500974PNG_EXTERN void png_handle_IEND PNGARG((png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600975 png_uint_32 length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500976
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500977#ifdef PNG_READ_bKGD_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500978PNG_EXTERN void png_handle_bKGD PNGARG((png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600979 png_uint_32 length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500980#endif
981
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500982#ifdef PNG_READ_cHRM_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500983PNG_EXTERN void png_handle_cHRM PNGARG((png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600984 png_uint_32 length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500985#endif
986
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500987#ifdef PNG_READ_gAMA_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500988PNG_EXTERN void png_handle_gAMA PNGARG((png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600989 png_uint_32 length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500990#endif
991
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500992#ifdef PNG_READ_hIST_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500993PNG_EXTERN void png_handle_hIST PNGARG((png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600994 png_uint_32 length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -0500995#endif
996
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -0500997#ifdef PNG_READ_iCCP_SUPPORTED
Glenn Randers-Pehrsonaa4e3592010-07-06 07:40:47 -0500998PNG_EXTERN void png_handle_iCCP PNGARG((png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -0600999 png_uint_32 length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001000#endif /* PNG_READ_iCCP_SUPPORTED */
1001
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -05001002#ifdef PNG_READ_iTXt_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001003PNG_EXTERN void png_handle_iTXt PNGARG((png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -06001004 png_uint_32 length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001005#endif
1006
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -05001007#ifdef PNG_READ_oFFs_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001008PNG_EXTERN void png_handle_oFFs PNGARG((png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -06001009 png_uint_32 length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001010#endif
1011
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -05001012#ifdef PNG_READ_pCAL_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001013PNG_EXTERN void png_handle_pCAL PNGARG((png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -06001014 png_uint_32 length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001015#endif
1016
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -05001017#ifdef PNG_READ_pHYs_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001018PNG_EXTERN void png_handle_pHYs PNGARG((png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -06001019 png_uint_32 length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001020#endif
1021
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -05001022#ifdef PNG_READ_sBIT_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001023PNG_EXTERN void png_handle_sBIT PNGARG((png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -06001024 png_uint_32 length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001025#endif
1026
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -05001027#ifdef PNG_READ_sCAL_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001028PNG_EXTERN void png_handle_sCAL PNGARG((png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -06001029 png_uint_32 length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001030#endif
1031
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -05001032#ifdef PNG_READ_sPLT_SUPPORTED
Glenn Randers-Pehrsonaa4e3592010-07-06 07:40:47 -05001033PNG_EXTERN void png_handle_sPLT PNGARG((png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -06001034 png_uint_32 length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001035#endif /* PNG_READ_sPLT_SUPPORTED */
1036
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -05001037#ifdef PNG_READ_sRGB_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001038PNG_EXTERN void png_handle_sRGB PNGARG((png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -06001039 png_uint_32 length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001040#endif
1041
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -05001042#ifdef PNG_READ_tEXt_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001043PNG_EXTERN void png_handle_tEXt PNGARG((png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -06001044 png_uint_32 length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001045#endif
1046
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -05001047#ifdef PNG_READ_tIME_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001048PNG_EXTERN void png_handle_tIME PNGARG((png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -06001049 png_uint_32 length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001050#endif
1051
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -05001052#ifdef PNG_READ_tRNS_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001053PNG_EXTERN void png_handle_tRNS PNGARG((png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -06001054 png_uint_32 length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001055#endif
1056
Glenn Randers-Pehrson4e6b5e92009-09-23 10:24:53 -05001057#ifdef PNG_READ_zTXt_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001058PNG_EXTERN void png_handle_zTXt PNGARG((png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -06001059 png_uint_32 length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001060#endif
1061
1062PNG_EXTERN void png_handle_unknown PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -06001063 png_infop info_ptr, png_uint_32 length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001064
1065PNG_EXTERN void png_check_chunk_name PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -05001066 png_const_bytep chunk_name));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001067
Glenn Randers-Pehrson6c7a09a2009-06-15 21:57:39 -05001068/* Handle the transformations for reading and writing */
John Bowler4a12f4a2011-04-17 18:34:22 -05001069#ifdef PNG_READ_TRANSFORMS_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001070PNG_EXTERN void png_do_read_transformations PNGARG((png_structp png_ptr));
John Bowler4a12f4a2011-04-17 18:34:22 -05001071#endif
1072#ifdef PNG_WRITE_TRANSFORMS_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001073PNG_EXTERN void png_do_write_transformations PNGARG((png_structp png_ptr));
John Bowler4a12f4a2011-04-17 18:34:22 -05001074#endif
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001075
John Bowler4a12f4a2011-04-17 18:34:22 -05001076#ifdef PNG_READ_TRANSFORMS_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001077PNG_EXTERN void png_init_read_transformations PNGARG((png_structp png_ptr));
John Bowler4a12f4a2011-04-17 18:34:22 -05001078#endif
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001079
1080#ifdef PNG_PROGRESSIVE_READ_SUPPORTED
1081PNG_EXTERN void png_push_read_chunk PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -06001082 png_infop info_ptr));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001083PNG_EXTERN void png_push_read_sig PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -06001084 png_infop info_ptr));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001085PNG_EXTERN void png_push_check_crc PNGARG((png_structp png_ptr));
1086PNG_EXTERN void png_push_crc_skip PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -06001087 png_uint_32 length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001088PNG_EXTERN void png_push_crc_finish PNGARG((png_structp png_ptr));
1089PNG_EXTERN void png_push_save_buffer PNGARG((png_structp png_ptr));
1090PNG_EXTERN void png_push_restore_buffer PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -06001091 png_bytep buffer, png_size_t buffer_length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001092PNG_EXTERN void png_push_read_IDAT PNGARG((png_structp png_ptr));
1093PNG_EXTERN void png_process_IDAT_data PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -06001094 png_bytep buffer, png_size_t buffer_length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001095PNG_EXTERN void png_push_process_row PNGARG((png_structp png_ptr));
1096PNG_EXTERN void png_push_handle_unknown PNGARG((png_structp png_ptr,
1097 png_infop info_ptr, png_uint_32 length));
1098PNG_EXTERN void png_push_have_info PNGARG((png_structp png_ptr,
1099 png_infop info_ptr));
1100PNG_EXTERN void png_push_have_end PNGARG((png_structp png_ptr,
1101 png_infop info_ptr));
1102PNG_EXTERN void png_push_have_row PNGARG((png_structp png_ptr, png_bytep row));
1103PNG_EXTERN void png_push_read_end PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -06001104 png_infop info_ptr));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001105PNG_EXTERN void png_process_some_data PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -06001106 png_infop info_ptr));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001107PNG_EXTERN void png_read_push_finish_row PNGARG((png_structp png_ptr));
Glenn Randers-Pehrsond4df36c2010-03-06 10:45:55 -06001108# ifdef PNG_READ_tEXt_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001109PNG_EXTERN void png_push_handle_tEXt PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -06001110 png_infop info_ptr, png_uint_32 length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001111PNG_EXTERN void png_push_read_tEXt PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -06001112 png_infop info_ptr));
Glenn Randers-Pehrsond4df36c2010-03-06 10:45:55 -06001113# endif
1114# ifdef PNG_READ_zTXt_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001115PNG_EXTERN void png_push_handle_zTXt PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -06001116 png_infop info_ptr, png_uint_32 length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001117PNG_EXTERN void png_push_read_zTXt PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -06001118 png_infop info_ptr));
Glenn Randers-Pehrsond4df36c2010-03-06 10:45:55 -06001119# endif
1120# ifdef PNG_READ_iTXt_SUPPORTED
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001121PNG_EXTERN void png_push_handle_iTXt PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -06001122 png_infop info_ptr, png_uint_32 length));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001123PNG_EXTERN void png_push_read_iTXt PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -06001124 png_infop info_ptr));
Glenn Randers-Pehrsond4df36c2010-03-06 10:45:55 -06001125# endif
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001126
1127#endif /* PNG_PROGRESSIVE_READ_SUPPORTED */
1128
1129#ifdef PNG_MNG_FEATURES_SUPPORTED
1130PNG_EXTERN void png_do_read_intrapixel PNGARG((png_row_infop row_info,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -06001131 png_bytep row));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001132PNG_EXTERN void png_do_write_intrapixel PNGARG((png_row_infop row_info,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -06001133 png_bytep row));
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001134#endif
1135
Glenn Randers-Pehrsonf7831012008-11-13 06:05:13 -06001136/* Added at libpng version 1.4.0 */
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -05001137#ifdef PNG_CHECK_cHRM_SUPPORTED
Glenn Randers-Pehrson134bbe42009-09-24 18:10:49 -05001138PNG_EXTERN int png_check_cHRM_fixed PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -06001139 png_fixed_point int_white_x, png_fixed_point int_white_y,
1140 png_fixed_point int_red_x, png_fixed_point int_red_y, png_fixed_point
1141 int_green_x, png_fixed_point int_green_y, png_fixed_point int_blue_x,
1142 png_fixed_point int_blue_y));
Glenn Randers-Pehrsonf7831012008-11-13 06:05:13 -06001143#endif
Glenn Randers-Pehrsonf7831012008-11-13 06:05:13 -06001144
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -05001145#ifdef PNG_CHECK_cHRM_SUPPORTED
Glenn Randers-Pehrson7ec330d2009-09-25 11:45:42 -05001146/* Added at libpng version 1.2.34 and 1.4.0 */
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -05001147/* Currently only used by png_check_cHRM_fixed */
Glenn Randers-Pehrson7ec330d2009-09-25 11:45:42 -05001148PNG_EXTERN void png_64bit_product PNGARG((long v1, long v2,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -06001149 unsigned long *hi_product, unsigned long *lo_product));
Glenn Randers-Pehrson7ec330d2009-09-25 11:45:42 -05001150#endif
1151
John Bowler7b979652011-08-16 22:36:43 -05001152#ifdef PNG_cHRM_SUPPORTED
John Bowler9b979b12011-08-16 22:58:33 -05001153/* Added at libpng version 1.5.5 */
1154typedef struct png_xy
1155{
1156 png_fixed_point redx, redy;
1157 png_fixed_point greenx, greeny;
1158 png_fixed_point bluex, bluey;
1159 png_fixed_point whitex, whitey;
1160} png_xy;
1161
1162typedef struct png_XYZ
1163{
1164 png_fixed_point redX, redY, redZ;
1165 png_fixed_point greenX, greenY, greenZ;
1166 png_fixed_point blueX, blueY, blueZ;
1167} png_XYZ;
1168
John Bowler736f40f2011-08-25 16:19:44 -05001169/* The conversion APIs return 0 on success, non-zero on a parameter error. They
1170 * allow conversion between the above representations of a color encoding. When
1171 * converting from XYZ end points to chromaticities the absolute magnitude of
1172 * the end points is lost, when converting back the sum of the Y values of the
1173 * three end points will be 1.0
1174 */
John Bowler9b979b12011-08-16 22:58:33 -05001175PNG_EXTERN int png_xy_from_XYZ PNGARG((png_xy *xy, png_XYZ XYZ));
1176PNG_EXTERN int png_XYZ_from_xy PNGARG((png_XYZ *XYZ, png_xy xy));
1177PNG_EXTERN int png_XYZ_from_xy_checked PNGARG((png_structp png_ptr,
1178 png_XYZ *XYZ, png_xy xy));
1179#endif
1180
Glenn Randers-Pehrson134bbe42009-09-24 18:10:49 -05001181/* Added at libpng version 1.4.0 */
1182PNG_EXTERN void png_check_IHDR PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -06001183 png_uint_32 width, png_uint_32 height, int bit_depth,
1184 int color_type, int interlace_type, int compression_type,
1185 int filter_type));
Glenn Randers-Pehrson134bbe42009-09-24 18:10:49 -05001186
Glenn Randers-Pehrsond29033f2009-11-07 10:46:42 -06001187/* Free all memory used by the read (old method - NOT DLL EXPORTED) */
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -05001188PNG_EXTERN void png_read_destroy PNGARG((png_structp png_ptr,
1189 png_infop info_ptr, png_infop end_info_ptr));
Glenn Randers-Pehrsond29033f2009-11-07 10:46:42 -06001190
1191/* Free any memory used in png_ptr struct (old method - NOT DLL EXPORTED) */
Glenn Randers-Pehrsonaa4e3592010-07-06 07:40:47 -05001192PNG_EXTERN void png_write_destroy PNGARG((png_structp png_ptr));
Glenn Randers-Pehrsond29033f2009-11-07 10:46:42 -06001193
1194#ifdef USE_FAR_KEYWORD /* memory model conversion function */
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -05001195PNG_EXTERN void *png_far_to_near PNGARG((png_structp png_ptr, png_voidp ptr,
Glenn Randers-Pehrsone8b1aa02010-03-06 11:39:29 -06001196 int check));
Glenn Randers-Pehrsond29033f2009-11-07 10:46:42 -06001197#endif /* USE_FAR_KEYWORD */
1198
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -05001199#if defined(PNG_FLOATING_POINT_SUPPORTED) && defined(PNG_ERROR_TEXT_SUPPORTED)
Glenn Randers-Pehrson77396b62010-08-02 08:00:10 -05001200PNG_EXTERN PNG_FUNCTION(void, png_fixed_error, (png_structp png_ptr,
1201 png_const_charp name),PNG_NORETURN);
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -05001202#endif
1203
John Bowler88b77cc2011-05-05 06:49:55 -05001204/* Puts 'string' into 'buffer' at buffer[pos], taking care never to overwrite
1205 * the end. Always leaves the buffer nul terminated. Never errors out (and
1206 * there is no error code.)
1207 */
1208PNG_EXTERN size_t png_safecat(png_charp buffer, size_t bufsize, size_t pos,
1209 png_const_charp string);
1210
John Bowlerc5bef942011-05-05 17:35:39 -05001211/* Various internal functions to handle formatted warning messages, currently
1212 * only implemented for warnings.
1213 */
1214#if defined(PNG_WARNINGS_SUPPORTED) || defined(PNG_TIME_RFC1123_SUPPORTED)
John Bowler88b77cc2011-05-05 06:49:55 -05001215/* Utility to dump an unsigned value into a buffer, given a start pointer and
1216 * and end pointer (which should point just *beyond* the end of the buffer!)
1217 * Returns the pointer to the start of the formatted string. This utility only
1218 * does unsigned values.
1219 */
1220PNG_EXTERN png_charp png_format_number(png_const_charp start, png_charp end,
1221 int format, png_alloc_size_t number);
1222
1223/* Convenience macro that takes an array: */
1224#define PNG_FORMAT_NUMBER(buffer,format,number) \
1225 png_format_number(buffer, buffer + (sizeof buffer), format, number)
1226
1227/* Suggested size for a number buffer (enough for 64 bits and a sign!) */
1228#define PNG_NUMBER_BUFFER_SIZE 24
1229
1230/* These are the integer formats currently supported, the name is formed from
1231 * the standard printf(3) format string.
1232 */
1233#define PNG_NUMBER_FORMAT_u 1 /* chose unsigned API! */
1234#define PNG_NUMBER_FORMAT_02u 2
1235#define PNG_NUMBER_FORMAT_d 1 /* chose signed API! */
1236#define PNG_NUMBER_FORMAT_02d 2
1237#define PNG_NUMBER_FORMAT_x 3
1238#define PNG_NUMBER_FORMAT_02x 4
1239#define PNG_NUMBER_FORMAT_fixed 5 /* choose the signed API */
1240#endif
1241
1242#ifdef PNG_WARNINGS_SUPPORTED
Glenn Randers-Pehrsonef217b72011-06-15 12:58:27 -05001243/* New defines and members adding in libpng-1.5.4 */
John Bowler88b77cc2011-05-05 06:49:55 -05001244# define PNG_WARNING_PARAMETER_SIZE 32
1245# define PNG_WARNING_PARAMETER_COUNT 8
1246
1247/* An l-value of this type has to be passed to the APIs below to cache the
1248 * values of the parameters to a formatted warning message.
1249 */
1250typedef char png_warning_parameters[PNG_WARNING_PARAMETER_COUNT][
1251 PNG_WARNING_PARAMETER_SIZE];
1252
1253PNG_EXTERN void png_warning_parameter(png_warning_parameters p, int number,
1254 png_const_charp string);
1255 /* Parameters are limited in size to PNG_WARNING_PARAMETER_SIZE characters,
1256 * including the trailing '\0'.
1257 */
1258PNG_EXTERN void png_warning_parameter_unsigned(png_warning_parameters p,
1259 int number, int format, png_alloc_size_t value);
1260 /* Use png_alloc_size_t because it is an unsigned type as big as any we
1261 * need to output. Use the following for a signed value.
1262 */
1263PNG_EXTERN void png_warning_parameter_signed(png_warning_parameters p,
1264 int number, int format, png_int_32 value);
1265
1266PNG_EXTERN void png_formatted_warning(png_structp png_ptr,
1267 png_warning_parameters p, png_const_charp message);
1268 /* 'message' follows the X/Open approach of using @1, @2 to insert
1269 * parameters previously supplied using the above functions. Errors in
1270 * specifying the paramters will simple result in garbage substitutions.
1271 */
1272#endif
1273
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -05001274/* ASCII to FP interfaces, currently only implemented if sCAL
1275 * support is required.
1276 */
Glenn Randers-Pehrson48dc6eb2010-07-31 07:09:58 -05001277#if defined(PNG_READ_sCAL_SUPPORTED)
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -05001278/* MAX_DIGITS is actually the maximum number of characters in an sCAL
1279 * width or height, derived from the precision (number of significant
1280 * digits - a build time settable option) and assumpitions about the
1281 * maximum ridiculous exponent.
1282 */
1283#define PNG_sCAL_MAX_DIGITS (PNG_sCAL_PRECISION+1/*.*/+1/*E*/+10/*exponent*/)
Glenn Randers-Pehrson48dc6eb2010-07-31 07:09:58 -05001284
1285#ifdef PNG_FLOATING_POINT_SUPPORTED
Glenn Randers-Pehrson2be8b642010-07-29 19:09:18 -05001286PNG_EXTERN void png_ascii_from_fp PNGARG((png_structp png_ptr, png_charp ascii,
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -05001287 png_size_t size, double fp, unsigned int precision));
Glenn Randers-Pehrson48dc6eb2010-07-31 07:09:58 -05001288#endif /* FLOATING_POINT */
1289
1290#ifdef PNG_FIXED_POINT_SUPPORTED
1291PNG_EXTERN void png_ascii_from_fixed PNGARG((png_structp png_ptr,
1292 png_charp ascii, png_size_t size, png_fixed_point fp));
1293#endif /* FIXED_POINT */
1294#endif /* READ_sCAL */
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -05001295
1296#if defined(PNG_sCAL_SUPPORTED) || defined(PNG_pCAL_SUPPORTED)
1297/* An internal API to validate the format of a floating point number.
1298 * The result is the index of the next character. If the number is
1299 * not valid it will be the index of a character in the supposed number.
1300 *
1301 * The format of a number is defined in the PNG extensions specification
1302 * and this API is strictly conformant to that spec, not anyone elses!
1303 *
1304 * The format as a regular expression is:
1305 *
1306 * [+-]?[0-9]+.?([Ee][+-]?[0-9]+)?
1307 *
1308 * or:
1309 *
1310 * [+-]?.[0-9]+(.[0-9]+)?([Ee][+-]?[0-9]+)?
1311 *
1312 * The complexity is that either integer or fraction must be present and the
1313 * fraction is permitted to have no digits only if the integer is present.
1314 *
1315 * NOTE: The dangling E problem.
1316 * There is a PNG valid floating point number in the following:
1317 *
1318 * PNG floating point numb1.ers are not greedy.
1319 *
1320 * Working this out requires *TWO* character lookahead (because of the
1321 * sign), the parser does not do this - it will fail at the 'r' - this
1322 * doesn't matter for PNG sCAL chunk values, but it requires more care
1323 * if the value were ever to be embedded in something more complex. Use
1324 * ANSI-C strtod if you need the lookahead.
1325 */
1326/* State table for the parser. */
1327#define PNG_FP_INTEGER 0 /* before or in integer */
1328#define PNG_FP_FRACTION 1 /* before or in fraction */
1329#define PNG_FP_EXPONENT 2 /* before or in exponent */
1330#define PNG_FP_STATE 3 /* mask for the above */
1331#define PNG_FP_SAW_SIGN 4 /* Saw +/- in current state */
1332#define PNG_FP_SAW_DIGIT 8 /* Saw a digit in current state */
1333#define PNG_FP_SAW_DOT 16 /* Saw a dot in current state */
1334#define PNG_FP_SAW_E 32 /* Saw an E (or e) in current state */
1335#define PNG_FP_SAW_ANY 60 /* Saw any of the above 4 */
John Bowler8d261262011-06-18 13:37:11 -05001336
1337/* These three values don't affect the parser. They are set but not used.
1338 */
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -05001339#define PNG_FP_WAS_VALID 64 /* Preceding substring is a valid fp number */
John Bowler8d261262011-06-18 13:37:11 -05001340#define PNG_FP_NEGATIVE 128 /* A negative number, including "-0" */
1341#define PNG_FP_NONZERO 256 /* A non-zero value */
1342#define PNG_FP_STICKY 448 /* The above three flags */
1343
1344/* This is available for the caller to store in 'state' if required. Do not
1345 * call the parser after setting it (the parser sometimes clears it.)
1346 */
1347#define PNG_FP_INVALID 512 /* Available for callers as a distinct value */
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -05001348
1349/* Result codes for the parser (boolean - true meants ok, false means
1350 * not ok yet.)
1351 */
1352#define PNG_FP_MAYBE 0 /* The number may be valid in the future */
1353#define PNG_FP_OK 1 /* The number is valid */
1354
John Bowler8d261262011-06-18 13:37:11 -05001355/* Tests on the sticky non-zero and negative flags. To pass these checks
1356 * the state must also indicate that the whole number is valid - this is
1357 * achieved by testing PNG_FP_SAW_DIGIT (see the implementation for why this
1358 * is equivalent to PNG_FP_OK above.)
1359 */
1360#define PNG_FP_NZ_MASK (PNG_FP_SAW_DIGIT | PNG_FP_NEGATIVE | PNG_FP_NONZERO)
1361 /* NZ_MASK: the string is valid and a non-zero negative value */
1362#define PNG_FP_Z_MASK (PNG_FP_SAW_DIGIT | PNG_FP_NONZERO)
1363 /* Z MASK: the string is valid and a non-zero value. */
1364 /* PNG_FP_SAW_DIGIT: the string is valid. */
1365#define PNG_FP_IS_ZERO(state) (((state) & PNG_FP_Z_MASK) == PNG_FP_SAW_DIGIT)
1366#define PNG_FP_IS_POSITIVE(state) (((state) & PNG_FP_NZ_MASK) == PNG_FP_Z_MASK)
1367#define PNG_FP_IS_NEGATIVE(state) (((state) & PNG_FP_NZ_MASK) == PNG_FP_NZ_MASK)
1368
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -05001369/* The actual parser. This can be called repeatedly, it updates
1370 * the index into the string and the state variable (which must
1371 * be initialzed to 0). It returns a result code, as above. There
1372 * is no point calling the parser any more if it fails to advance to
1373 * the end of the string - it is stuck on an invalid character (or
1374 * terminated by '\0').
1375 *
1376 * Note that the pointer will consume an E or even an E+ then leave
1377 * a 'maybe' state even though a preceding integer.fraction is valid.
1378 * The PNG_FP_WAS_VALID flag indicates that a preceding substring was
1379 * a valid number. It's possible to recover from this by calling
1380 * the parser again (from the start, with state 0) but with a string
1381 * that omits the last character (i.e. set the size to the index of
1382 * the problem character.) This has not been tested within libpng.
1383 */
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -05001384PNG_EXTERN int png_check_fp_number PNGARG((png_const_charp string,
1385 png_size_t size, int *statep, png_size_tp whereami));
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -05001386
1387/* This is the same but it checks a complete string and returns true
John Bowler8d261262011-06-18 13:37:11 -05001388 * only if it just contains a floating point number. As of 1.5.4 this
1389 * function also returns the state at the end of parsing the number if
1390 * it was valid (otherwise it returns 0.) This can be used for testing
1391 * for negative or zero values using the sticky flag.
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -05001392 */
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -05001393PNG_EXTERN int png_check_fp_string PNGARG((png_const_charp string,
1394 png_size_t size));
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -05001395#endif /* pCAL || sCAL */
1396
Glenn Randers-Pehrson48dc6eb2010-07-31 07:09:58 -05001397#if defined(PNG_READ_GAMMA_SUPPORTED) ||\
1398 defined(PNG_INCH_CONVERSIONS_SUPPORTED) || defined(PNG_READ_pHYs_SUPPORTED)
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -05001399/* Added at libpng version 1.5.0 */
1400/* This is a utility to provide a*times/div (rounded) and indicate
1401 * if there is an overflow. The result is a boolean - false (0)
1402 * for overflow, true (1) if no overflow, in which case *res
1403 * holds the result.
1404 */
1405PNG_EXTERN int png_muldiv PNGARG((png_fixed_point_p res, png_fixed_point a,
Glenn Randers-Pehrson8625b392011-02-03 21:43:38 -06001406 png_int_32 multiplied_by, png_int_32 divided_by));
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -05001407#endif
1408
1409#if defined(PNG_READ_GAMMA_SUPPORTED) || defined(PNG_INCH_CONVERSIONS_SUPPORTED)
1410/* Same deal, but issue a warning on overflow and return 0. */
1411PNG_EXTERN png_fixed_point png_muldiv_warn PNGARG((png_structp png_ptr,
Glenn Randers-Pehrson8625b392011-02-03 21:43:38 -06001412 png_fixed_point a, png_int_32 multiplied_by, png_int_32 divided_by));
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -05001413#endif
1414
1415#ifdef PNG_READ_GAMMA_SUPPORTED
1416/* Calculate a reciprocal - used for gamma values. This returns
1417 * 0 if the argument is 0 in order to maintain an undefined value,
1418 * there are no warnings.
1419 */
1420PNG_EXTERN png_fixed_point png_reciprocal PNGARG((png_fixed_point a));
1421
1422/* The same but gives a reciprocal of the product of two fixed point
1423 * values. Accuracy is suitable for gamma calculations but this is
1424 * not exact - use png_muldiv for that.
1425 */
1426PNG_EXTERN png_fixed_point png_reciprocal2 PNGARG((png_fixed_point a,
1427 png_fixed_point b));
1428#endif
1429
1430#ifdef PNG_READ_GAMMA_SUPPORTED
1431/* Internal fixed point gamma correction. These APIs are called as
1432 * required to convert single values - they don't need to be fast,
1433 * they are not used when processing image pixel values.
1434 *
1435 * While the input is an 'unsigned' value it must actually be the
1436 * correct bit value - 0..255 or 0..65535 as required.
1437 */
1438PNG_EXTERN png_uint_16 png_gamma_correct PNGARG((png_structp png_ptr,
Glenn Randers-Pehrson8625b392011-02-03 21:43:38 -06001439 unsigned int value, png_fixed_point gamma_value));
1440PNG_EXTERN int png_gamma_significant PNGARG((png_fixed_point gamma_value));
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -05001441PNG_EXTERN png_uint_16 png_gamma_16bit_correct PNGARG((unsigned int value,
Glenn Randers-Pehrson8625b392011-02-03 21:43:38 -06001442 png_fixed_point gamma_value));
Glenn Randers-Pehrsone600c512010-08-18 07:25:46 -05001443PNG_EXTERN png_byte png_gamma_8bit_correct PNGARG((unsigned int value,
Glenn Randers-Pehrson8625b392011-02-03 21:43:38 -06001444 png_fixed_point gamma_value));
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -05001445PNG_EXTERN void png_build_gamma_table PNGARG((png_structp png_ptr,
Glenn Randers-Pehrson67439c42010-08-19 07:01:09 -05001446 int bit_depth));
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -05001447#endif
Glenn Randers-Pehrsond29033f2009-11-07 10:46:42 -06001448
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001449/* Maintainer: Put new private prototypes here ^ and in libpngpf.3 */
1450
Glenn Randers-Pehrson31aee0d2010-07-29 17:39:14 -05001451
1452#include "pngdebug.h"
1453
Glenn Randers-Pehrson17218292006-04-20 07:20:46 -05001454#ifdef __cplusplus
1455}
1456#endif
1457
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -05001458#endif /* PNGPRIV_H */