Glenn Randers-Pehrson | d60b8fa | 2006-04-20 21:31:14 -0500 | [diff] [blame] | 1 | |
Glenn Randers-Pehrson | beb572e | 2006-08-19 13:59:24 -0500 | [diff] [blame] | 2 | /* pngpriv.h - private declarations for use inside libpng |
Glenn Randers-Pehrson | d60b8fa | 2006-04-20 21:31:14 -0500 | [diff] [blame] | 3 | * |
Glenn Randers-Pehrson | d60b8fa | 2006-04-20 21:31:14 -0500 | [diff] [blame] | 4 | * For conditions of distribution and use, see copyright notice in png.h |
Glenn Randers-Pehrson | 64b863c | 2011-01-04 09:57:06 -0600 | [diff] [blame] | 5 | * Copyright (c) 1998-2011 Glenn Randers-Pehrson |
Glenn Randers-Pehrson | d60b8fa | 2006-04-20 21:31:14 -0500 | [diff] [blame] | 6 | * (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-Pehrson | 3e61d79 | 2009-06-24 09:31:28 -0500 | [diff] [blame] | 8 | * |
Glenn Randers-Pehrson | 997b193 | 2011-09-28 07:20:10 -0500 | [diff] [blame] | 9 | * Last changed in libpng 1.5.6 [(PENDING RELEASE)] |
Glenn Randers-Pehrson | f5ea1b7 | 2011-01-06 06:42:51 -0600 | [diff] [blame] | 10 | * |
Glenn Randers-Pehrson | bfbf865 | 2009-06-26 21:46:52 -0500 | [diff] [blame] | 11 | * This code is released under the libpng license. |
Glenn Randers-Pehrson | c332bbc | 2009-06-25 13:43:50 -0500 | [diff] [blame] | 12 | * For conditions of distribution and use, see the disclaimer |
Glenn Randers-Pehrson | 037023b | 2009-06-24 10:27:36 -0500 | [diff] [blame] | 13 | * and license in png.h |
Glenn Randers-Pehrson | d60b8fa | 2006-04-20 21:31:14 -0500 | [diff] [blame] | 14 | */ |
| 15 | |
Glenn Randers-Pehrson | beb572e | 2006-08-19 13:59:24 -0500 | [diff] [blame] | 16 | /* The symbols declared in this file (including the functions declared |
| 17 | * as PNG_EXTERN) are PRIVATE. They are not part of the libpng public |
| 18 | * interface, and are not recommended for use by regular applications. |
| 19 | * Some of them may become public in the future; others may stay private, |
| 20 | * change in an incompatible way, or even disappear. |
| 21 | * Although the libpng users are not forbidden to include this header, |
| 22 | * they should be well aware of the issues that may arise from doing so. |
| 23 | */ |
| 24 | |
| 25 | #ifndef PNGPRIV_H |
| 26 | #define PNGPRIV_H |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 27 | |
Glenn Randers-Pehrson | b3b7168 | 2011-05-03 22:30:19 -0500 | [diff] [blame] | 28 | /* 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-Pehrson | b3b7168 | 2011-05-03 22:30:19 -0500 | [diff] [blame] | 41 | |
Glenn Randers-Pehrson | e600c51 | 2010-08-18 07:25:46 -0500 | [diff] [blame] | 42 | /* 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-Pehrson | 65c0339 | 2011-10-06 21:54:17 -0500 | [diff] [blame] | 47 | /* This is used to find 'offsetof', used below for alignment tests. */ |
| 48 | #include <stddef.h> |
| 49 | |
John Bowler | 7b97965 | 2011-08-16 22:36:43 -0500 | [diff] [blame] | 50 | #define PNGLIB_BUILD /*libpng is being built, not used*/ |
| 51 | |
Glenn Randers-Pehrson | aecef09 | 2010-04-17 18:03:02 -0500 | [diff] [blame] | 52 | #ifdef PNG_USER_CONFIG |
| 53 | # include "pngusr.h" |
Glenn Randers-Pehrson | 4f108d8 | 2010-08-24 21:05:43 -0500 | [diff] [blame] | 54 | /* These should have been defined in pngusr.h */ |
| 55 | # ifndef PNG_USER_PRIVATEBUILD |
| 56 | # define PNG_USER_PRIVATEBUILD "Custom libpng build" |
| 57 | # endif |
| 58 | # ifndef PNG_USER_DLLFNAME_POSTFIX |
| 59 | # define PNG_USER_DLLFNAME_POSTFIX "Cb" |
| 60 | # endif |
Glenn Randers-Pehrson | aecef09 | 2010-04-17 18:03:02 -0500 | [diff] [blame] | 61 | #endif |
John Bowler | 7b97965 | 2011-08-16 22:36:43 -0500 | [diff] [blame] | 62 | |
| 63 | /* Is this a build of a DLL where compilation of the object modules requires |
| 64 | * different preprocessor settings to those required for a simple library? If |
| 65 | * so PNG_BUILD_DLL must be set. |
| 66 | * |
| 67 | * If libpng is used inside a DLL but that DLL does not export the libpng APIs |
| 68 | * PNG_BUILD_DLL must not be set. To avoid the code below kicking in build a |
| 69 | * static library of libpng then link the DLL against that. |
| 70 | */ |
| 71 | #ifndef PNG_BUILD_DLL |
| 72 | # ifdef DLL_EXPORT |
| 73 | /* This is set by libtool when files are compiled for a DLL; libtool |
| 74 | * always compiles twice, even on systems where it isn't necessary. Set |
| 75 | * PNG_BUILD_DLL in case it is necessary: |
| 76 | */ |
| 77 | # define PNG_BUILD_DLL |
| 78 | # else |
| 79 | # ifdef _WINDLL |
| 80 | /* This is set by the Microsoft Visual Studio IDE in projects that |
| 81 | * build a DLL. It can't easily be removed from those projects (it |
| 82 | * isn't visible in the Visual Studio UI) so it is a fairly reliable |
| 83 | * indication that PNG_IMPEXP needs to be set to the DLL export |
| 84 | * attributes. |
| 85 | */ |
| 86 | # define PNG_BUILD_DLL |
| 87 | # else |
| 88 | # ifdef __DLL__ |
| 89 | /* This is set by the Borland C system when compiling for a DLL |
| 90 | * (as above.) |
| 91 | */ |
| 92 | # define PNG_BUILD_DLL |
| 93 | # else |
| 94 | /* Add additional compiler cases here. */ |
| 95 | # endif |
| 96 | # endif |
| 97 | # endif |
| 98 | #endif /* Setting PNG_BUILD_DLL if required */ |
| 99 | |
| 100 | /* See pngconf.h for more details: the builder of the library may set this on |
| 101 | * the command line to the right thing for the specific compilation system or it |
| 102 | * may be automagically set above (at present we know of no system where it does |
| 103 | * need to be set on the command line.) |
| 104 | * |
| 105 | * PNG_IMPEXP must be set here when building the library to prevent pngconf.h |
| 106 | * setting it to the "import" setting for a DLL build. |
| 107 | */ |
| 108 | #ifndef PNG_IMPEXP |
| 109 | # ifdef PNG_BUILD_DLL |
| 110 | # define PNG_IMPEXP PNG_DLL_EXPORT |
| 111 | # else |
| 112 | /* Not building a DLL, or the DLL doesn't require specific export |
| 113 | * definitions. |
| 114 | */ |
| 115 | # define PNG_IMPEXP |
| 116 | # endif |
| 117 | #endif |
| 118 | |
| 119 | /* No warnings for private or deprecated functions in the build: */ |
| 120 | #ifndef PNG_DEPRECATED |
| 121 | # define PNG_DEPRECATED |
| 122 | #endif |
| 123 | #ifndef PNG_PRIVATE |
| 124 | # define PNG_PRIVATE |
| 125 | #endif |
| 126 | |
Glenn Randers-Pehrson | c3cd22b | 2010-03-08 21:10:25 -0600 | [diff] [blame] | 127 | #include "png.h" |
| 128 | #include "pnginfo.h" |
| 129 | #include "pngstruct.h" |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 130 | |
John Bowler | 7b97965 | 2011-08-16 22:36:43 -0500 | [diff] [blame] | 131 | /* pngconf.h does not set PNG_DLL_EXPORT unless it is required, so: */ |
| 132 | #ifndef PNG_DLL_EXPORT |
| 133 | # define PNG_DLL_EXPORT |
| 134 | #endif |
| 135 | |
Glenn Randers-Pehrson | e600c51 | 2010-08-18 07:25:46 -0500 | [diff] [blame] | 136 | /* This is used for 16 bit gamma tables - only the top level pointers are const, |
| 137 | * this could be changed: |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 138 | */ |
Glenn Randers-Pehrson | e600c51 | 2010-08-18 07:25:46 -0500 | [diff] [blame] | 139 | typedef PNG_CONST png_uint_16p FAR * png_const_uint_16pp; |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 140 | |
Glenn Randers-Pehrson | dc6182a | 2010-03-09 16:45:06 -0600 | [diff] [blame] | 141 | /* Added at libpng-1.2.9 */ |
| 142 | /* Moved to pngpriv.h at libpng-1.5.0 */ |
| 143 | |
| 144 | /* config.h is created by and PNG_CONFIGURE_LIBPNG is set by the "configure" |
Glenn Randers-Pehrson | 862cb20 | 2010-04-16 22:12:51 -0500 | [diff] [blame] | 145 | * script. We may need it here to get the correct configuration on things |
| 146 | * like limits. |
Glenn Randers-Pehrson | dc6182a | 2010-03-09 16:45:06 -0600 | [diff] [blame] | 147 | */ |
| 148 | #ifdef PNG_CONFIGURE_LIBPNG |
| 149 | # ifdef HAVE_CONFIG_H |
| 150 | # include "config.h" |
| 151 | # endif |
| 152 | #endif |
| 153 | |
Glenn Randers-Pehrson | 862cb20 | 2010-04-16 22:12:51 -0500 | [diff] [blame] | 154 | /* Moved to pngpriv.h at libpng-1.5.0 */ |
Glenn Randers-Pehrson | 9f044c1 | 2010-12-07 14:59:43 -0600 | [diff] [blame] | 155 | /* NOTE: some of these may have been used in external applications as |
| 156 | * these definitions were exposed in pngconf.h prior to 1.5. |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 157 | */ |
Glenn Randers-Pehrson | 9f044c1 | 2010-12-07 14:59:43 -0600 | [diff] [blame] | 158 | |
Glenn Randers-Pehrson | 862cb20 | 2010-04-16 22:12:51 -0500 | [diff] [blame] | 159 | /* If you are running on a machine where you cannot allocate more |
| 160 | * than 64K of memory at once, uncomment this. While libpng will not |
| 161 | * normally need that much memory in a chunk (unless you load up a very |
| 162 | * large file), zlib needs to know how big of a chunk it can use, and |
| 163 | * libpng thus makes sure to check any memory allocation to verify it |
| 164 | * will fit into memory. |
| 165 | * |
| 166 | * zlib provides 'MAXSEG_64K' which, if defined, indicates the |
| 167 | * same limit and pngconf.h (already included) sets the limit |
| 168 | * if certain operating systems are detected. |
| 169 | */ |
| 170 | #if defined(MAXSEG_64K) && !defined(PNG_MAX_MALLOC_64K) |
| 171 | # define PNG_MAX_MALLOC_64K |
| 172 | #endif |
| 173 | |
Glenn Randers-Pehrson | f3dd1cc | 2011-03-18 22:02:20 -0500 | [diff] [blame] | 174 | #ifndef PNG_UNUSED |
Glenn Randers-Pehrson | 25d2d47 | 2011-01-31 10:25:10 -0600 | [diff] [blame] | 175 | /* Unused formal parameter warnings are silenced using the following macro |
| 176 | * which is expected to have no bad effects on performance (optimizing |
| 177 | * compilers will probably remove it entirely). Note that if you replace |
| 178 | * it with something other than whitespace, you must include the terminating |
| 179 | * semicolon. |
Glenn Randers-Pehrson | d546f43 | 2010-12-04 20:41:36 -0600 | [diff] [blame] | 180 | */ |
Glenn Randers-Pehrson | f3dd1cc | 2011-03-18 22:02:20 -0500 | [diff] [blame] | 181 | # define PNG_UNUSED(param) (void)param; |
| 182 | #endif |
Glenn Randers-Pehrson | bf3293a | 2011-01-28 15:14:43 -0600 | [diff] [blame] | 183 | |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 184 | /* Just a little check that someone hasn't tried to define something |
| 185 | * contradictory. |
Glenn Randers-Pehrson | 862cb20 | 2010-04-16 22:12:51 -0500 | [diff] [blame] | 186 | */ |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 187 | #if (PNG_ZBUF_SIZE > 65536L) && defined(PNG_MAX_MALLOC_64K) |
| 188 | # undef PNG_ZBUF_SIZE |
| 189 | # define PNG_ZBUF_SIZE 65536L |
Glenn Randers-Pehrson | 862cb20 | 2010-04-16 22:12:51 -0500 | [diff] [blame] | 190 | #endif |
| 191 | |
John Bowler | 8d26126 | 2011-06-18 13:37:11 -0500 | [diff] [blame] | 192 | /* PNG_STATIC is used to mark internal file scope functions if they need to be |
| 193 | * accessed for implementation tests (see the code in tests/?*). |
| 194 | */ |
| 195 | #ifndef PNG_STATIC |
| 196 | # define PNG_STATIC static |
| 197 | #endif |
| 198 | |
John Bowler | 88b77cc | 2011-05-05 06:49:55 -0500 | [diff] [blame] | 199 | /* If warnings or errors are turned off the code is disabled or redirected here. |
Glenn Randers-Pehrson | ef217b7 | 2011-06-15 12:58:27 -0500 | [diff] [blame] | 200 | * From 1.5.4 functions have been added to allow very limited formatting of |
John Bowler | 88b77cc | 2011-05-05 06:49:55 -0500 | [diff] [blame] | 201 | * error and warning messages - this code will also be disabled here. |
Glenn Randers-Pehrson | aecef09 | 2010-04-17 18:03:02 -0500 | [diff] [blame] | 202 | */ |
John Bowler | 88b77cc | 2011-05-05 06:49:55 -0500 | [diff] [blame] | 203 | #ifdef PNG_WARNINGS_SUPPORTED |
| 204 | # define PNG_WARNING_PARAMETERS(p) png_warning_parameters p; |
| 205 | #else |
| 206 | # define png_warning(s1,s2) ((void)(s1)) |
| 207 | # define png_chunk_warning(s1,s2) ((void)(s1)) |
| 208 | # define png_warning_parameter(p,number,string) ((void)0) |
| 209 | # define png_warning_parameter_unsigned(p,number,format,value) ((void)0) |
| 210 | # define png_warning_parameter_signed(p,number,format,value) ((void)0) |
| 211 | # define png_formatted_warning(pp,p,message) ((void)(pp)) |
Glenn Randers-Pehrson | af855e4 | 2011-05-07 10:52:49 -0500 | [diff] [blame] | 212 | # define PNG_WARNING_PARAMETERS(p) |
Glenn Randers-Pehrson | aecef09 | 2010-04-17 18:03:02 -0500 | [diff] [blame] | 213 | #endif |
| 214 | #ifndef PNG_ERROR_TEXT_SUPPORTED |
| 215 | # define png_error(s1,s2) png_err(s1) |
| 216 | # define png_chunk_error(s1,s2) png_err(s1) |
Glenn Randers-Pehrson | 48dc6eb | 2010-07-31 07:09:58 -0500 | [diff] [blame] | 217 | # define png_fixed_error(s1,s2) png_err(s1) |
Glenn Randers-Pehrson | 862cb20 | 2010-04-16 22:12:51 -0500 | [diff] [blame] | 218 | #endif |
| 219 | |
Glenn Randers-Pehrson | 0ee5144 | 2010-07-12 06:29:17 -0500 | [diff] [blame] | 220 | #ifndef PNG_EXTERN |
Glenn Randers-Pehrson | beb572e | 2006-08-19 13:59:24 -0500 | [diff] [blame] | 221 | /* The functions exported by PNG_EXTERN are internal functions, which |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 222 | * aren't usually used outside the library (as far as I know), so it is |
Glenn Randers-Pehrson | beb572e | 2006-08-19 13:59:24 -0500 | [diff] [blame] | 223 | * debatable if they should be exported at all. In the future, when it |
| 224 | * is possible to have run-time registry of chunk-handling functions, |
Glenn Randers-Pehrson | 9f044c1 | 2010-12-07 14:59:43 -0600 | [diff] [blame] | 225 | * some of these might be made available again. |
Glenn Randers-Pehrson | 0ee5144 | 2010-07-12 06:29:17 -0500 | [diff] [blame] | 226 | # define PNG_EXTERN extern |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 227 | */ |
Glenn Randers-Pehrson | 0ee5144 | 2010-07-12 06:29:17 -0500 | [diff] [blame] | 228 | # define PNG_EXTERN |
| 229 | #endif |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 230 | |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 231 | /* Some fixed point APIs are still required even if not exported because |
| 232 | * they get used by the corresponding floating point APIs. This magic |
| 233 | * deals with this: |
| 234 | */ |
| 235 | #ifdef PNG_FIXED_POINT_SUPPORTED |
| 236 | # define PNGFAPI PNGAPI |
| 237 | #else |
| 238 | # define PNGFAPI /* PRIVATE */ |
| 239 | #endif |
| 240 | |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 241 | /* Other defines specific to compilers can go here. Try to keep |
| 242 | * them inside an appropriate ifdef/endif pair for portability. |
| 243 | */ |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 244 | #if defined(PNG_FLOATING_POINT_SUPPORTED) ||\ |
| 245 | defined(PNG_FLOATING_ARITHMETIC_SUPPORTED) |
Glenn Randers-Pehrson | 233357e | 2010-07-29 21:49:38 -0500 | [diff] [blame] | 246 | /* png.c requires the following ANSI-C constants if the conversion of |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 247 | * floating point to ASCII is implemented therein: |
Glenn Randers-Pehrson | c36bb79 | 2011-02-12 09:49:07 -0600 | [diff] [blame] | 248 | * |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 249 | * DBL_DIG Maximum number of decimal digits (can be set to any constant) |
Glenn Randers-Pehrson | 233357e | 2010-07-29 21:49:38 -0500 | [diff] [blame] | 250 | * DBL_MIN Smallest normalized fp number (can be set to an arbitrary value) |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 251 | * DBL_MAX Maximum floating point number (can be set to an arbitrary value) |
| 252 | */ |
| 253 | # include <float.h> |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 254 | |
Glenn Randers-Pehrson | d00bbb2 | 2010-03-14 09:15:49 -0500 | [diff] [blame] | 255 | # if (defined(__MWERKS__) && defined(macintosh)) || defined(applec) || \ |
| 256 | defined(THINK_C) || defined(__SC__) || defined(TARGET_OS_MAC) |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 257 | /* We need to check that <math.h> hasn't already been included earlier |
| 258 | * as it seems it doesn't agree with <fp.h>, yet we should really use |
| 259 | * <fp.h> if possible. |
| 260 | */ |
| 261 | # if !defined(__MATH_H__) && !defined(__MATH_H) && !defined(__cmath__) |
| 262 | # include <fp.h> |
| 263 | # endif |
| 264 | # else |
| 265 | # include <math.h> |
| 266 | # endif |
| 267 | # if defined(_AMIGA) && defined(__SASC) && defined(_M68881) |
| 268 | /* Amiga SAS/C: We must include builtin FPU functions when compiling using |
| 269 | * MATH=68881 |
| 270 | */ |
| 271 | # include <m68881.h> |
| 272 | # endif |
| 273 | #endif |
| 274 | |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 275 | /* This provides the non-ANSI (far) memory allocation routines. */ |
| 276 | #if defined(__TURBOC__) && defined(__MSDOS__) |
| 277 | # include <mem.h> |
| 278 | # include <alloc.h> |
| 279 | #endif |
| 280 | |
| 281 | #if defined(WIN32) || defined(_Windows) || defined(_WINDOWS) || \ |
Glenn Randers-Pehrson | f74c5ac | 2009-09-20 07:27:34 -0500 | [diff] [blame] | 282 | defined(_WIN32) || defined(__WIN32__) |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 283 | # include <windows.h> /* defines _WINDOWS_ macro */ |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 284 | #endif |
| 285 | |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 286 | /* Moved here around 1.5.0beta36 from pngconf.h */ |
| 287 | /* Users may want to use these so they are not private. Any library |
| 288 | * functions that are passed far data must be model-independent. |
Glenn Randers-Pehrson | 862cb20 | 2010-04-16 22:12:51 -0500 | [diff] [blame] | 289 | */ |
| 290 | |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 291 | /* Memory model/platform independent fns */ |
| 292 | #ifndef PNG_ABORT |
| 293 | # ifdef _WINDOWS_ |
| 294 | # define PNG_ABORT() ExitProcess(0) |
| 295 | # else |
| 296 | # define PNG_ABORT() abort() |
| 297 | # endif |
Glenn Randers-Pehrson | 862cb20 | 2010-04-16 22:12:51 -0500 | [diff] [blame] | 298 | #endif |
| 299 | |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 300 | #ifdef USE_FAR_KEYWORD |
| 301 | /* Use this to make far-to-near assignments */ |
| 302 | # define CHECK 1 |
| 303 | # define NOCHECK 0 |
| 304 | # define CVT_PTR(ptr) (png_far_to_near(png_ptr,ptr,CHECK)) |
| 305 | # define CVT_PTR_NOCHECK(ptr) (png_far_to_near(png_ptr,ptr,NOCHECK)) |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 306 | # define png_strlen _fstrlen |
| 307 | # define png_memcmp _fmemcmp /* SJT: added */ |
| 308 | # define png_memcpy _fmemcpy |
| 309 | # define png_memset _fmemset |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 310 | #else |
| 311 | # ifdef _WINDOWS_ /* Favor Windows over C runtime fns */ |
| 312 | # define CVT_PTR(ptr) (ptr) |
| 313 | # define CVT_PTR_NOCHECK(ptr) (ptr) |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 314 | # define png_strlen lstrlenA |
| 315 | # define png_memcmp memcmp |
| 316 | # define png_memcpy CopyMemory |
| 317 | # define png_memset memset |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 318 | # else |
| 319 | # define CVT_PTR(ptr) (ptr) |
| 320 | # define CVT_PTR_NOCHECK(ptr) (ptr) |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 321 | # define png_strlen strlen |
| 322 | # define png_memcmp memcmp /* SJT: added */ |
| 323 | # define png_memcpy memcpy |
| 324 | # define png_memset memset |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 325 | # endif |
| 326 | #endif |
Glenn Randers-Pehrson | 65c0339 | 2011-10-06 21:54:17 -0500 | [diff] [blame] | 327 | |
John Bowler | 4e68aa7 | 2011-10-11 16:01:33 -0500 | [diff] [blame^] | 328 | /* These macros may need to be architecture dependent. */ |
| 329 | #define PNG_ALIGN_NONE 0 /* do not use data alignment */ |
| 330 | #define PNG_ALIGN_ALWAYS 1 /* assume unaligned accesses are OK */ |
Glenn Randers-Pehrson | 65c0339 | 2011-10-06 21:54:17 -0500 | [diff] [blame] | 331 | #ifdef offsetof |
John Bowler | 4e68aa7 | 2011-10-11 16:01:33 -0500 | [diff] [blame^] | 332 | # define PNG_ALIGN_OFFSET 2 /* use offsetof to determine alignment */ |
| 333 | #else |
| 334 | # define PNG_ALIGN_OFFSET -1 /* prevent the use of this */ |
| 335 | #endif |
| 336 | #define PNG_ALIGN_SIZE 3 /* use sizeof to determine alignment */ |
| 337 | |
| 338 | #ifndef PNG_ALIGN_TYPE |
| 339 | /* Default to using aligned access optimizations and requiring alignment to a |
| 340 | * multiple of the data type size. Override in a compiler specific fashion |
| 341 | * if necessary by inserting tests here: |
| 342 | */ |
| 343 | # define PNG_ALIGN_TYPE PNG_ALIGN_SIZE |
| 344 | #endif |
| 345 | |
| 346 | #if PNG_ALIGN_TYPE == PNG_ALIGN_SIZE |
| 347 | /* This is used because in some compiler implementations non-aligned |
| 348 | * structure members are supported, so the offsetof approach below fails. |
| 349 | * Set PNG_ALIGN_TO_SIZE=0 for compiler combinations where unaligned access |
| 350 | * is good for performance. Do not do this unless you have tested the result |
| 351 | * and understand it. |
| 352 | */ |
| 353 | # define png_alignof(type) (sizeof (type)) |
| 354 | #else |
| 355 | # if PNG_ALIGN_TYPE == PNG_ALIGN_OFFSET |
| 356 | # define png_alignof(type) offsetof(struct{char c; type t;}, t) |
| 357 | # else |
| 358 | # if PNG_ALIGN_TYPE == PNG_ALIGN_ALWAYS |
| 359 | # define png_alignof(type) (1) |
| 360 | # endif |
| 361 | /* Else leave png_alignof undefined to prevent use thereof */ |
| 362 | # endif |
Glenn Randers-Pehrson | 65c0339 | 2011-10-06 21:54:17 -0500 | [diff] [blame] | 363 | #endif |
| 364 | |
| 365 | /* This implicitly assumes alignment is always to a power of 2. */ |
| 366 | #ifdef png_alignof |
| 367 | # define png_isaligned(ptr, type)\ |
John Bowler | 4e68aa7 | 2011-10-11 16:01:33 -0500 | [diff] [blame^] | 368 | ((((const char*)ptr-(const char*)0) & (png_alignof(type)-1)) == 0) |
Glenn Randers-Pehrson | 65c0339 | 2011-10-06 21:54:17 -0500 | [diff] [blame] | 369 | #else |
| 370 | # define png_isaligned(ptr, type) 0 |
| 371 | #endif |
| 372 | |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 373 | /* End of memory model/platform independent support */ |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 374 | /* End of 1.5.0beta36 move from pngconf.h */ |
| 375 | |
| 376 | /* CONSTANTS and UTILITY MACROS |
| 377 | * These are used internally by libpng and not exposed in the API |
Glenn Randers-Pehrson | 862cb20 | 2010-04-16 22:12:51 -0500 | [diff] [blame] | 378 | */ |
Glenn Randers-Pehrson | 9f044c1 | 2010-12-07 14:59:43 -0600 | [diff] [blame] | 379 | |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 380 | /* Various modes of operation. Note that after an init, mode is set to |
Glenn Randers-Pehrson | 2d3fc1c | 2011-05-10 23:48:00 -0500 | [diff] [blame] | 381 | * zero automatically when the structure is created. Three of these |
| 382 | * are defined in png.h because they need to be visible to applications |
| 383 | * that call png_set_unknown_chunk(). |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 384 | */ |
Glenn Randers-Pehrson | 2d3fc1c | 2011-05-10 23:48:00 -0500 | [diff] [blame] | 385 | /* #define PNG_HAVE_IHDR 0x01 (defined in png.h) */ |
| 386 | /* #define PNG_HAVE_PLTE 0x02 (defined in png.h) */ |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 387 | #define PNG_HAVE_IDAT 0x04 |
Glenn Randers-Pehrson | 2d3fc1c | 2011-05-10 23:48:00 -0500 | [diff] [blame] | 388 | /* #define PNG_AFTER_IDAT 0x08 (defined in png.h) */ |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 389 | #define PNG_HAVE_IEND 0x10 |
| 390 | #define PNG_HAVE_gAMA 0x20 |
| 391 | #define PNG_HAVE_cHRM 0x40 |
| 392 | #define PNG_HAVE_sRGB 0x80 |
| 393 | #define PNG_HAVE_CHUNK_HEADER 0x100 |
| 394 | #define PNG_WROTE_tIME 0x200 |
| 395 | #define PNG_WROTE_INFO_BEFORE_PLTE 0x400 |
| 396 | #define PNG_BACKGROUND_IS_GRAY 0x800 |
| 397 | #define PNG_HAVE_PNG_SIGNATURE 0x1000 |
Glenn Randers-Pehrson | 6bc53be | 2006-06-16 07:52:03 -0500 | [diff] [blame] | 398 | #define PNG_HAVE_CHUNK_AFTER_IDAT 0x2000 /* Have another chunk after IDAT */ |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 399 | |
Glenn Randers-Pehrson | 6c7a09a | 2009-06-15 21:57:39 -0500 | [diff] [blame] | 400 | /* Flags for the transformations the PNG library does on the image data */ |
Glenn Randers-Pehrson | 1916f6a | 2008-08-14 13:44:49 -0500 | [diff] [blame] | 401 | #define PNG_BGR 0x0001 |
| 402 | #define PNG_INTERLACE 0x0002 |
| 403 | #define PNG_PACK 0x0004 |
| 404 | #define PNG_SHIFT 0x0008 |
| 405 | #define PNG_SWAP_BYTES 0x0010 |
| 406 | #define PNG_INVERT_MONO 0x0020 |
Glenn Randers-Pehrson | 3cd7cff | 2010-04-16 19:27:08 -0500 | [diff] [blame] | 407 | #define PNG_QUANTIZE 0x0040 |
John Bowler | d273ad2 | 2011-05-07 21:00:28 -0500 | [diff] [blame] | 408 | #define PNG_COMPOSE 0x0080 /* Was PNG_BACKGROUND */ |
Glenn Randers-Pehrson | 1916f6a | 2008-08-14 13:44:49 -0500 | [diff] [blame] | 409 | #define PNG_BACKGROUND_EXPAND 0x0100 |
John Bowler | 4d56296 | 2011-02-12 09:01:20 -0600 | [diff] [blame] | 410 | #define PNG_EXPAND_16 0x0200 /* Added to libpng 1.5.2 */ |
John Bowler | 8d26126 | 2011-06-18 13:37:11 -0500 | [diff] [blame] | 411 | #define PNG_16_TO_8 0x0400 /* Becomes 'chop' in 1.5.4 */ |
Glenn Randers-Pehrson | 1916f6a | 2008-08-14 13:44:49 -0500 | [diff] [blame] | 412 | #define PNG_RGBA 0x0800 |
| 413 | #define PNG_EXPAND 0x1000 |
| 414 | #define PNG_GAMMA 0x2000 |
| 415 | #define PNG_GRAY_TO_RGB 0x4000 |
Glenn Randers-Pehrson | d326111 | 2011-09-15 08:12:08 -0500 | [diff] [blame] | 416 | #define PNG_FILLER 0x8000 |
| 417 | #define PNG_PACKSWAP 0x10000 |
| 418 | #define PNG_SWAP_ALPHA 0x20000 |
| 419 | #define PNG_STRIP_ALPHA 0x40000 |
| 420 | #define PNG_INVERT_ALPHA 0x80000 |
| 421 | #define PNG_USER_TRANSFORM 0x100000 |
| 422 | #define PNG_RGB_TO_GRAY_ERR 0x200000 |
| 423 | #define PNG_RGB_TO_GRAY_WARN 0x400000 |
| 424 | #define PNG_RGB_TO_GRAY 0x600000 /* two bits, RGB_TO_GRAY_ERR|WARN */ |
| 425 | #define PNG_ENCODE_ALPHA 0x800000 /* Added to libpng-1.5.4 */ |
| 426 | #define PNG_ADD_ALPHA 0x1000000 /* Added to libpng-1.2.7 */ |
| 427 | #define PNG_EXPAND_tRNS 0x2000000 /* Added to libpng-1.2.9 */ |
| 428 | #define PNG_SCALE_16_TO_8 0x4000000 /* Added to libpng-1.5.4 */ |
| 429 | /* 0x8000000 unused */ |
| 430 | /* 0x10000000 unused */ |
| 431 | /* 0x20000000 unused */ |
| 432 | /* 0x40000000 unused */ |
Glenn Randers-Pehrson | 6c7a09a | 2009-06-15 21:57:39 -0500 | [diff] [blame] | 433 | /* Flags for png_create_struct */ |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 434 | #define PNG_STRUCT_PNG 0x0001 |
| 435 | #define PNG_STRUCT_INFO 0x0002 |
| 436 | |
| 437 | /* Scaling factor for filter heuristic weighting calculations */ |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 438 | #define PNG_WEIGHT_FACTOR (1<<(PNG_WEIGHT_SHIFT)) |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 439 | #define PNG_COST_FACTOR (1<<(PNG_COST_SHIFT)) |
| 440 | |
Glenn Randers-Pehrson | 6c7a09a | 2009-06-15 21:57:39 -0500 | [diff] [blame] | 441 | /* Flags for the png_ptr->flags rather than declaring a byte for each one */ |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 442 | #define PNG_FLAG_ZLIB_CUSTOM_STRATEGY 0x0001 |
| 443 | #define PNG_FLAG_ZLIB_CUSTOM_LEVEL 0x0002 |
| 444 | #define PNG_FLAG_ZLIB_CUSTOM_MEM_LEVEL 0x0004 |
| 445 | #define PNG_FLAG_ZLIB_CUSTOM_WINDOW_BITS 0x0008 |
| 446 | #define PNG_FLAG_ZLIB_CUSTOM_METHOD 0x0010 |
| 447 | #define PNG_FLAG_ZLIB_FINISHED 0x0020 |
| 448 | #define PNG_FLAG_ROW_INIT 0x0040 |
| 449 | #define PNG_FLAG_FILLER_AFTER 0x0080 |
| 450 | #define PNG_FLAG_CRC_ANCILLARY_USE 0x0100 |
| 451 | #define PNG_FLAG_CRC_ANCILLARY_NOWARN 0x0200 |
| 452 | #define PNG_FLAG_CRC_CRITICAL_USE 0x0400 |
| 453 | #define PNG_FLAG_CRC_CRITICAL_IGNORE 0x0800 |
Glenn Randers-Pehrson | ef217b7 | 2011-06-15 12:58:27 -0500 | [diff] [blame] | 454 | #define PNG_FLAG_ASSUME_sRGB 0x1000 /* Added to libpng-1.5.4 */ |
| 455 | #define PNG_FLAG_OPTIMIZE_ALPHA 0x2000 /* Added to libpng-1.5.4 */ |
| 456 | #define PNG_FLAG_DETECT_UNINITIALIZED 0x4000 /* Added to libpng-1.5.4 */ |
John Bowler | f3f7e14 | 2011-09-09 07:32:37 -0500 | [diff] [blame] | 457 | #define PNG_FLAG_KEEP_UNKNOWN_CHUNKS 0x8000 |
| 458 | #define PNG_FLAG_KEEP_UNSAFE_CHUNKS 0x10000 |
| 459 | #define PNG_FLAG_LIBRARY_MISMATCH 0x20000 |
| 460 | #define PNG_FLAG_STRIP_ERROR_NUMBERS 0x40000 |
| 461 | #define PNG_FLAG_STRIP_ERROR_TEXT 0x80000 |
| 462 | #define PNG_FLAG_MALLOC_NULL_MEM_OK 0x100000 |
| 463 | /* 0x200000 unused */ |
| 464 | /* 0x400000 unused */ |
| 465 | #define PNG_FLAG_BENIGN_ERRORS_WARN 0x800000 /* Added to libpng-1.4.0 */ |
| 466 | #define PNG_FLAG_ZTXT_CUSTOM_STRATEGY 0x1000000 /* 5 lines added */ |
| 467 | #define PNG_FLAG_ZTXT_CUSTOM_LEVEL 0x2000000 /* to libpng-1.5.4 */ |
| 468 | #define PNG_FLAG_ZTXT_CUSTOM_MEM_LEVEL 0x4000000 |
| 469 | #define PNG_FLAG_ZTXT_CUSTOM_WINDOW_BITS 0x8000000 |
| 470 | #define PNG_FLAG_ZTXT_CUSTOM_METHOD 0x10000000 |
| 471 | /* 0x20000000 unused */ |
| 472 | /* 0x40000000 unused */ |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 473 | |
| 474 | #define PNG_FLAG_CRC_ANCILLARY_MASK (PNG_FLAG_CRC_ANCILLARY_USE | \ |
| 475 | PNG_FLAG_CRC_ANCILLARY_NOWARN) |
| 476 | |
| 477 | #define PNG_FLAG_CRC_CRITICAL_MASK (PNG_FLAG_CRC_CRITICAL_USE | \ |
| 478 | PNG_FLAG_CRC_CRITICAL_IGNORE) |
| 479 | |
| 480 | #define PNG_FLAG_CRC_MASK (PNG_FLAG_CRC_ANCILLARY_MASK | \ |
| 481 | PNG_FLAG_CRC_CRITICAL_MASK) |
| 482 | |
Glenn Randers-Pehrson | bcb3aac | 2010-09-10 22:05:27 -0500 | [diff] [blame] | 483 | /* zlib.h declares a magic type 'uInt' that limits the amount of data that zlib |
| 484 | * can handle at once. This type need be no larger than 16 bits (so maximum of |
| 485 | * 65535), this define allows us to discover how big it is, but limited by the |
| 486 | * maximuum for png_size_t. The value can be overriden in a library build |
| 487 | * (pngusr.h, or set it in CPPFLAGS) and it works to set it to a considerably |
| 488 | * lower value (e.g. 255 works). A lower value may help memory usage (slightly) |
| 489 | * and may even improve performance on some systems (and degrade it on others.) |
| 490 | */ |
| 491 | #ifndef ZLIB_IO_MAX |
| 492 | # define ZLIB_IO_MAX ((uInt)-1) |
| 493 | #endif |
| 494 | |
Glenn Randers-Pehrson | 6c7a09a | 2009-06-15 21:57:39 -0500 | [diff] [blame] | 495 | /* Save typing and make code easier to understand */ |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 496 | |
| 497 | #define PNG_COLOR_DIST(c1, c2) (abs((int)((c1).red) - (int)((c2).red)) + \ |
| 498 | abs((int)((c1).green) - (int)((c2).green)) + \ |
| 499 | abs((int)((c1).blue) - (int)((c2).blue))) |
| 500 | |
| 501 | /* Added to libpng-1.2.6 JB */ |
| 502 | #define PNG_ROWBYTES(pixel_bits, width) \ |
| 503 | ((pixel_bits) >= 8 ? \ |
Glenn Randers-Pehrson | beb572e | 2006-08-19 13:59:24 -0500 | [diff] [blame] | 504 | ((png_size_t)(width) * (((png_size_t)(pixel_bits)) >> 3)) : \ |
| 505 | (( ((png_size_t)(width) * ((png_size_t)(pixel_bits))) + 7) >> 3) ) |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 506 | |
| 507 | /* PNG_OUT_OF_RANGE returns true if value is outside the range |
Glenn Randers-Pehrson | 9bf6083 | 2009-09-20 13:37:50 -0500 | [diff] [blame] | 508 | * ideal-delta..ideal+delta. Each argument is evaluated twice. |
| 509 | * "ideal" and "delta" should be constants, normally simple |
| 510 | * integers, "value" a variable. Added to libpng-1.2.6 JB |
| 511 | */ |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 512 | #define PNG_OUT_OF_RANGE(value, ideal, delta) \ |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 513 | ( (value) < (ideal)-(delta) || (value) > (ideal)+(delta) ) |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 514 | |
Glenn Randers-Pehrson | 363f96e | 2010-08-11 09:00:26 -0500 | [diff] [blame] | 515 | /* Conversions between fixed and floating point, only defined if |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 516 | * required (to make sure the code doesn't accidentally use float |
| 517 | * when it is supposedly disabled.) |
| 518 | */ |
| 519 | #ifdef PNG_FLOATING_POINT_SUPPORTED |
Glenn Randers-Pehrson | 233357e | 2010-07-29 21:49:38 -0500 | [diff] [blame] | 520 | /* The floating point conversion can't overflow, though it can and |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 521 | * does lose accuracy relative to the original fixed point value. |
| 522 | * In practice this doesn't matter because png_fixed_point only |
| 523 | * stores numbers with very low precision. The png_ptr and s |
| 524 | * arguments are unused by default but are there in case error |
| 525 | * checking becomes a requirement. |
| 526 | */ |
| 527 | #define png_float(png_ptr, fixed, s) (.00001 * (fixed)) |
| 528 | |
Glenn Randers-Pehrson | 233357e | 2010-07-29 21:49:38 -0500 | [diff] [blame] | 529 | /* The fixed point conversion performs range checking and evaluates |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 530 | * its argument multiple times, so must be used with care. The |
| 531 | * range checking uses the PNG specification values for a signed |
| 532 | * 32 bit fixed point value except that the values are deliberately |
Glenn Randers-Pehrson | 9f044c1 | 2010-12-07 14:59:43 -0600 | [diff] [blame] | 533 | * rounded-to-zero to an integral value - 21474 (21474.83 is roughly |
| 534 | * (2^31-1) * 100000). 's' is a string that describes the value being |
| 535 | * converted. |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 536 | * |
| 537 | * NOTE: this macro will raise a png_error if the range check fails, |
| 538 | * therefore it is normally only appropriate to use this on values |
| 539 | * that come from API calls or other sources where an out of range |
| 540 | * error indicates a programming error, not a data error! |
| 541 | * |
| 542 | * NOTE: by default this is off - the macro is not used - because the |
| 543 | * function call saves a lot of code. |
| 544 | */ |
| 545 | #ifdef PNG_FIXED_POINT_MACRO_SUPPORTED |
| 546 | #define png_fixed(png_ptr, fp, s) ((fp) <= 21474 && (fp) >= -21474 ?\ |
Glenn Randers-Pehrson | 48dc6eb | 2010-07-31 07:09:58 -0500 | [diff] [blame] | 547 | ((png_fixed_point)(100000 * (fp))) : (png_fixed_error(png_ptr, s),0)) |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 548 | #else |
| 549 | PNG_EXTERN png_fixed_point png_fixed PNGARG((png_structp png_ptr, double fp, |
| 550 | png_const_charp text)); |
| 551 | #endif |
| 552 | #endif |
| 553 | |
Glenn Randers-Pehrson | bb5cb14 | 2011-09-22 12:41:58 -0500 | [diff] [blame] | 554 | /* Constants for known chunk types. If you need to add a chunk, define the name |
| 555 | * here. For historical reasons these constants have the form png_<name>; i.e. |
| 556 | * the prefix is lower case. Please use decimal values as the parameters to |
| 557 | * match the ISO PNG specification and to avoid relying on the C locale |
| 558 | * interpretation of character values. |
| 559 | * |
| 560 | * Prior to 1.5.6 these constants were strings, as of 1.5.6 png_uint_32 values |
| 561 | * are computed and a new macro (PNG_STRING_FROM_CHUNK) added to allow a string |
| 562 | * to be generated if required. |
| 563 | * |
| 564 | * PNG_32b correctly produces a value shifted by up to 24 bits, even on |
| 565 | * architectures where (int) is only 16 bits. |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 566 | */ |
Glenn Randers-Pehrson | bb5cb14 | 2011-09-22 12:41:58 -0500 | [diff] [blame] | 567 | #define PNG_32b(b,s) ((png_uint_32)(b) << (s)) |
| 568 | #define PNG_CHUNK(b1,b2,b3,b4) \ |
| 569 | (PNG_32b(b1,24) | PNG_32b(b2,16) | PNG_32b(b3,8) | PNG_32b(b4,0)) |
| 570 | |
| 571 | #define png_IHDR PNG_CHUNK( 73, 72, 68, 82) |
| 572 | #define png_IDAT PNG_CHUNK( 73, 68, 65, 84) |
| 573 | #define png_IEND PNG_CHUNK( 73, 69, 78, 68) |
| 574 | #define png_PLTE PNG_CHUNK( 80, 76, 84, 69) |
| 575 | #define png_bKGD PNG_CHUNK( 98, 75, 71, 68) |
| 576 | #define png_cHRM PNG_CHUNK( 99, 72, 82, 77) |
| 577 | #define png_gAMA PNG_CHUNK(103, 65, 77, 65) |
| 578 | #define png_hIST PNG_CHUNK(104, 73, 83, 84) |
| 579 | #define png_iCCP PNG_CHUNK(105, 67, 67, 80) |
| 580 | #define png_iTXt PNG_CHUNK(105, 84, 88, 116) |
| 581 | #define png_oFFs PNG_CHUNK(111, 70, 70, 115) |
| 582 | #define png_pCAL PNG_CHUNK(112, 67, 65, 76) |
| 583 | #define png_sCAL PNG_CHUNK(115, 67, 65, 76) |
| 584 | #define png_pHYs PNG_CHUNK(112, 72, 89, 115) |
| 585 | #define png_sBIT PNG_CHUNK(115, 66, 73, 84) |
| 586 | #define png_sPLT PNG_CHUNK(115, 80, 76, 84) |
| 587 | #define png_sRGB PNG_CHUNK(115, 82, 71, 66) |
| 588 | #define png_sTER PNG_CHUNK(115, 84, 69, 82) |
| 589 | #define png_tEXt PNG_CHUNK(116, 69, 88, 116) |
| 590 | #define png_tIME PNG_CHUNK(116, 73, 77, 69) |
| 591 | #define png_tRNS PNG_CHUNK(116, 82, 78, 83) |
| 592 | #define png_zTXt PNG_CHUNK(122, 84, 88, 116) |
| 593 | |
| 594 | /* The following will work on (signed char*) strings, whereas the get_uint_32 |
| 595 | * macro will fail on top-bit-set values because of the sign extension. |
| 596 | */ |
| 597 | #define PNG_CHUNK_FROM_STRING(s)\ |
| 598 | PNG_CHUNK(0xff&(s)[0], 0xff&(s)[1], 0xff&(s)[2], 0xff&(s)[3]) |
| 599 | |
| 600 | /* This uses (char), not (png_byte) to avoid warnings on systems where (char) is |
| 601 | * signed and the argument is a (char[]) This macro will fail miserably on |
| 602 | * systems where (char) is more than 8 bits. |
| 603 | */ |
| 604 | #define PNG_STRING_FROM_CHUNK(s,c)\ |
| 605 | (void)(((char*)(s))[0]=(char)((c)>>24), ((char*)(s))[1]=(char)((c)>>16),\ |
Glenn Randers-Pehrson | d02d6a1 | 2011-09-26 16:43:08 -0500 | [diff] [blame] | 606 | ((char*)(s))[2]=(char)((c)>>8), ((char*)(s))[3]=(char)((c))) |
Glenn Randers-Pehrson | bb5cb14 | 2011-09-22 12:41:58 -0500 | [diff] [blame] | 607 | |
| 608 | /* Do the same but terminate with a null character. */ |
| 609 | #define PNG_CSTRING_FROM_CHUNK(s,c)\ |
| 610 | (void)(PNG_STRING_FROM_CHUNK(s,c), ((char*)(s))[4] = 0) |
| 611 | |
| 612 | /* Test on flag values as defined in the spec (section 5.4): */ |
| 613 | #define PNG_CHUNK_ANCILLIARY(c) (1 & ((c) >> 29)) |
| 614 | #define PNG_CHUNK_CRITICAL(c) (!PNG_CHUNK_ANCILLIARY(c)) |
| 615 | #define PNG_CHUNK_PRIVATE(c) (1 & ((c) >> 21)) |
| 616 | #define PNG_CHUNK_RESERVED(c) (1 & ((c) >> 13)) |
| 617 | #define PNG_CHUNK_SAFE_TO_COPY(c) (1 & ((c) >> 5)) |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 618 | |
Glenn Randers-Pehrson | ef217b7 | 2011-06-15 12:58:27 -0500 | [diff] [blame] | 619 | /* Gamma values (new at libpng-1.5.4): */ |
John Bowler | f70c7d0 | 2011-05-10 22:54:37 -0500 | [diff] [blame] | 620 | #define PNG_GAMMA_MAC_OLD 151724 /* Assume '1.8' is really 2.2/1.45! */ |
| 621 | #define PNG_GAMMA_MAC_INVERSE 65909 |
| 622 | #define PNG_GAMMA_sRGB_INVERSE 45455 |
| 623 | |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 624 | |
| 625 | /* Inhibit C++ name-mangling for libpng functions but not for system calls. */ |
| 626 | #ifdef __cplusplus |
| 627 | extern "C" { |
| 628 | #endif /* __cplusplus */ |
| 629 | |
| 630 | /* These functions are used internally in the code. They generally |
| 631 | * shouldn't be used unless you are writing code to add or replace some |
| 632 | * functionality in libpng. More information about most functions can |
| 633 | * be found in the files where the functions are located. |
| 634 | */ |
| 635 | |
John Bowler | 88b77cc | 2011-05-05 06:49:55 -0500 | [diff] [blame] | 636 | /* Check the user version string for compatibility, returns false if the version |
| 637 | * numbers aren't compatible. |
| 638 | */ |
| 639 | PNG_EXTERN int png_user_version_check(png_structp png_ptr, |
| 640 | png_const_charp user_png_ver); |
| 641 | |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 642 | /* Allocate memory for an internal libpng struct */ |
Glenn Randers-Pehrson | 77396b6 | 2010-08-02 08:00:10 -0500 | [diff] [blame] | 643 | PNG_EXTERN PNG_FUNCTION(png_voidp,png_create_struct,PNGARG((int type)), |
| 644 | PNG_ALLOCATED); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 645 | |
| 646 | /* Free memory from internal libpng struct */ |
| 647 | PNG_EXTERN void png_destroy_struct PNGARG((png_voidp struct_ptr)); |
| 648 | |
Glenn Randers-Pehrson | 77396b6 | 2010-08-02 08:00:10 -0500 | [diff] [blame] | 649 | PNG_EXTERN PNG_FUNCTION(png_voidp,png_create_struct_2, |
| 650 | PNGARG((int type, png_malloc_ptr malloc_fn, png_voidp mem_ptr)), |
| 651 | PNG_ALLOCATED); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 652 | PNG_EXTERN void png_destroy_struct_2 PNGARG((png_voidp struct_ptr, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 653 | png_free_ptr free_fn, png_voidp mem_ptr)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 654 | |
| 655 | /* Free any memory that info_ptr points to and reset struct. */ |
| 656 | PNG_EXTERN void png_info_destroy PNGARG((png_structp png_ptr, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 657 | png_infop info_ptr)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 658 | |
Glenn Randers-Pehrson | beb572e | 2006-08-19 13:59:24 -0500 | [diff] [blame] | 659 | /* Function to allocate memory for zlib. PNGAPI is disallowed. */ |
Glenn Randers-Pehrson | 77396b6 | 2010-08-02 08:00:10 -0500 | [diff] [blame] | 660 | PNG_EXTERN PNG_FUNCTION(voidpf,png_zalloc,PNGARG((voidpf png_ptr, uInt items, |
| 661 | uInt size)),PNG_ALLOCATED); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 662 | |
Glenn Randers-Pehrson | beb572e | 2006-08-19 13:59:24 -0500 | [diff] [blame] | 663 | /* Function to free memory for zlib. PNGAPI is disallowed. */ |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 664 | PNG_EXTERN void png_zfree PNGARG((voidpf png_ptr, voidpf ptr)); |
| 665 | |
Glenn Randers-Pehrson | eae8e36 | 2010-03-12 17:36:53 -0600 | [diff] [blame] | 666 | /* Next four functions are used internally as callbacks. PNGCBAPI is required |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 667 | * but not PNG_EXPORT. PNGAPI added at libpng version 1.2.3, changed to |
| 668 | * PNGCBAPI at 1.5.0 |
Glenn Randers-Pehrson | eae8e36 | 2010-03-12 17:36:53 -0600 | [diff] [blame] | 669 | */ |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 670 | |
Glenn Randers-Pehrson | eae8e36 | 2010-03-12 17:36:53 -0600 | [diff] [blame] | 671 | PNG_EXTERN void PNGCBAPI png_default_read_data PNGARG((png_structp png_ptr, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 672 | png_bytep data, png_size_t length)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 673 | |
| 674 | #ifdef PNG_PROGRESSIVE_READ_SUPPORTED |
Glenn Randers-Pehrson | eae8e36 | 2010-03-12 17:36:53 -0600 | [diff] [blame] | 675 | PNG_EXTERN void PNGCBAPI png_push_fill_buffer PNGARG((png_structp png_ptr, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 676 | png_bytep buffer, png_size_t length)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 677 | #endif |
| 678 | |
Glenn Randers-Pehrson | eae8e36 | 2010-03-12 17:36:53 -0600 | [diff] [blame] | 679 | PNG_EXTERN void PNGCBAPI png_default_write_data PNGARG((png_structp png_ptr, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 680 | png_bytep data, png_size_t length)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 681 | |
Glenn Randers-Pehrson | dbd4014 | 2009-08-31 08:42:02 -0500 | [diff] [blame] | 682 | #ifdef PNG_WRITE_FLUSH_SUPPORTED |
Glenn Randers-Pehrson | d4df36c | 2010-03-06 10:45:55 -0600 | [diff] [blame] | 683 | # ifdef PNG_STDIO_SUPPORTED |
Glenn Randers-Pehrson | eae8e36 | 2010-03-12 17:36:53 -0600 | [diff] [blame] | 684 | PNG_EXTERN void PNGCBAPI png_default_flush PNGARG((png_structp png_ptr)); |
Glenn Randers-Pehrson | d4df36c | 2010-03-06 10:45:55 -0600 | [diff] [blame] | 685 | # endif |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 686 | #endif |
| 687 | |
| 688 | /* Reset the CRC variable */ |
| 689 | PNG_EXTERN void png_reset_crc PNGARG((png_structp png_ptr)); |
| 690 | |
Glenn Randers-Pehrson | beb572e | 2006-08-19 13:59:24 -0500 | [diff] [blame] | 691 | /* Write the "data" buffer to whatever output you are using */ |
Glenn Randers-Pehrson | e600c51 | 2010-08-18 07:25:46 -0500 | [diff] [blame] | 692 | PNG_EXTERN void png_write_data PNGARG((png_structp png_ptr, |
| 693 | png_const_bytep data, png_size_t length)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 694 | |
Glenn Randers-Pehrson | a581556 | 2010-11-20 21:48:29 -0600 | [diff] [blame] | 695 | /* Read and check the PNG file signature */ |
| 696 | PNG_EXTERN void png_read_sig PNGARG((png_structp png_ptr, png_infop info_ptr)); |
| 697 | |
Glenn Randers-Pehrson | beb572e | 2006-08-19 13:59:24 -0500 | [diff] [blame] | 698 | /* Read the chunk header (length + type name) */ |
| 699 | PNG_EXTERN png_uint_32 png_read_chunk_header PNGARG((png_structp png_ptr)); |
| 700 | |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 701 | /* Read data from whatever input you are using into the "data" buffer */ |
| 702 | PNG_EXTERN void png_read_data PNGARG((png_structp png_ptr, png_bytep data, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 703 | png_size_t length)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 704 | |
| 705 | /* Read bytes into buf, and update png_ptr->crc */ |
| 706 | PNG_EXTERN void png_crc_read PNGARG((png_structp png_ptr, png_bytep buf, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 707 | png_size_t length)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 708 | |
| 709 | /* Decompress data in a chunk that uses compression */ |
Glenn Randers-Pehrson | 8abcf14 | 2011-04-03 06:22:02 -0500 | [diff] [blame] | 710 | #if defined(PNG_READ_COMPRESSED_TEXT_SUPPORTED) |
Glenn Randers-Pehrson | 895a9c9 | 2008-07-25 08:51:18 -0500 | [diff] [blame] | 711 | PNG_EXTERN void png_decompress_chunk PNGARG((png_structp png_ptr, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 712 | int comp_type, png_size_t chunklength, png_size_t prefix_length, |
| 713 | png_size_t *data_length)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 714 | #endif |
| 715 | |
| 716 | /* Read "skip" bytes, read the file crc, and (optionally) verify png_ptr->crc */ |
| 717 | PNG_EXTERN int png_crc_finish PNGARG((png_structp png_ptr, png_uint_32 skip)); |
| 718 | |
| 719 | /* Read the CRC from the file and compare it to the libpng calculated CRC */ |
| 720 | PNG_EXTERN int png_crc_error PNGARG((png_structp png_ptr)); |
| 721 | |
| 722 | /* Calculate the CRC over a section of data. Note that we are only |
| 723 | * passing a maximum of 64K on systems that have this as a memory limit, |
| 724 | * since this is the maximum buffer size we can specify. |
| 725 | */ |
Glenn Randers-Pehrson | e600c51 | 2010-08-18 07:25:46 -0500 | [diff] [blame] | 726 | PNG_EXTERN void png_calculate_crc PNGARG((png_structp png_ptr, |
| 727 | png_const_bytep ptr, png_size_t length)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 728 | |
Glenn Randers-Pehrson | 4e6b5e9 | 2009-09-23 10:24:53 -0500 | [diff] [blame] | 729 | #ifdef PNG_WRITE_FLUSH_SUPPORTED |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 730 | PNG_EXTERN void png_flush PNGARG((png_structp png_ptr)); |
| 731 | #endif |
| 732 | |
Glenn Randers-Pehrson | 6c7a09a | 2009-06-15 21:57:39 -0500 | [diff] [blame] | 733 | /* Write various chunks */ |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 734 | |
| 735 | /* Write the IHDR chunk, and update the png_struct with the necessary |
| 736 | * information. |
| 737 | */ |
| 738 | PNG_EXTERN void png_write_IHDR PNGARG((png_structp png_ptr, png_uint_32 width, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 739 | png_uint_32 height, |
| 740 | int bit_depth, int color_type, int compression_method, int filter_method, |
| 741 | int interlace_method)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 742 | |
Glenn Randers-Pehrson | e600c51 | 2010-08-18 07:25:46 -0500 | [diff] [blame] | 743 | PNG_EXTERN void png_write_PLTE PNGARG((png_structp png_ptr, |
| 744 | png_const_colorp palette, png_uint_32 num_pal)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 745 | |
| 746 | PNG_EXTERN void png_write_IDAT PNGARG((png_structp png_ptr, png_bytep data, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 747 | png_size_t length)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 748 | |
| 749 | PNG_EXTERN void png_write_IEND PNGARG((png_structp png_ptr)); |
| 750 | |
Glenn Randers-Pehrson | 4e6b5e9 | 2009-09-23 10:24:53 -0500 | [diff] [blame] | 751 | #ifdef PNG_WRITE_gAMA_SUPPORTED |
Glenn Randers-Pehrson | d4df36c | 2010-03-06 10:45:55 -0600 | [diff] [blame] | 752 | # ifdef PNG_FLOATING_POINT_SUPPORTED |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 753 | PNG_EXTERN void png_write_gAMA PNGARG((png_structp png_ptr, double file_gamma)); |
Glenn Randers-Pehrson | d4df36c | 2010-03-06 10:45:55 -0600 | [diff] [blame] | 754 | # endif |
| 755 | # ifdef PNG_FIXED_POINT_SUPPORTED |
Glenn Randers-Pehrson | e3f3c4e | 2010-02-07 18:08:50 -0600 | [diff] [blame] | 756 | PNG_EXTERN void png_write_gAMA_fixed PNGARG((png_structp png_ptr, |
| 757 | png_fixed_point file_gamma)); |
Glenn Randers-Pehrson | d4df36c | 2010-03-06 10:45:55 -0600 | [diff] [blame] | 758 | # endif |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 759 | #endif |
| 760 | |
Glenn Randers-Pehrson | 4e6b5e9 | 2009-09-23 10:24:53 -0500 | [diff] [blame] | 761 | #ifdef PNG_WRITE_sBIT_SUPPORTED |
Glenn Randers-Pehrson | e600c51 | 2010-08-18 07:25:46 -0500 | [diff] [blame] | 762 | PNG_EXTERN void png_write_sBIT PNGARG((png_structp png_ptr, |
| 763 | png_const_color_8p sbit, int color_type)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 764 | #endif |
| 765 | |
Glenn Randers-Pehrson | 4e6b5e9 | 2009-09-23 10:24:53 -0500 | [diff] [blame] | 766 | #ifdef PNG_WRITE_cHRM_SUPPORTED |
Glenn Randers-Pehrson | d4df36c | 2010-03-06 10:45:55 -0600 | [diff] [blame] | 767 | # ifdef PNG_FLOATING_POINT_SUPPORTED |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 768 | PNG_EXTERN void png_write_cHRM PNGARG((png_structp png_ptr, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 769 | double white_x, double white_y, |
| 770 | double red_x, double red_y, double green_x, double green_y, |
| 771 | double blue_x, double blue_y)); |
Glenn Randers-Pehrson | d4df36c | 2010-03-06 10:45:55 -0600 | [diff] [blame] | 772 | # endif |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 773 | PNG_EXTERN void png_write_cHRM_fixed PNGARG((png_structp png_ptr, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 774 | png_fixed_point int_white_x, png_fixed_point int_white_y, |
| 775 | png_fixed_point int_red_x, png_fixed_point int_red_y, png_fixed_point |
| 776 | int_green_x, png_fixed_point int_green_y, png_fixed_point int_blue_x, |
| 777 | png_fixed_point int_blue_y)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 778 | #endif |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 779 | |
Glenn Randers-Pehrson | 4e6b5e9 | 2009-09-23 10:24:53 -0500 | [diff] [blame] | 780 | #ifdef PNG_WRITE_sRGB_SUPPORTED |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 781 | PNG_EXTERN void png_write_sRGB PNGARG((png_structp png_ptr, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 782 | int intent)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 783 | #endif |
| 784 | |
Glenn Randers-Pehrson | 4e6b5e9 | 2009-09-23 10:24:53 -0500 | [diff] [blame] | 785 | #ifdef PNG_WRITE_iCCP_SUPPORTED |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 786 | PNG_EXTERN void png_write_iCCP PNGARG((png_structp png_ptr, |
Glenn Randers-Pehrson | e600c51 | 2010-08-18 07:25:46 -0500 | [diff] [blame] | 787 | png_const_charp name, int compression_type, |
| 788 | png_const_charp profile, int proflen)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 789 | /* Note to maintainer: profile should be png_bytep */ |
| 790 | #endif |
| 791 | |
Glenn Randers-Pehrson | 4e6b5e9 | 2009-09-23 10:24:53 -0500 | [diff] [blame] | 792 | #ifdef PNG_WRITE_sPLT_SUPPORTED |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 793 | PNG_EXTERN void png_write_sPLT PNGARG((png_structp png_ptr, |
Glenn Randers-Pehrson | e600c51 | 2010-08-18 07:25:46 -0500 | [diff] [blame] | 794 | png_const_sPLT_tp palette)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 795 | #endif |
| 796 | |
Glenn Randers-Pehrson | 4e6b5e9 | 2009-09-23 10:24:53 -0500 | [diff] [blame] | 797 | #ifdef PNG_WRITE_tRNS_SUPPORTED |
Glenn Randers-Pehrson | e600c51 | 2010-08-18 07:25:46 -0500 | [diff] [blame] | 798 | PNG_EXTERN void png_write_tRNS PNGARG((png_structp png_ptr, |
| 799 | png_const_bytep trans, png_const_color_16p values, int number, |
| 800 | int color_type)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 801 | #endif |
| 802 | |
Glenn Randers-Pehrson | 4e6b5e9 | 2009-09-23 10:24:53 -0500 | [diff] [blame] | 803 | #ifdef PNG_WRITE_bKGD_SUPPORTED |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 804 | PNG_EXTERN void png_write_bKGD PNGARG((png_structp png_ptr, |
Glenn Randers-Pehrson | e600c51 | 2010-08-18 07:25:46 -0500 | [diff] [blame] | 805 | png_const_color_16p values, int color_type)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 806 | #endif |
| 807 | |
Glenn Randers-Pehrson | 4e6b5e9 | 2009-09-23 10:24:53 -0500 | [diff] [blame] | 808 | #ifdef PNG_WRITE_hIST_SUPPORTED |
Glenn Randers-Pehrson | e600c51 | 2010-08-18 07:25:46 -0500 | [diff] [blame] | 809 | PNG_EXTERN void png_write_hIST PNGARG((png_structp png_ptr, |
| 810 | png_const_uint_16p hist, int num_hist)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 811 | #endif |
| 812 | |
Glenn Randers-Pehrson | 205483d | 2011-04-01 12:33:42 -0500 | [diff] [blame] | 813 | /* Chunks that have keywords */ |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 814 | #if defined(PNG_WRITE_TEXT_SUPPORTED) || defined(PNG_WRITE_pCAL_SUPPORTED) || \ |
| 815 | defined(PNG_WRITE_iCCP_SUPPORTED) || defined(PNG_WRITE_sPLT_SUPPORTED) |
| 816 | PNG_EXTERN png_size_t png_check_keyword PNGARG((png_structp png_ptr, |
Glenn Randers-Pehrson | e600c51 | 2010-08-18 07:25:46 -0500 | [diff] [blame] | 817 | png_const_charp key, png_charpp new_key)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 818 | #endif |
| 819 | |
Glenn Randers-Pehrson | 4e6b5e9 | 2009-09-23 10:24:53 -0500 | [diff] [blame] | 820 | #ifdef PNG_WRITE_tEXt_SUPPORTED |
Glenn Randers-Pehrson | e600c51 | 2010-08-18 07:25:46 -0500 | [diff] [blame] | 821 | PNG_EXTERN void png_write_tEXt PNGARG((png_structp png_ptr, png_const_charp key, |
| 822 | png_const_charp text, png_size_t text_len)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 823 | #endif |
| 824 | |
Glenn Randers-Pehrson | 4e6b5e9 | 2009-09-23 10:24:53 -0500 | [diff] [blame] | 825 | #ifdef PNG_WRITE_zTXt_SUPPORTED |
Glenn Randers-Pehrson | e600c51 | 2010-08-18 07:25:46 -0500 | [diff] [blame] | 826 | PNG_EXTERN void png_write_zTXt PNGARG((png_structp png_ptr, png_const_charp key, |
| 827 | png_const_charp text, png_size_t text_len, int compression)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 828 | #endif |
| 829 | |
Glenn Randers-Pehrson | 4e6b5e9 | 2009-09-23 10:24:53 -0500 | [diff] [blame] | 830 | #ifdef PNG_WRITE_iTXt_SUPPORTED |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 831 | PNG_EXTERN void png_write_iTXt PNGARG((png_structp png_ptr, |
Glenn Randers-Pehrson | e600c51 | 2010-08-18 07:25:46 -0500 | [diff] [blame] | 832 | int compression, png_const_charp key, png_const_charp lang, |
| 833 | png_const_charp lang_key, png_const_charp text)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 834 | #endif |
| 835 | |
Glenn Randers-Pehrson | 4e6b5e9 | 2009-09-23 10:24:53 -0500 | [diff] [blame] | 836 | #ifdef PNG_TEXT_SUPPORTED /* Added at version 1.0.14 and 1.2.4 */ |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 837 | PNG_EXTERN int png_set_text_2 PNGARG((png_structp png_ptr, |
Glenn Randers-Pehrson | e600c51 | 2010-08-18 07:25:46 -0500 | [diff] [blame] | 838 | png_infop info_ptr, png_const_textp text_ptr, int num_text)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 839 | #endif |
| 840 | |
Glenn Randers-Pehrson | 4e6b5e9 | 2009-09-23 10:24:53 -0500 | [diff] [blame] | 841 | #ifdef PNG_WRITE_oFFs_SUPPORTED |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 842 | PNG_EXTERN void png_write_oFFs PNGARG((png_structp png_ptr, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 843 | png_int_32 x_offset, png_int_32 y_offset, int unit_type)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 844 | #endif |
| 845 | |
Glenn Randers-Pehrson | 4e6b5e9 | 2009-09-23 10:24:53 -0500 | [diff] [blame] | 846 | #ifdef PNG_WRITE_pCAL_SUPPORTED |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 847 | PNG_EXTERN void png_write_pCAL PNGARG((png_structp png_ptr, png_charp purpose, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 848 | png_int_32 X0, png_int_32 X1, int type, int nparams, |
Glenn Randers-Pehrson | e600c51 | 2010-08-18 07:25:46 -0500 | [diff] [blame] | 849 | png_const_charp units, png_charpp params)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 850 | #endif |
| 851 | |
Glenn Randers-Pehrson | 4e6b5e9 | 2009-09-23 10:24:53 -0500 | [diff] [blame] | 852 | #ifdef PNG_WRITE_pHYs_SUPPORTED |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 853 | PNG_EXTERN void png_write_pHYs PNGARG((png_structp png_ptr, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 854 | png_uint_32 x_pixels_per_unit, png_uint_32 y_pixels_per_unit, |
| 855 | int unit_type)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 856 | #endif |
| 857 | |
Glenn Randers-Pehrson | 4e6b5e9 | 2009-09-23 10:24:53 -0500 | [diff] [blame] | 858 | #ifdef PNG_WRITE_tIME_SUPPORTED |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 859 | PNG_EXTERN void png_write_tIME PNGARG((png_structp png_ptr, |
Glenn Randers-Pehrson | e600c51 | 2010-08-18 07:25:46 -0500 | [diff] [blame] | 860 | png_const_timep mod_time)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 861 | #endif |
| 862 | |
Glenn Randers-Pehrson | 4e6b5e9 | 2009-09-23 10:24:53 -0500 | [diff] [blame] | 863 | #ifdef PNG_WRITE_sCAL_SUPPORTED |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 864 | PNG_EXTERN void png_write_sCAL_s PNGARG((png_structp png_ptr, |
Glenn Randers-Pehrson | e600c51 | 2010-08-18 07:25:46 -0500 | [diff] [blame] | 865 | int unit, png_const_charp width, png_const_charp height)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 866 | #endif |
| 867 | |
| 868 | /* Called when finished processing a row of data */ |
| 869 | PNG_EXTERN void png_write_finish_row PNGARG((png_structp png_ptr)); |
| 870 | |
| 871 | /* Internal use only. Called before first row of data */ |
| 872 | PNG_EXTERN void png_write_start_row PNGARG((png_structp png_ptr)); |
| 873 | |
Glenn Randers-Pehrson | bb5cb14 | 2011-09-22 12:41:58 -0500 | [diff] [blame] | 874 | /* Combine a row of data, dealing with alpha, etc. if requested. 'row' is an |
Glenn Randers-Pehrson | 65c0339 | 2011-10-06 21:54:17 -0500 | [diff] [blame] | 875 | * array of png_ptr->width pixels. If the image is not interlaced or this |
| 876 | * is the final pass this just does a png_memcpy, otherwise the "display" flag |
| 877 | * is used to determine whether to copy pixels that are not in the current pass. |
| 878 | * |
| 879 | * Because 'png_do_read_interlace' (below) replicates pixels this allows this |
| 880 | * function to achieve the documented 'blocky' appearance during interlaced read |
| 881 | * if display is 1 and the 'sparkle' appearance, where existing pixels in 'row' |
| 882 | * are not changed if they are not in the current pass, when display is 0. |
| 883 | * |
| 884 | * 'display' must be 0 or 1, otherwise the memcpy will be done regardless. |
| 885 | * |
| 886 | * The API always reads from the png_struct row buffer and always assumes that |
| 887 | * it is full width (png_do_read_interlace has already been called.) |
| 888 | * |
| 889 | * This function is only ever used to write to row buffers provided by the |
| 890 | * caller of the relevant libpng API and the row must have already been |
| 891 | * transformed by the read transformations. |
John Bowler | 4e68aa7 | 2011-10-11 16:01:33 -0500 | [diff] [blame^] | 892 | * |
| 893 | * The PNG_USE_COMPILE_TIME_MASKS option causes generation of pre-computed |
| 894 | * bitmasks for use within the code, otherwise runtime generated masks are used. |
| 895 | * The default is compile time masks. |
Glenn Randers-Pehrson | bb5cb14 | 2011-09-22 12:41:58 -0500 | [diff] [blame] | 896 | */ |
John Bowler | 4e68aa7 | 2011-10-11 16:01:33 -0500 | [diff] [blame^] | 897 | #ifndef PNG_USE_COMPILE_TIME_MASKS |
| 898 | # define PNG_USE_COMPILE_TIME_MASKS 1 |
| 899 | #endif |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 900 | PNG_EXTERN void png_combine_row PNGARG((png_structp png_ptr, png_bytep row, |
Glenn Randers-Pehrson | 65c0339 | 2011-10-06 21:54:17 -0500 | [diff] [blame] | 901 | int display)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 902 | |
Glenn Randers-Pehrson | 4e6b5e9 | 2009-09-23 10:24:53 -0500 | [diff] [blame] | 903 | #ifdef PNG_READ_INTERLACING_SUPPORTED |
Glenn Randers-Pehrson | 65c0339 | 2011-10-06 21:54:17 -0500 | [diff] [blame] | 904 | /* Expand an interlaced row: the 'row_info' describes the pass data that has |
| 905 | * been read in and must correspond to the pixels in 'row', the pixels are |
| 906 | * expanded (moved apart) in 'row' to match the final layout, when doing this |
| 907 | * the pixels are *replicated* to the intervening space. This is essential for |
| 908 | * the correct operation of png_combine_row, above. |
| 909 | */ |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 910 | PNG_EXTERN void png_do_read_interlace PNGARG((png_row_infop row_info, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 911 | png_bytep row, int pass, png_uint_32 transformations)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 912 | #endif |
| 913 | |
| 914 | /* GRR TO DO (2.0 or whenever): simplify other internal calling interfaces */ |
| 915 | |
Glenn Randers-Pehrson | 4e6b5e9 | 2009-09-23 10:24:53 -0500 | [diff] [blame] | 916 | #ifdef PNG_WRITE_INTERLACING_SUPPORTED |
Glenn Randers-Pehrson | 6c7a09a | 2009-06-15 21:57:39 -0500 | [diff] [blame] | 917 | /* Grab pixels out of a row for an interlaced pass */ |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 918 | PNG_EXTERN void png_do_write_interlace PNGARG((png_row_infop row_info, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 919 | png_bytep row, int pass)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 920 | #endif |
| 921 | |
Glenn Randers-Pehrson | bb5cb14 | 2011-09-22 12:41:58 -0500 | [diff] [blame] | 922 | /* Unfilter a row: check the filter value before calling this, there is no point |
| 923 | * calling it for PNG_FILTER_VALUE_NONE. |
| 924 | */ |
| 925 | PNG_EXTERN void png_read_filter_row PNGARG((png_row_infop row_info, |
| 926 | png_bytep row, png_const_bytep prev_row, int filter)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 927 | |
| 928 | /* Choose the best filter to use and filter the row data */ |
| 929 | PNG_EXTERN void png_write_find_filter PNGARG((png_structp png_ptr, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 930 | png_row_infop row_info)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 931 | |
Glenn Randers-Pehrson | 6c7a09a | 2009-06-15 21:57:39 -0500 | [diff] [blame] | 932 | /* Finish a row while reading, dealing with interlacing passes, etc. */ |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 933 | PNG_EXTERN void png_read_finish_row PNGARG((png_structp png_ptr)); |
| 934 | |
Glenn Randers-Pehrson | 6c7a09a | 2009-06-15 21:57:39 -0500 | [diff] [blame] | 935 | /* Initialize the row buffers, etc. */ |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 936 | PNG_EXTERN void png_read_start_row PNGARG((png_structp png_ptr)); |
John Bowler | 4a12f4a | 2011-04-17 18:34:22 -0500 | [diff] [blame] | 937 | |
| 938 | #ifdef PNG_READ_TRANSFORMS_SUPPORTED |
Glenn Randers-Pehrson | 6c7a09a | 2009-06-15 21:57:39 -0500 | [diff] [blame] | 939 | /* Optional call to update the users info structure */ |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 940 | PNG_EXTERN void png_read_transform_info PNGARG((png_structp png_ptr, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 941 | png_infop info_ptr)); |
John Bowler | 4a12f4a | 2011-04-17 18:34:22 -0500 | [diff] [blame] | 942 | #endif |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 943 | |
Glenn Randers-Pehrson | 6c7a09a | 2009-06-15 21:57:39 -0500 | [diff] [blame] | 944 | /* These are the functions that do the transformations */ |
Glenn Randers-Pehrson | 4e6b5e9 | 2009-09-23 10:24:53 -0500 | [diff] [blame] | 945 | #ifdef PNG_READ_FILLER_SUPPORTED |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 946 | PNG_EXTERN void png_do_read_filler PNGARG((png_row_infop row_info, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 947 | png_bytep row, png_uint_32 filler, png_uint_32 flags)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 948 | #endif |
| 949 | |
Glenn Randers-Pehrson | 4e6b5e9 | 2009-09-23 10:24:53 -0500 | [diff] [blame] | 950 | #ifdef PNG_READ_SWAP_ALPHA_SUPPORTED |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 951 | PNG_EXTERN void png_do_read_swap_alpha PNGARG((png_row_infop row_info, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 952 | png_bytep row)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 953 | #endif |
| 954 | |
Glenn Randers-Pehrson | 4e6b5e9 | 2009-09-23 10:24:53 -0500 | [diff] [blame] | 955 | #ifdef PNG_WRITE_SWAP_ALPHA_SUPPORTED |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 956 | PNG_EXTERN void png_do_write_swap_alpha PNGARG((png_row_infop row_info, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 957 | png_bytep row)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 958 | #endif |
| 959 | |
Glenn Randers-Pehrson | 4e6b5e9 | 2009-09-23 10:24:53 -0500 | [diff] [blame] | 960 | #ifdef PNG_READ_INVERT_ALPHA_SUPPORTED |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 961 | PNG_EXTERN void png_do_read_invert_alpha PNGARG((png_row_infop row_info, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 962 | png_bytep row)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 963 | #endif |
| 964 | |
Glenn Randers-Pehrson | 4e6b5e9 | 2009-09-23 10:24:53 -0500 | [diff] [blame] | 965 | #ifdef PNG_WRITE_INVERT_ALPHA_SUPPORTED |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 966 | PNG_EXTERN void png_do_write_invert_alpha PNGARG((png_row_infop row_info, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 967 | png_bytep row)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 968 | #endif |
| 969 | |
| 970 | #if defined(PNG_WRITE_FILLER_SUPPORTED) || \ |
| 971 | defined(PNG_READ_STRIP_ALPHA_SUPPORTED) |
John Bowler | 9b872f4 | 2011-02-12 09:00:16 -0600 | [diff] [blame] | 972 | PNG_EXTERN void png_do_strip_channel PNGARG((png_row_infop row_info, |
| 973 | png_bytep row, int at_start)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 974 | #endif |
| 975 | |
Glenn Randers-Pehrson | 39515c9 | 2010-08-28 06:21:35 -0500 | [diff] [blame] | 976 | #ifdef PNG_16BIT_SUPPORTED |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 977 | #if defined(PNG_READ_SWAP_SUPPORTED) || defined(PNG_WRITE_SWAP_SUPPORTED) |
Glenn Randers-Pehrson | e600c51 | 2010-08-18 07:25:46 -0500 | [diff] [blame] | 978 | PNG_EXTERN void png_do_swap PNGARG((png_row_infop row_info, |
| 979 | png_bytep row)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 980 | #endif |
Glenn Randers-Pehrson | 39515c9 | 2010-08-28 06:21:35 -0500 | [diff] [blame] | 981 | #endif |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 982 | |
Glenn Randers-Pehrson | e3f3c4e | 2010-02-07 18:08:50 -0600 | [diff] [blame] | 983 | #if defined(PNG_READ_PACKSWAP_SUPPORTED) || \ |
| 984 | defined(PNG_WRITE_PACKSWAP_SUPPORTED) |
Glenn Randers-Pehrson | e600c51 | 2010-08-18 07:25:46 -0500 | [diff] [blame] | 985 | PNG_EXTERN void png_do_packswap PNGARG((png_row_infop row_info, |
| 986 | png_bytep row)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 987 | #endif |
| 988 | |
Glenn Randers-Pehrson | 4e6b5e9 | 2009-09-23 10:24:53 -0500 | [diff] [blame] | 989 | #ifdef PNG_READ_RGB_TO_GRAY_SUPPORTED |
Glenn Randers-Pehrson | e600c51 | 2010-08-18 07:25:46 -0500 | [diff] [blame] | 990 | PNG_EXTERN int png_do_rgb_to_gray PNGARG((png_structp png_ptr, |
| 991 | png_row_infop row_info, png_bytep row)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 992 | #endif |
| 993 | |
Glenn Randers-Pehrson | 4e6b5e9 | 2009-09-23 10:24:53 -0500 | [diff] [blame] | 994 | #ifdef PNG_READ_GRAY_TO_RGB_SUPPORTED |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 995 | PNG_EXTERN void png_do_gray_to_rgb PNGARG((png_row_infop row_info, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 996 | png_bytep row)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 997 | #endif |
| 998 | |
Glenn Randers-Pehrson | 4e6b5e9 | 2009-09-23 10:24:53 -0500 | [diff] [blame] | 999 | #ifdef PNG_READ_PACK_SUPPORTED |
Glenn Randers-Pehrson | e600c51 | 2010-08-18 07:25:46 -0500 | [diff] [blame] | 1000 | PNG_EXTERN void png_do_unpack PNGARG((png_row_infop row_info, |
| 1001 | png_bytep row)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1002 | #endif |
| 1003 | |
Glenn Randers-Pehrson | 4e6b5e9 | 2009-09-23 10:24:53 -0500 | [diff] [blame] | 1004 | #ifdef PNG_READ_SHIFT_SUPPORTED |
Glenn Randers-Pehrson | e600c51 | 2010-08-18 07:25:46 -0500 | [diff] [blame] | 1005 | PNG_EXTERN void png_do_unshift PNGARG((png_row_infop row_info, |
| 1006 | png_bytep row, png_const_color_8p sig_bits)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1007 | #endif |
| 1008 | |
| 1009 | #if defined(PNG_READ_INVERT_SUPPORTED) || defined(PNG_WRITE_INVERT_SUPPORTED) |
Glenn Randers-Pehrson | e600c51 | 2010-08-18 07:25:46 -0500 | [diff] [blame] | 1010 | PNG_EXTERN void png_do_invert PNGARG((png_row_infop row_info, |
| 1011 | png_bytep row)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1012 | #endif |
| 1013 | |
John Bowler | 8d26126 | 2011-06-18 13:37:11 -0500 | [diff] [blame] | 1014 | #ifdef PNG_READ_SCALE_16_TO_8_SUPPORTED |
John Bowler | 550bab0 | 2011-06-14 06:17:26 -0500 | [diff] [blame] | 1015 | PNG_EXTERN void png_do_scale_16_to_8 PNGARG((png_row_infop row_info, |
| 1016 | png_bytep row)); |
Glenn Randers-Pehrson | 5f0b927 | 2011-06-16 09:05:40 -0500 | [diff] [blame] | 1017 | #endif |
John Bowler | 550bab0 | 2011-06-14 06:17:26 -0500 | [diff] [blame] | 1018 | |
Glenn Randers-Pehrson | ab63dd0 | 2011-06-17 20:04:17 -0500 | [diff] [blame] | 1019 | #ifdef PNG_READ_STRIP_16_TO_8_SUPPORTED |
Glenn Randers-Pehrson | e600c51 | 2010-08-18 07:25:46 -0500 | [diff] [blame] | 1020 | PNG_EXTERN void png_do_chop PNGARG((png_row_infop row_info, |
| 1021 | png_bytep row)); |
Glenn Randers-Pehrson | 2232baa | 2011-06-14 06:59:46 -0500 | [diff] [blame] | 1022 | #endif |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1023 | |
Glenn Randers-Pehrson | 3cd7cff | 2010-04-16 19:27:08 -0500 | [diff] [blame] | 1024 | #ifdef PNG_READ_QUANTIZE_SUPPORTED |
| 1025 | PNG_EXTERN void png_do_quantize PNGARG((png_row_infop row_info, |
Glenn Randers-Pehrson | e600c51 | 2010-08-18 07:25:46 -0500 | [diff] [blame] | 1026 | png_bytep row, png_const_bytep palette_lookup, |
| 1027 | png_const_bytep quantize_lookup)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1028 | |
Glenn Randers-Pehrson | 4e6b5e9 | 2009-09-23 10:24:53 -0500 | [diff] [blame] | 1029 | # ifdef PNG_CORRECT_PALETTE_SUPPORTED |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1030 | PNG_EXTERN void png_correct_palette PNGARG((png_structp png_ptr, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 1031 | png_colorp palette, int num_palette)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1032 | # endif |
| 1033 | #endif |
| 1034 | |
| 1035 | #if defined(PNG_READ_BGR_SUPPORTED) || defined(PNG_WRITE_BGR_SUPPORTED) |
Glenn Randers-Pehrson | e600c51 | 2010-08-18 07:25:46 -0500 | [diff] [blame] | 1036 | PNG_EXTERN void png_do_bgr PNGARG((png_row_infop row_info, |
| 1037 | png_bytep row)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1038 | #endif |
| 1039 | |
Glenn Randers-Pehrson | 4e6b5e9 | 2009-09-23 10:24:53 -0500 | [diff] [blame] | 1040 | #ifdef PNG_WRITE_PACK_SUPPORTED |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1041 | PNG_EXTERN void png_do_pack PNGARG((png_row_infop row_info, |
| 1042 | png_bytep row, png_uint_32 bit_depth)); |
| 1043 | #endif |
| 1044 | |
Glenn Randers-Pehrson | 4e6b5e9 | 2009-09-23 10:24:53 -0500 | [diff] [blame] | 1045 | #ifdef PNG_WRITE_SHIFT_SUPPORTED |
Glenn Randers-Pehrson | e600c51 | 2010-08-18 07:25:46 -0500 | [diff] [blame] | 1046 | PNG_EXTERN void png_do_shift PNGARG((png_row_infop row_info, |
| 1047 | png_bytep row, png_const_color_8p bit_depth)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1048 | #endif |
| 1049 | |
John Bowler | d273ad2 | 2011-05-07 21:00:28 -0500 | [diff] [blame] | 1050 | #if defined(PNG_READ_BACKGROUND_SUPPORTED) ||\ |
| 1051 | defined(PNG_READ_ALPHA_MODE_SUPPORTED) |
| 1052 | PNG_EXTERN void png_do_compose PNGARG((png_row_infop row_info, |
John Bowler | 4a12f4a | 2011-04-17 18:34:22 -0500 | [diff] [blame] | 1053 | png_bytep row, png_structp png_ptr)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1054 | #endif |
| 1055 | |
Glenn Randers-Pehrson | 4e6b5e9 | 2009-09-23 10:24:53 -0500 | [diff] [blame] | 1056 | #ifdef PNG_READ_GAMMA_SUPPORTED |
Glenn Randers-Pehrson | e600c51 | 2010-08-18 07:25:46 -0500 | [diff] [blame] | 1057 | PNG_EXTERN void png_do_gamma PNGARG((png_row_infop row_info, |
John Bowler | 4a12f4a | 2011-04-17 18:34:22 -0500 | [diff] [blame] | 1058 | png_bytep row, png_structp png_ptr)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1059 | #endif |
| 1060 | |
John Bowler | d273ad2 | 2011-05-07 21:00:28 -0500 | [diff] [blame] | 1061 | #ifdef PNG_READ_ALPHA_MODE_SUPPORTED |
| 1062 | PNG_EXTERN void png_do_encode_alpha PNGARG((png_row_infop row_info, |
| 1063 | png_bytep row, png_structp png_ptr)); |
| 1064 | #endif |
| 1065 | |
Glenn Randers-Pehrson | 4e6b5e9 | 2009-09-23 10:24:53 -0500 | [diff] [blame] | 1066 | #ifdef PNG_READ_EXPAND_SUPPORTED |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1067 | PNG_EXTERN void png_do_expand_palette PNGARG((png_row_infop row_info, |
Glenn Randers-Pehrson | e600c51 | 2010-08-18 07:25:46 -0500 | [diff] [blame] | 1068 | png_bytep row, png_const_colorp palette, png_const_bytep trans, |
| 1069 | int num_trans)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1070 | PNG_EXTERN void png_do_expand PNGARG((png_row_infop row_info, |
Glenn Randers-Pehrson | e600c51 | 2010-08-18 07:25:46 -0500 | [diff] [blame] | 1071 | png_bytep row, png_const_color_16p trans_color)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1072 | #endif |
| 1073 | |
John Bowler | 4d56296 | 2011-02-12 09:01:20 -0600 | [diff] [blame] | 1074 | #ifdef PNG_READ_EXPAND_16_SUPPORTED |
| 1075 | PNG_EXTERN void png_do_expand_16 PNGARG((png_row_infop row_info, |
| 1076 | png_bytep row)); |
| 1077 | #endif |
| 1078 | |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1079 | /* The following decodes the appropriate chunks, and does error correction, |
| 1080 | * then calls the appropriate callback for the chunk if it is valid. |
| 1081 | */ |
| 1082 | |
Glenn Randers-Pehrson | 6c7a09a | 2009-06-15 21:57:39 -0500 | [diff] [blame] | 1083 | /* Decode the IHDR chunk */ |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1084 | PNG_EXTERN void png_handle_IHDR PNGARG((png_structp png_ptr, png_infop info_ptr, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 1085 | png_uint_32 length)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1086 | PNG_EXTERN void png_handle_PLTE PNGARG((png_structp png_ptr, png_infop info_ptr, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 1087 | png_uint_32 length)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1088 | PNG_EXTERN void png_handle_IEND PNGARG((png_structp png_ptr, png_infop info_ptr, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 1089 | png_uint_32 length)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1090 | |
Glenn Randers-Pehrson | 4e6b5e9 | 2009-09-23 10:24:53 -0500 | [diff] [blame] | 1091 | #ifdef PNG_READ_bKGD_SUPPORTED |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1092 | PNG_EXTERN void png_handle_bKGD PNGARG((png_structp png_ptr, png_infop info_ptr, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 1093 | png_uint_32 length)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1094 | #endif |
| 1095 | |
Glenn Randers-Pehrson | 4e6b5e9 | 2009-09-23 10:24:53 -0500 | [diff] [blame] | 1096 | #ifdef PNG_READ_cHRM_SUPPORTED |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1097 | PNG_EXTERN void png_handle_cHRM PNGARG((png_structp png_ptr, png_infop info_ptr, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 1098 | png_uint_32 length)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1099 | #endif |
| 1100 | |
Glenn Randers-Pehrson | 4e6b5e9 | 2009-09-23 10:24:53 -0500 | [diff] [blame] | 1101 | #ifdef PNG_READ_gAMA_SUPPORTED |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1102 | PNG_EXTERN void png_handle_gAMA PNGARG((png_structp png_ptr, png_infop info_ptr, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 1103 | png_uint_32 length)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1104 | #endif |
| 1105 | |
Glenn Randers-Pehrson | 4e6b5e9 | 2009-09-23 10:24:53 -0500 | [diff] [blame] | 1106 | #ifdef PNG_READ_hIST_SUPPORTED |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1107 | PNG_EXTERN void png_handle_hIST PNGARG((png_structp png_ptr, png_infop info_ptr, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 1108 | png_uint_32 length)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1109 | #endif |
| 1110 | |
Glenn Randers-Pehrson | 4e6b5e9 | 2009-09-23 10:24:53 -0500 | [diff] [blame] | 1111 | #ifdef PNG_READ_iCCP_SUPPORTED |
Glenn Randers-Pehrson | aa4e359 | 2010-07-06 07:40:47 -0500 | [diff] [blame] | 1112 | PNG_EXTERN void png_handle_iCCP PNGARG((png_structp png_ptr, png_infop info_ptr, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 1113 | png_uint_32 length)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1114 | #endif /* PNG_READ_iCCP_SUPPORTED */ |
| 1115 | |
Glenn Randers-Pehrson | 4e6b5e9 | 2009-09-23 10:24:53 -0500 | [diff] [blame] | 1116 | #ifdef PNG_READ_iTXt_SUPPORTED |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1117 | PNG_EXTERN void png_handle_iTXt PNGARG((png_structp png_ptr, png_infop info_ptr, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 1118 | png_uint_32 length)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1119 | #endif |
| 1120 | |
Glenn Randers-Pehrson | 4e6b5e9 | 2009-09-23 10:24:53 -0500 | [diff] [blame] | 1121 | #ifdef PNG_READ_oFFs_SUPPORTED |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1122 | PNG_EXTERN void png_handle_oFFs PNGARG((png_structp png_ptr, png_infop info_ptr, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 1123 | png_uint_32 length)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1124 | #endif |
| 1125 | |
Glenn Randers-Pehrson | 4e6b5e9 | 2009-09-23 10:24:53 -0500 | [diff] [blame] | 1126 | #ifdef PNG_READ_pCAL_SUPPORTED |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1127 | PNG_EXTERN void png_handle_pCAL PNGARG((png_structp png_ptr, png_infop info_ptr, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 1128 | png_uint_32 length)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1129 | #endif |
| 1130 | |
Glenn Randers-Pehrson | 4e6b5e9 | 2009-09-23 10:24:53 -0500 | [diff] [blame] | 1131 | #ifdef PNG_READ_pHYs_SUPPORTED |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1132 | PNG_EXTERN void png_handle_pHYs PNGARG((png_structp png_ptr, png_infop info_ptr, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 1133 | png_uint_32 length)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1134 | #endif |
| 1135 | |
Glenn Randers-Pehrson | 4e6b5e9 | 2009-09-23 10:24:53 -0500 | [diff] [blame] | 1136 | #ifdef PNG_READ_sBIT_SUPPORTED |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1137 | PNG_EXTERN void png_handle_sBIT PNGARG((png_structp png_ptr, png_infop info_ptr, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 1138 | png_uint_32 length)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1139 | #endif |
| 1140 | |
Glenn Randers-Pehrson | 4e6b5e9 | 2009-09-23 10:24:53 -0500 | [diff] [blame] | 1141 | #ifdef PNG_READ_sCAL_SUPPORTED |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1142 | PNG_EXTERN void png_handle_sCAL PNGARG((png_structp png_ptr, png_infop info_ptr, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 1143 | png_uint_32 length)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1144 | #endif |
| 1145 | |
Glenn Randers-Pehrson | 4e6b5e9 | 2009-09-23 10:24:53 -0500 | [diff] [blame] | 1146 | #ifdef PNG_READ_sPLT_SUPPORTED |
Glenn Randers-Pehrson | aa4e359 | 2010-07-06 07:40:47 -0500 | [diff] [blame] | 1147 | PNG_EXTERN void png_handle_sPLT PNGARG((png_structp png_ptr, png_infop info_ptr, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 1148 | png_uint_32 length)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1149 | #endif /* PNG_READ_sPLT_SUPPORTED */ |
| 1150 | |
Glenn Randers-Pehrson | 4e6b5e9 | 2009-09-23 10:24:53 -0500 | [diff] [blame] | 1151 | #ifdef PNG_READ_sRGB_SUPPORTED |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1152 | PNG_EXTERN void png_handle_sRGB PNGARG((png_structp png_ptr, png_infop info_ptr, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 1153 | png_uint_32 length)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1154 | #endif |
| 1155 | |
Glenn Randers-Pehrson | 4e6b5e9 | 2009-09-23 10:24:53 -0500 | [diff] [blame] | 1156 | #ifdef PNG_READ_tEXt_SUPPORTED |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1157 | PNG_EXTERN void png_handle_tEXt PNGARG((png_structp png_ptr, png_infop info_ptr, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 1158 | png_uint_32 length)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1159 | #endif |
| 1160 | |
Glenn Randers-Pehrson | 4e6b5e9 | 2009-09-23 10:24:53 -0500 | [diff] [blame] | 1161 | #ifdef PNG_READ_tIME_SUPPORTED |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1162 | PNG_EXTERN void png_handle_tIME PNGARG((png_structp png_ptr, png_infop info_ptr, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 1163 | png_uint_32 length)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1164 | #endif |
| 1165 | |
Glenn Randers-Pehrson | 4e6b5e9 | 2009-09-23 10:24:53 -0500 | [diff] [blame] | 1166 | #ifdef PNG_READ_tRNS_SUPPORTED |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1167 | PNG_EXTERN void png_handle_tRNS PNGARG((png_structp png_ptr, png_infop info_ptr, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 1168 | png_uint_32 length)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1169 | #endif |
| 1170 | |
Glenn Randers-Pehrson | 4e6b5e9 | 2009-09-23 10:24:53 -0500 | [diff] [blame] | 1171 | #ifdef PNG_READ_zTXt_SUPPORTED |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1172 | PNG_EXTERN void png_handle_zTXt PNGARG((png_structp png_ptr, png_infop info_ptr, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 1173 | png_uint_32 length)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1174 | #endif |
| 1175 | |
Glenn Randers-Pehrson | bb5cb14 | 2011-09-22 12:41:58 -0500 | [diff] [blame] | 1176 | #ifdef PNG_HANDLE_AS_UNKNOWN_SUPPORTED |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1177 | PNG_EXTERN void png_handle_unknown PNGARG((png_structp png_ptr, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 1178 | png_infop info_ptr, png_uint_32 length)); |
Glenn Randers-Pehrson | bb5cb14 | 2011-09-22 12:41:58 -0500 | [diff] [blame] | 1179 | #endif |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1180 | |
| 1181 | PNG_EXTERN void png_check_chunk_name PNGARG((png_structp png_ptr, |
Glenn Randers-Pehrson | bb5cb14 | 2011-09-22 12:41:58 -0500 | [diff] [blame] | 1182 | png_uint_32 chunk_name)); |
| 1183 | |
| 1184 | #ifdef PNG_HANDLE_AS_UNKNOWN_SUPPORTED |
| 1185 | /* Exactly as png_handle_as_unknown() except that the argument is a 32-bit chunk |
| 1186 | * name, not a string. |
| 1187 | */ |
| 1188 | PNG_EXTERN int png_chunk_unknown_handling PNGARG((png_structp png_ptr, |
| 1189 | png_uint_32 chunk_name)); |
| 1190 | #endif |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1191 | |
Glenn Randers-Pehrson | 6c7a09a | 2009-06-15 21:57:39 -0500 | [diff] [blame] | 1192 | /* Handle the transformations for reading and writing */ |
John Bowler | 4a12f4a | 2011-04-17 18:34:22 -0500 | [diff] [blame] | 1193 | #ifdef PNG_READ_TRANSFORMS_SUPPORTED |
Glenn Randers-Pehrson | bb5cb14 | 2011-09-22 12:41:58 -0500 | [diff] [blame] | 1194 | PNG_EXTERN void png_do_read_transformations PNGARG((png_structp png_ptr, |
| 1195 | png_row_infop row_info)); |
John Bowler | 4a12f4a | 2011-04-17 18:34:22 -0500 | [diff] [blame] | 1196 | #endif |
| 1197 | #ifdef PNG_WRITE_TRANSFORMS_SUPPORTED |
Glenn Randers-Pehrson | bb5cb14 | 2011-09-22 12:41:58 -0500 | [diff] [blame] | 1198 | PNG_EXTERN void png_do_write_transformations PNGARG((png_structp png_ptr, |
| 1199 | png_row_infop row_info)); |
John Bowler | 4a12f4a | 2011-04-17 18:34:22 -0500 | [diff] [blame] | 1200 | #endif |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1201 | |
John Bowler | 4a12f4a | 2011-04-17 18:34:22 -0500 | [diff] [blame] | 1202 | #ifdef PNG_READ_TRANSFORMS_SUPPORTED |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1203 | PNG_EXTERN void png_init_read_transformations PNGARG((png_structp png_ptr)); |
John Bowler | 4a12f4a | 2011-04-17 18:34:22 -0500 | [diff] [blame] | 1204 | #endif |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1205 | |
| 1206 | #ifdef PNG_PROGRESSIVE_READ_SUPPORTED |
| 1207 | PNG_EXTERN void png_push_read_chunk PNGARG((png_structp png_ptr, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 1208 | png_infop info_ptr)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1209 | PNG_EXTERN void png_push_read_sig PNGARG((png_structp png_ptr, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 1210 | png_infop info_ptr)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1211 | PNG_EXTERN void png_push_check_crc PNGARG((png_structp png_ptr)); |
| 1212 | PNG_EXTERN void png_push_crc_skip PNGARG((png_structp png_ptr, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 1213 | png_uint_32 length)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1214 | PNG_EXTERN void png_push_crc_finish PNGARG((png_structp png_ptr)); |
| 1215 | PNG_EXTERN void png_push_save_buffer PNGARG((png_structp png_ptr)); |
| 1216 | PNG_EXTERN void png_push_restore_buffer PNGARG((png_structp png_ptr, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 1217 | png_bytep buffer, png_size_t buffer_length)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1218 | PNG_EXTERN void png_push_read_IDAT PNGARG((png_structp png_ptr)); |
| 1219 | PNG_EXTERN void png_process_IDAT_data PNGARG((png_structp png_ptr, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 1220 | png_bytep buffer, png_size_t buffer_length)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1221 | PNG_EXTERN void png_push_process_row PNGARG((png_structp png_ptr)); |
| 1222 | PNG_EXTERN void png_push_handle_unknown PNGARG((png_structp png_ptr, |
| 1223 | png_infop info_ptr, png_uint_32 length)); |
| 1224 | PNG_EXTERN void png_push_have_info PNGARG((png_structp png_ptr, |
| 1225 | png_infop info_ptr)); |
| 1226 | PNG_EXTERN void png_push_have_end PNGARG((png_structp png_ptr, |
| 1227 | png_infop info_ptr)); |
| 1228 | PNG_EXTERN void png_push_have_row PNGARG((png_structp png_ptr, png_bytep row)); |
| 1229 | PNG_EXTERN void png_push_read_end PNGARG((png_structp png_ptr, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 1230 | png_infop info_ptr)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1231 | PNG_EXTERN void png_process_some_data PNGARG((png_structp png_ptr, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 1232 | png_infop info_ptr)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1233 | PNG_EXTERN void png_read_push_finish_row PNGARG((png_structp png_ptr)); |
Glenn Randers-Pehrson | d4df36c | 2010-03-06 10:45:55 -0600 | [diff] [blame] | 1234 | # ifdef PNG_READ_tEXt_SUPPORTED |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1235 | PNG_EXTERN void png_push_handle_tEXt PNGARG((png_structp png_ptr, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 1236 | png_infop info_ptr, png_uint_32 length)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1237 | PNG_EXTERN void png_push_read_tEXt PNGARG((png_structp png_ptr, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 1238 | png_infop info_ptr)); |
Glenn Randers-Pehrson | d4df36c | 2010-03-06 10:45:55 -0600 | [diff] [blame] | 1239 | # endif |
| 1240 | # ifdef PNG_READ_zTXt_SUPPORTED |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1241 | PNG_EXTERN void png_push_handle_zTXt PNGARG((png_structp png_ptr, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 1242 | png_infop info_ptr, png_uint_32 length)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1243 | PNG_EXTERN void png_push_read_zTXt PNGARG((png_structp png_ptr, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 1244 | png_infop info_ptr)); |
Glenn Randers-Pehrson | d4df36c | 2010-03-06 10:45:55 -0600 | [diff] [blame] | 1245 | # endif |
| 1246 | # ifdef PNG_READ_iTXt_SUPPORTED |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1247 | PNG_EXTERN void png_push_handle_iTXt PNGARG((png_structp png_ptr, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 1248 | png_infop info_ptr, png_uint_32 length)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1249 | PNG_EXTERN void png_push_read_iTXt PNGARG((png_structp png_ptr, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 1250 | png_infop info_ptr)); |
Glenn Randers-Pehrson | d4df36c | 2010-03-06 10:45:55 -0600 | [diff] [blame] | 1251 | # endif |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1252 | |
| 1253 | #endif /* PNG_PROGRESSIVE_READ_SUPPORTED */ |
| 1254 | |
| 1255 | #ifdef PNG_MNG_FEATURES_SUPPORTED |
| 1256 | PNG_EXTERN void png_do_read_intrapixel PNGARG((png_row_infop row_info, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 1257 | png_bytep row)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1258 | PNG_EXTERN void png_do_write_intrapixel PNGARG((png_row_infop row_info, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 1259 | png_bytep row)); |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1260 | #endif |
| 1261 | |
Glenn Randers-Pehrson | f783101 | 2008-11-13 06:05:13 -0600 | [diff] [blame] | 1262 | /* Added at libpng version 1.4.0 */ |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 1263 | #ifdef PNG_CHECK_cHRM_SUPPORTED |
Glenn Randers-Pehrson | 134bbe4 | 2009-09-24 18:10:49 -0500 | [diff] [blame] | 1264 | PNG_EXTERN int png_check_cHRM_fixed PNGARG((png_structp png_ptr, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 1265 | png_fixed_point int_white_x, png_fixed_point int_white_y, |
| 1266 | png_fixed_point int_red_x, png_fixed_point int_red_y, png_fixed_point |
| 1267 | int_green_x, png_fixed_point int_green_y, png_fixed_point int_blue_x, |
| 1268 | png_fixed_point int_blue_y)); |
Glenn Randers-Pehrson | f783101 | 2008-11-13 06:05:13 -0600 | [diff] [blame] | 1269 | #endif |
Glenn Randers-Pehrson | f783101 | 2008-11-13 06:05:13 -0600 | [diff] [blame] | 1270 | |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 1271 | #ifdef PNG_CHECK_cHRM_SUPPORTED |
Glenn Randers-Pehrson | 7ec330d | 2009-09-25 11:45:42 -0500 | [diff] [blame] | 1272 | /* Added at libpng version 1.2.34 and 1.4.0 */ |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 1273 | /* Currently only used by png_check_cHRM_fixed */ |
Glenn Randers-Pehrson | 7ec330d | 2009-09-25 11:45:42 -0500 | [diff] [blame] | 1274 | PNG_EXTERN void png_64bit_product PNGARG((long v1, long v2, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 1275 | unsigned long *hi_product, unsigned long *lo_product)); |
Glenn Randers-Pehrson | 7ec330d | 2009-09-25 11:45:42 -0500 | [diff] [blame] | 1276 | #endif |
| 1277 | |
John Bowler | 7b97965 | 2011-08-16 22:36:43 -0500 | [diff] [blame] | 1278 | #ifdef PNG_cHRM_SUPPORTED |
John Bowler | 9b979b1 | 2011-08-16 22:58:33 -0500 | [diff] [blame] | 1279 | /* Added at libpng version 1.5.5 */ |
| 1280 | typedef struct png_xy |
| 1281 | { |
| 1282 | png_fixed_point redx, redy; |
| 1283 | png_fixed_point greenx, greeny; |
| 1284 | png_fixed_point bluex, bluey; |
| 1285 | png_fixed_point whitex, whitey; |
| 1286 | } png_xy; |
| 1287 | |
| 1288 | typedef struct png_XYZ |
| 1289 | { |
| 1290 | png_fixed_point redX, redY, redZ; |
| 1291 | png_fixed_point greenX, greenY, greenZ; |
| 1292 | png_fixed_point blueX, blueY, blueZ; |
| 1293 | } png_XYZ; |
| 1294 | |
John Bowler | 736f40f | 2011-08-25 16:19:44 -0500 | [diff] [blame] | 1295 | /* The conversion APIs return 0 on success, non-zero on a parameter error. They |
| 1296 | * allow conversion between the above representations of a color encoding. When |
| 1297 | * converting from XYZ end points to chromaticities the absolute magnitude of |
| 1298 | * the end points is lost, when converting back the sum of the Y values of the |
| 1299 | * three end points will be 1.0 |
| 1300 | */ |
John Bowler | 9b979b1 | 2011-08-16 22:58:33 -0500 | [diff] [blame] | 1301 | PNG_EXTERN int png_xy_from_XYZ PNGARG((png_xy *xy, png_XYZ XYZ)); |
| 1302 | PNG_EXTERN int png_XYZ_from_xy PNGARG((png_XYZ *XYZ, png_xy xy)); |
| 1303 | PNG_EXTERN int png_XYZ_from_xy_checked PNGARG((png_structp png_ptr, |
| 1304 | png_XYZ *XYZ, png_xy xy)); |
| 1305 | #endif |
| 1306 | |
Glenn Randers-Pehrson | 134bbe4 | 2009-09-24 18:10:49 -0500 | [diff] [blame] | 1307 | /* Added at libpng version 1.4.0 */ |
| 1308 | PNG_EXTERN void png_check_IHDR PNGARG((png_structp png_ptr, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 1309 | png_uint_32 width, png_uint_32 height, int bit_depth, |
| 1310 | int color_type, int interlace_type, int compression_type, |
| 1311 | int filter_type)); |
Glenn Randers-Pehrson | 134bbe4 | 2009-09-24 18:10:49 -0500 | [diff] [blame] | 1312 | |
Glenn Randers-Pehrson | d29033f | 2009-11-07 10:46:42 -0600 | [diff] [blame] | 1313 | /* Free all memory used by the read (old method - NOT DLL EXPORTED) */ |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 1314 | PNG_EXTERN void png_read_destroy PNGARG((png_structp png_ptr, |
| 1315 | png_infop info_ptr, png_infop end_info_ptr)); |
Glenn Randers-Pehrson | d29033f | 2009-11-07 10:46:42 -0600 | [diff] [blame] | 1316 | |
| 1317 | /* Free any memory used in png_ptr struct (old method - NOT DLL EXPORTED) */ |
Glenn Randers-Pehrson | aa4e359 | 2010-07-06 07:40:47 -0500 | [diff] [blame] | 1318 | PNG_EXTERN void png_write_destroy PNGARG((png_structp png_ptr)); |
Glenn Randers-Pehrson | d29033f | 2009-11-07 10:46:42 -0600 | [diff] [blame] | 1319 | |
| 1320 | #ifdef USE_FAR_KEYWORD /* memory model conversion function */ |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 1321 | PNG_EXTERN void *png_far_to_near PNGARG((png_structp png_ptr, png_voidp ptr, |
Glenn Randers-Pehrson | e8b1aa0 | 2010-03-06 11:39:29 -0600 | [diff] [blame] | 1322 | int check)); |
Glenn Randers-Pehrson | d29033f | 2009-11-07 10:46:42 -0600 | [diff] [blame] | 1323 | #endif /* USE_FAR_KEYWORD */ |
| 1324 | |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 1325 | #if defined(PNG_FLOATING_POINT_SUPPORTED) && defined(PNG_ERROR_TEXT_SUPPORTED) |
Glenn Randers-Pehrson | 77396b6 | 2010-08-02 08:00:10 -0500 | [diff] [blame] | 1326 | PNG_EXTERN PNG_FUNCTION(void, png_fixed_error, (png_structp png_ptr, |
| 1327 | png_const_charp name),PNG_NORETURN); |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 1328 | #endif |
| 1329 | |
John Bowler | 88b77cc | 2011-05-05 06:49:55 -0500 | [diff] [blame] | 1330 | /* Puts 'string' into 'buffer' at buffer[pos], taking care never to overwrite |
| 1331 | * the end. Always leaves the buffer nul terminated. Never errors out (and |
| 1332 | * there is no error code.) |
| 1333 | */ |
| 1334 | PNG_EXTERN size_t png_safecat(png_charp buffer, size_t bufsize, size_t pos, |
| 1335 | png_const_charp string); |
| 1336 | |
John Bowler | c5bef94 | 2011-05-05 17:35:39 -0500 | [diff] [blame] | 1337 | /* Various internal functions to handle formatted warning messages, currently |
| 1338 | * only implemented for warnings. |
| 1339 | */ |
| 1340 | #if defined(PNG_WARNINGS_SUPPORTED) || defined(PNG_TIME_RFC1123_SUPPORTED) |
John Bowler | 88b77cc | 2011-05-05 06:49:55 -0500 | [diff] [blame] | 1341 | /* Utility to dump an unsigned value into a buffer, given a start pointer and |
| 1342 | * and end pointer (which should point just *beyond* the end of the buffer!) |
| 1343 | * Returns the pointer to the start of the formatted string. This utility only |
| 1344 | * does unsigned values. |
| 1345 | */ |
| 1346 | PNG_EXTERN png_charp png_format_number(png_const_charp start, png_charp end, |
| 1347 | int format, png_alloc_size_t number); |
| 1348 | |
| 1349 | /* Convenience macro that takes an array: */ |
| 1350 | #define PNG_FORMAT_NUMBER(buffer,format,number) \ |
| 1351 | png_format_number(buffer, buffer + (sizeof buffer), format, number) |
| 1352 | |
| 1353 | /* Suggested size for a number buffer (enough for 64 bits and a sign!) */ |
| 1354 | #define PNG_NUMBER_BUFFER_SIZE 24 |
| 1355 | |
| 1356 | /* These are the integer formats currently supported, the name is formed from |
| 1357 | * the standard printf(3) format string. |
| 1358 | */ |
| 1359 | #define PNG_NUMBER_FORMAT_u 1 /* chose unsigned API! */ |
| 1360 | #define PNG_NUMBER_FORMAT_02u 2 |
| 1361 | #define PNG_NUMBER_FORMAT_d 1 /* chose signed API! */ |
| 1362 | #define PNG_NUMBER_FORMAT_02d 2 |
| 1363 | #define PNG_NUMBER_FORMAT_x 3 |
| 1364 | #define PNG_NUMBER_FORMAT_02x 4 |
| 1365 | #define PNG_NUMBER_FORMAT_fixed 5 /* choose the signed API */ |
| 1366 | #endif |
| 1367 | |
| 1368 | #ifdef PNG_WARNINGS_SUPPORTED |
Glenn Randers-Pehrson | ef217b7 | 2011-06-15 12:58:27 -0500 | [diff] [blame] | 1369 | /* New defines and members adding in libpng-1.5.4 */ |
John Bowler | 88b77cc | 2011-05-05 06:49:55 -0500 | [diff] [blame] | 1370 | # define PNG_WARNING_PARAMETER_SIZE 32 |
| 1371 | # define PNG_WARNING_PARAMETER_COUNT 8 |
| 1372 | |
| 1373 | /* An l-value of this type has to be passed to the APIs below to cache the |
| 1374 | * values of the parameters to a formatted warning message. |
| 1375 | */ |
| 1376 | typedef char png_warning_parameters[PNG_WARNING_PARAMETER_COUNT][ |
| 1377 | PNG_WARNING_PARAMETER_SIZE]; |
| 1378 | |
| 1379 | PNG_EXTERN void png_warning_parameter(png_warning_parameters p, int number, |
| 1380 | png_const_charp string); |
| 1381 | /* Parameters are limited in size to PNG_WARNING_PARAMETER_SIZE characters, |
| 1382 | * including the trailing '\0'. |
| 1383 | */ |
| 1384 | PNG_EXTERN void png_warning_parameter_unsigned(png_warning_parameters p, |
| 1385 | int number, int format, png_alloc_size_t value); |
| 1386 | /* Use png_alloc_size_t because it is an unsigned type as big as any we |
| 1387 | * need to output. Use the following for a signed value. |
| 1388 | */ |
| 1389 | PNG_EXTERN void png_warning_parameter_signed(png_warning_parameters p, |
| 1390 | int number, int format, png_int_32 value); |
| 1391 | |
| 1392 | PNG_EXTERN void png_formatted_warning(png_structp png_ptr, |
| 1393 | png_warning_parameters p, png_const_charp message); |
| 1394 | /* 'message' follows the X/Open approach of using @1, @2 to insert |
| 1395 | * parameters previously supplied using the above functions. Errors in |
| 1396 | * specifying the paramters will simple result in garbage substitutions. |
| 1397 | */ |
| 1398 | #endif |
| 1399 | |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 1400 | /* ASCII to FP interfaces, currently only implemented if sCAL |
| 1401 | * support is required. |
| 1402 | */ |
Glenn Randers-Pehrson | 48dc6eb | 2010-07-31 07:09:58 -0500 | [diff] [blame] | 1403 | #if defined(PNG_READ_sCAL_SUPPORTED) |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 1404 | /* MAX_DIGITS is actually the maximum number of characters in an sCAL |
| 1405 | * width or height, derived from the precision (number of significant |
| 1406 | * digits - a build time settable option) and assumpitions about the |
| 1407 | * maximum ridiculous exponent. |
| 1408 | */ |
| 1409 | #define PNG_sCAL_MAX_DIGITS (PNG_sCAL_PRECISION+1/*.*/+1/*E*/+10/*exponent*/) |
Glenn Randers-Pehrson | 48dc6eb | 2010-07-31 07:09:58 -0500 | [diff] [blame] | 1410 | |
| 1411 | #ifdef PNG_FLOATING_POINT_SUPPORTED |
Glenn Randers-Pehrson | 2be8b64 | 2010-07-29 19:09:18 -0500 | [diff] [blame] | 1412 | PNG_EXTERN void png_ascii_from_fp PNGARG((png_structp png_ptr, png_charp ascii, |
Glenn Randers-Pehrson | e600c51 | 2010-08-18 07:25:46 -0500 | [diff] [blame] | 1413 | png_size_t size, double fp, unsigned int precision)); |
Glenn Randers-Pehrson | 48dc6eb | 2010-07-31 07:09:58 -0500 | [diff] [blame] | 1414 | #endif /* FLOATING_POINT */ |
| 1415 | |
| 1416 | #ifdef PNG_FIXED_POINT_SUPPORTED |
| 1417 | PNG_EXTERN void png_ascii_from_fixed PNGARG((png_structp png_ptr, |
| 1418 | png_charp ascii, png_size_t size, png_fixed_point fp)); |
| 1419 | #endif /* FIXED_POINT */ |
| 1420 | #endif /* READ_sCAL */ |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 1421 | |
| 1422 | #if defined(PNG_sCAL_SUPPORTED) || defined(PNG_pCAL_SUPPORTED) |
| 1423 | /* An internal API to validate the format of a floating point number. |
| 1424 | * The result is the index of the next character. If the number is |
| 1425 | * not valid it will be the index of a character in the supposed number. |
| 1426 | * |
| 1427 | * The format of a number is defined in the PNG extensions specification |
| 1428 | * and this API is strictly conformant to that spec, not anyone elses! |
| 1429 | * |
| 1430 | * The format as a regular expression is: |
| 1431 | * |
| 1432 | * [+-]?[0-9]+.?([Ee][+-]?[0-9]+)? |
| 1433 | * |
| 1434 | * or: |
| 1435 | * |
| 1436 | * [+-]?.[0-9]+(.[0-9]+)?([Ee][+-]?[0-9]+)? |
| 1437 | * |
| 1438 | * The complexity is that either integer or fraction must be present and the |
| 1439 | * fraction is permitted to have no digits only if the integer is present. |
| 1440 | * |
| 1441 | * NOTE: The dangling E problem. |
| 1442 | * There is a PNG valid floating point number in the following: |
| 1443 | * |
| 1444 | * PNG floating point numb1.ers are not greedy. |
| 1445 | * |
| 1446 | * Working this out requires *TWO* character lookahead (because of the |
| 1447 | * sign), the parser does not do this - it will fail at the 'r' - this |
| 1448 | * doesn't matter for PNG sCAL chunk values, but it requires more care |
| 1449 | * if the value were ever to be embedded in something more complex. Use |
| 1450 | * ANSI-C strtod if you need the lookahead. |
| 1451 | */ |
| 1452 | /* State table for the parser. */ |
| 1453 | #define PNG_FP_INTEGER 0 /* before or in integer */ |
| 1454 | #define PNG_FP_FRACTION 1 /* before or in fraction */ |
| 1455 | #define PNG_FP_EXPONENT 2 /* before or in exponent */ |
| 1456 | #define PNG_FP_STATE 3 /* mask for the above */ |
| 1457 | #define PNG_FP_SAW_SIGN 4 /* Saw +/- in current state */ |
| 1458 | #define PNG_FP_SAW_DIGIT 8 /* Saw a digit in current state */ |
| 1459 | #define PNG_FP_SAW_DOT 16 /* Saw a dot in current state */ |
| 1460 | #define PNG_FP_SAW_E 32 /* Saw an E (or e) in current state */ |
| 1461 | #define PNG_FP_SAW_ANY 60 /* Saw any of the above 4 */ |
John Bowler | 8d26126 | 2011-06-18 13:37:11 -0500 | [diff] [blame] | 1462 | |
| 1463 | /* These three values don't affect the parser. They are set but not used. |
| 1464 | */ |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 1465 | #define PNG_FP_WAS_VALID 64 /* Preceding substring is a valid fp number */ |
John Bowler | 8d26126 | 2011-06-18 13:37:11 -0500 | [diff] [blame] | 1466 | #define PNG_FP_NEGATIVE 128 /* A negative number, including "-0" */ |
| 1467 | #define PNG_FP_NONZERO 256 /* A non-zero value */ |
| 1468 | #define PNG_FP_STICKY 448 /* The above three flags */ |
| 1469 | |
| 1470 | /* This is available for the caller to store in 'state' if required. Do not |
| 1471 | * call the parser after setting it (the parser sometimes clears it.) |
| 1472 | */ |
| 1473 | #define PNG_FP_INVALID 512 /* Available for callers as a distinct value */ |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 1474 | |
| 1475 | /* Result codes for the parser (boolean - true meants ok, false means |
| 1476 | * not ok yet.) |
| 1477 | */ |
| 1478 | #define PNG_FP_MAYBE 0 /* The number may be valid in the future */ |
| 1479 | #define PNG_FP_OK 1 /* The number is valid */ |
| 1480 | |
John Bowler | 8d26126 | 2011-06-18 13:37:11 -0500 | [diff] [blame] | 1481 | /* Tests on the sticky non-zero and negative flags. To pass these checks |
| 1482 | * the state must also indicate that the whole number is valid - this is |
| 1483 | * achieved by testing PNG_FP_SAW_DIGIT (see the implementation for why this |
| 1484 | * is equivalent to PNG_FP_OK above.) |
| 1485 | */ |
| 1486 | #define PNG_FP_NZ_MASK (PNG_FP_SAW_DIGIT | PNG_FP_NEGATIVE | PNG_FP_NONZERO) |
| 1487 | /* NZ_MASK: the string is valid and a non-zero negative value */ |
| 1488 | #define PNG_FP_Z_MASK (PNG_FP_SAW_DIGIT | PNG_FP_NONZERO) |
| 1489 | /* Z MASK: the string is valid and a non-zero value. */ |
| 1490 | /* PNG_FP_SAW_DIGIT: the string is valid. */ |
| 1491 | #define PNG_FP_IS_ZERO(state) (((state) & PNG_FP_Z_MASK) == PNG_FP_SAW_DIGIT) |
| 1492 | #define PNG_FP_IS_POSITIVE(state) (((state) & PNG_FP_NZ_MASK) == PNG_FP_Z_MASK) |
| 1493 | #define PNG_FP_IS_NEGATIVE(state) (((state) & PNG_FP_NZ_MASK) == PNG_FP_NZ_MASK) |
| 1494 | |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 1495 | /* The actual parser. This can be called repeatedly, it updates |
| 1496 | * the index into the string and the state variable (which must |
| 1497 | * be initialzed to 0). It returns a result code, as above. There |
| 1498 | * is no point calling the parser any more if it fails to advance to |
| 1499 | * the end of the string - it is stuck on an invalid character (or |
| 1500 | * terminated by '\0'). |
| 1501 | * |
| 1502 | * Note that the pointer will consume an E or even an E+ then leave |
| 1503 | * a 'maybe' state even though a preceding integer.fraction is valid. |
| 1504 | * The PNG_FP_WAS_VALID flag indicates that a preceding substring was |
| 1505 | * a valid number. It's possible to recover from this by calling |
| 1506 | * the parser again (from the start, with state 0) but with a string |
| 1507 | * that omits the last character (i.e. set the size to the index of |
| 1508 | * the problem character.) This has not been tested within libpng. |
| 1509 | */ |
Glenn Randers-Pehrson | e600c51 | 2010-08-18 07:25:46 -0500 | [diff] [blame] | 1510 | PNG_EXTERN int png_check_fp_number PNGARG((png_const_charp string, |
| 1511 | png_size_t size, int *statep, png_size_tp whereami)); |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 1512 | |
| 1513 | /* This is the same but it checks a complete string and returns true |
John Bowler | 8d26126 | 2011-06-18 13:37:11 -0500 | [diff] [blame] | 1514 | * only if it just contains a floating point number. As of 1.5.4 this |
| 1515 | * function also returns the state at the end of parsing the number if |
| 1516 | * it was valid (otherwise it returns 0.) This can be used for testing |
| 1517 | * for negative or zero values using the sticky flag. |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 1518 | */ |
Glenn Randers-Pehrson | e600c51 | 2010-08-18 07:25:46 -0500 | [diff] [blame] | 1519 | PNG_EXTERN int png_check_fp_string PNGARG((png_const_charp string, |
| 1520 | png_size_t size)); |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 1521 | #endif /* pCAL || sCAL */ |
| 1522 | |
Glenn Randers-Pehrson | 48dc6eb | 2010-07-31 07:09:58 -0500 | [diff] [blame] | 1523 | #if defined(PNG_READ_GAMMA_SUPPORTED) ||\ |
| 1524 | defined(PNG_INCH_CONVERSIONS_SUPPORTED) || defined(PNG_READ_pHYs_SUPPORTED) |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 1525 | /* Added at libpng version 1.5.0 */ |
| 1526 | /* This is a utility to provide a*times/div (rounded) and indicate |
| 1527 | * if there is an overflow. The result is a boolean - false (0) |
| 1528 | * for overflow, true (1) if no overflow, in which case *res |
| 1529 | * holds the result. |
| 1530 | */ |
| 1531 | PNG_EXTERN int png_muldiv PNGARG((png_fixed_point_p res, png_fixed_point a, |
Glenn Randers-Pehrson | 8625b39 | 2011-02-03 21:43:38 -0600 | [diff] [blame] | 1532 | png_int_32 multiplied_by, png_int_32 divided_by)); |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 1533 | #endif |
| 1534 | |
| 1535 | #if defined(PNG_READ_GAMMA_SUPPORTED) || defined(PNG_INCH_CONVERSIONS_SUPPORTED) |
| 1536 | /* Same deal, but issue a warning on overflow and return 0. */ |
| 1537 | PNG_EXTERN png_fixed_point png_muldiv_warn PNGARG((png_structp png_ptr, |
Glenn Randers-Pehrson | 8625b39 | 2011-02-03 21:43:38 -0600 | [diff] [blame] | 1538 | png_fixed_point a, png_int_32 multiplied_by, png_int_32 divided_by)); |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 1539 | #endif |
| 1540 | |
| 1541 | #ifdef PNG_READ_GAMMA_SUPPORTED |
| 1542 | /* Calculate a reciprocal - used for gamma values. This returns |
| 1543 | * 0 if the argument is 0 in order to maintain an undefined value, |
| 1544 | * there are no warnings. |
| 1545 | */ |
| 1546 | PNG_EXTERN png_fixed_point png_reciprocal PNGARG((png_fixed_point a)); |
| 1547 | |
| 1548 | /* The same but gives a reciprocal of the product of two fixed point |
| 1549 | * values. Accuracy is suitable for gamma calculations but this is |
| 1550 | * not exact - use png_muldiv for that. |
| 1551 | */ |
| 1552 | PNG_EXTERN png_fixed_point png_reciprocal2 PNGARG((png_fixed_point a, |
| 1553 | png_fixed_point b)); |
| 1554 | #endif |
| 1555 | |
| 1556 | #ifdef PNG_READ_GAMMA_SUPPORTED |
| 1557 | /* Internal fixed point gamma correction. These APIs are called as |
| 1558 | * required to convert single values - they don't need to be fast, |
| 1559 | * they are not used when processing image pixel values. |
| 1560 | * |
| 1561 | * While the input is an 'unsigned' value it must actually be the |
| 1562 | * correct bit value - 0..255 or 0..65535 as required. |
| 1563 | */ |
| 1564 | PNG_EXTERN png_uint_16 png_gamma_correct PNGARG((png_structp png_ptr, |
Glenn Randers-Pehrson | 8625b39 | 2011-02-03 21:43:38 -0600 | [diff] [blame] | 1565 | unsigned int value, png_fixed_point gamma_value)); |
| 1566 | PNG_EXTERN int png_gamma_significant PNGARG((png_fixed_point gamma_value)); |
Glenn Randers-Pehrson | e600c51 | 2010-08-18 07:25:46 -0500 | [diff] [blame] | 1567 | PNG_EXTERN png_uint_16 png_gamma_16bit_correct PNGARG((unsigned int value, |
Glenn Randers-Pehrson | 8625b39 | 2011-02-03 21:43:38 -0600 | [diff] [blame] | 1568 | png_fixed_point gamma_value)); |
Glenn Randers-Pehrson | e600c51 | 2010-08-18 07:25:46 -0500 | [diff] [blame] | 1569 | PNG_EXTERN png_byte png_gamma_8bit_correct PNGARG((unsigned int value, |
Glenn Randers-Pehrson | 8625b39 | 2011-02-03 21:43:38 -0600 | [diff] [blame] | 1570 | png_fixed_point gamma_value)); |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 1571 | PNG_EXTERN void png_build_gamma_table PNGARG((png_structp png_ptr, |
Glenn Randers-Pehrson | 67439c4 | 2010-08-19 07:01:09 -0500 | [diff] [blame] | 1572 | int bit_depth)); |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 1573 | #endif |
Glenn Randers-Pehrson | d29033f | 2009-11-07 10:46:42 -0600 | [diff] [blame] | 1574 | |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1575 | /* Maintainer: Put new private prototypes here ^ and in libpngpf.3 */ |
| 1576 | |
Glenn Randers-Pehrson | 31aee0d | 2010-07-29 17:39:14 -0500 | [diff] [blame] | 1577 | |
| 1578 | #include "pngdebug.h" |
| 1579 | |
Glenn Randers-Pehrson | 1721829 | 2006-04-20 07:20:46 -0500 | [diff] [blame] | 1580 | #ifdef __cplusplus |
| 1581 | } |
| 1582 | #endif |
| 1583 | |
Glenn Randers-Pehrson | beb572e | 2006-08-19 13:59:24 -0500 | [diff] [blame] | 1584 | #endif /* PNGPRIV_H */ |