blob: 08ae05ee52adefd69920ba2902dba32793610740 [file] [log] [blame]
Guy Schalnat0d580581995-07-20 02:43:20 -05001
Andreas Dilger47a0c421997-05-16 02:46:07 -05002/* png.h - header file for PNG reference library
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06003 *
Glenn Randers-Pehrson15dac0b2000-07-10 07:48:54 -05004 * libpng version 1.0.8beta2 - July 10, 2000
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06005 * Copyright (c) 1998, 1999, 2000 Glenn Randers-Pehrson
Glenn Randers-Pehrsond4366722000-06-04 14:29:29 -05006 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
7 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06008 *
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05009 * Authors and maintainers:
Glenn Randers-Pehrson68ea2432000-04-01 21:10:05 -060010 * libpng versions 0.71, May 1995, through 0.88, January 1996: Guy Schalnat
11 * libpng versions 0.89c, June 1996, through 0.96, May 1997: Andreas Dilger
Glenn Randers-Pehrson15dac0b2000-07-10 07:48:54 -050012 * libpng versions 0.97, January 1998, through 1.0.8beta2 - July 10, 2000: Glenn
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -050013 * See also "Contributing Authors", below.
14 *
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -060015 * Note about libpng version numbers:
16 *
17 * Due to various miscommunications, unforeseen code incompatibilities
18 * and occasional factors outside the authors' control, version numbering
19 * on the library has not always been consistent and straightforward.
20 * The following table summarizes matters since version 0.89c, which was
21 * the first widely used release:
22 *
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -050023 * source png.h png.h shared-lib
24 * version string int version
25 * ------- ------ ----- ----------
26 * 0.89c "1.0 beta 3" 0.89 89 1.0.89
27 * 0.90 "1.0 beta 4" 0.90 90 0.90 [should have been 2.0.90]
28 * 0.95 "1.0 beta 5" 0.95 95 0.95 [should have been 2.0.95]
29 * 0.96 "1.0 beta 6" 0.96 96 0.96 [should have been 2.0.96]
30 * 0.97b "1.00.97 beta 7" 1.00.97 97 1.0.1 [should have been 2.0.97]
31 * 0.97c 0.97 97 2.0.97
32 * 0.98 0.98 98 2.0.98
33 * 0.99 0.99 98 2.0.99
34 * 0.99a-m 0.99 99 2.0.99
35 * 1.00 1.00 100 2.1.0 [100 should be 10000]
36 * 1.0.0 (from here on, the 100 2.1.0 [100 should be 10000]
37 * 1.0.1 png.h string is 10001 2.1.0
38 * 1.0.1a-e identical to the 10002 from here on, the shared library
39 * 1.0.2 source version) 10002 is 2.V where V is the source code
40 * 1.0.2a-b 10003 version, except as noted.
41 * 1.0.3 10003
42 * 1.0.3a-d 10004
43 * 1.0.4 10004
44 * 1.0.4a-f 10005
45 * 1.0.5 (+ 2 patches) 10005
46 * 1.0.5a-d 10006
47 * 1.0.5e-r 10100 (not source compatible)
48 * 1.0.5s-v 10006 (not binary compatible)
49 * 1.0.6 (+ 3 patches) 10006 (still binary incompatible)
50 * 1.0.6d-f 10007 (still binary incompatible)
51 * 1.0.6g 10007
52 * 1.0.6h 10007 10.6h (testing xy.z so-numbering)
53 * 1.0.6i 10007 10.6i
54 * 1.0.6j 10007 2.1.0.6j (incompatible with 1.0.0)
Glenn Randers-Pehrson13944802000-06-24 07:42:42 -050055 * 1.0.7beta11-18 10007 2.1.0.7beta11-18 (binary compatible)
56 * 1.0.7rc1-2 10007 2.1.0.7rc1-2 (binary compatible)
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -050057 * 1.0.7 10007 (still compatible)
Glenn Randers-Pehrson15dac0b2000-07-10 07:48:54 -050058 * 1.0.7beta1-2 10008 2.1.0.8beta1-2
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -060059 *
Glenn Randers-Pehrson326320e2000-04-24 07:43:17 -050060 * Henceforth the source version will match the shared-library major
61 * and minor numbers; the shared-library major version number will be
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -060062 * used for changes in backward compatibility, as it is intended. The
63 * PNG_PNGLIB_VER macro, which is not used within libpng but is available
64 * for applications, is an unsigned integer of the form xyyzz corresponding
Glenn Randers-Pehrson81fdf8a2000-04-07 10:34:56 -050065 * to the source version x.y.z (leading zeros in y and z). Beta versions
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -050066 * were given the previous public release number plus a letter, until
67 * version 1.0.6j; from then on they were given the upcoming public
Glenn Randers-Pehrsonec61c232000-05-16 06:17:36 -050068 * release number plus "betaNN" or "rcN".
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -060069 *
Glenn Randers-Pehrson326320e2000-04-24 07:43:17 -050070 * Binary incompatibility exists only when applications make direct access
71 * to the info_ptr or png_ptr members through png.h, and the compiled
72 * application is loaded with a different version of the library.
73 *
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -060074 * See libpng.txt or libpng.3 for more information. The PNG specification
75 * is available as RFC 2083 <ftp://ftp.uu.net/graphics/png/documents/>
76 * and as a W3C Recommendation <http://www.w3.org/TR/REC.png.html>
77 */
78
79/*
Glenn Randers-Pehrson68ea2432000-04-01 21:10:05 -060080 * COPYRIGHT NOTICE, DISCLAIMER, and LICENSE:
81 *
Glenn Randers-Pehrsond4366722000-06-04 14:29:29 -050082 * If you modify libpng you may insert additional notices immediately following
83 * this sentence.
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -060084 *
Glenn Randers-Pehrson15dac0b2000-07-10 07:48:54 -050085 * libpng version 1.0.8beta2, July 10, 2000, is
Glenn Randers-Pehrsond4366722000-06-04 14:29:29 -050086 * Copyright (c) 2000 Glenn Randers-Pehrson
Glenn Randers-Pehrson3d5a5202000-07-01 15:37:28 -050087 * Distributed according to the same disclaimer and license as libpng-1.0.6
88 * with the following individuals added to the list of Contributing Authors
Glenn Randers-Pehrsond4366722000-06-04 14:29:29 -050089 *
90 * Simon-Pierre Cadieux
91 * Eric S. Raymond
92 * Gilles Vollant
93 *
Glenn Randers-Pehrson3d5a5202000-07-01 15:37:28 -050094 * and with the following additions to the disclaimer:
95 *
96 * There is no warranty against interference with your enjoyment of the
97 * library or against infringement. There is no warranty that our
98 * efforts or the library will fulfill any of your particular purposes
99 * or needs. This library is provided with all faults, and the entire
100 * risk of satisfactory quality, performance, accuracy, and effort is with
101 * the user.
102 *
103 * libpng versions 0.97, January 1998, through 1.0.6, March 20, 2000, are
104 * Copyright (c) 1998, 1999, 2000 Glenn Randers-Pehrson
Glenn Randers-Pehrsond4366722000-06-04 14:29:29 -0500105 * Distributed according to the same disclaimer and license as libpng-0.96,
106 * with the following individuals added to the list of Contributing Authors:
107 *
108 * Tom Lane
109 * Glenn Randers-Pehrson
110 * Willem van Schaik
111 *
112 * libpng versions 0.89, June 1996, through 0.96, May 1997, are
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -0600113 * Copyright (c) 1996, 1997 Andreas Dilger
Glenn Randers-Pehrsond4366722000-06-04 14:29:29 -0500114 * Distributed according to the same disclaimer and license as libpng-0.88,
115 * with the following individuals added to the list of Contributing Authors:
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -0600116 *
117 * John Bowler
118 * Kevin Bracey
119 * Sam Bushell
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -0600120 * Magnus Holmgren
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -0600121 * Greg Roelofs
Glenn Randers-Pehrsond4366722000-06-04 14:29:29 -0500122 * Tom Tanner
123 *
124 * libpng versions 0.5, May 1995, through 0.88, January 1996, are
125 * Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.
126 *
127 * For the purposes of this copyright and license, "Contributing Authors"
128 * is defined as the following set of individuals:
129 *
130 * Andreas Dilger
131 * Dave Martindale
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -0600132 * Guy Eric Schalnat
133 * Paul Schmidt
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -0600134 * Tim Wegner
135 *
136 * The PNG Reference Library is supplied "AS IS". The Contributing Authors
137 * and Group 42, Inc. disclaim all warranties, expressed or implied,
138 * including, without limitation, the warranties of merchantability and of
139 * fitness for any purpose. The Contributing Authors and Group 42, Inc.
140 * assume no liability for direct, indirect, incidental, special, exemplary,
141 * or consequential damages, which may result from the use of the PNG
142 * Reference Library, even if advised of the possibility of such damage.
143 *
144 * Permission is hereby granted to use, copy, modify, and distribute this
145 * source code, or portions hereof, for any purpose, without fee, subject
146 * to the following restrictions:
147 *
148 * 1. The origin of this source code must not be misrepresented.
149 *
150 * 2. Altered versions must be plainly marked as such and must not
151 * be misrepresented as being the original source.
152 *
153 * 3. This Copyright notice may not be removed or altered from any
154 * source or altered source distribution.
155 *
156 * The Contributing Authors and Group 42, Inc. specifically permit, without
157 * fee, and encourage the use of this source code as a component to
158 * supporting the PNG file format in commercial products. If you use this
159 * source code in a product, acknowledgment is not required but would be
160 * appreciated.
161 */
162
163/*
164 * A "png_get_copyright" function is available, for convenient use in "about"
165 * boxes and the like:
166 *
167 * printf("%s",png_get_copyright(NULL));
168 *
169 * Also, the PNG logo (in PNG format, of course) is supplied in the
170 * file "pngnow.png".
171 */
172
173/*
174 * Libpng is OSI Certified Open Source Software. OSI Certified is a
175 * certification mark of the Open Source Initiative.
176 */
177
178/*
179 * The contributing authors would like to thank all those who helped
180 * with testing, bug fixes, and patience. This wouldn't have been
181 * possible without all of you.
182 *
183 * Thanks to Frank J. T. Wojcik for helping with the documentation.
184 */
185
186/*
Glenn Randers-Pehrson87544ac1999-01-13 22:06:39 -0600187 * Y2K compliance in libpng:
188 * =========================
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600189 *
Glenn Randers-Pehrson15dac0b2000-07-10 07:48:54 -0500190 * July 10, 2000
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600191 *
Glenn Randers-Pehrson87544ac1999-01-13 22:06:39 -0600192 * Since the PNG Development group is an ad-hoc body, we can't make
193 * an official declaration.
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600194 *
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500195 * This is your unofficial assurance that libpng from version 0.71 and
Glenn Randers-Pehrson15dac0b2000-07-10 07:48:54 -0500196 * upward through 1.0.8beta2 are Y2K compliant. It is my belief that earlier
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500197 * versions were also Y2K compliant.
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600198 *
Glenn Randers-Pehrson87544ac1999-01-13 22:06:39 -0600199 * Libpng only has three year fields. One is a 2-byte unsigned integer
200 * that will hold years up to 65535. The other two hold the date in text
201 * format, and will hold years up to 9999.
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600202 *
Glenn Randers-Pehrson87544ac1999-01-13 22:06:39 -0600203 * The integer is
204 * "png_uint_16 year" in png_time_struct.
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600205 *
Glenn Randers-Pehrson87544ac1999-01-13 22:06:39 -0600206 * The strings are
207 * "png_charp time_buffer" in png_struct and
208 * "near_time_buffer", which is a local character string in png.c.
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600209 *
Glenn Randers-Pehrson87544ac1999-01-13 22:06:39 -0600210 * There are seven time-related functions:
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600211 * png.c: png_convert_to_rfc_1123() in png.c
Glenn Randers-Pehrson87544ac1999-01-13 22:06:39 -0600212 * (formerly png_convert_to_rfc_1152() in error)
213 * png_convert_from_struct_tm() in pngwrite.c, called in pngwrite.c
214 * png_convert_from_time_t() in pngwrite.c
215 * png_get_tIME() in pngget.c
216 * png_handle_tIME() in pngrutil.c, called in pngread.c
217 * png_set_tIME() in pngset.c
218 * png_write_tIME() in pngwutil.c, called in pngwrite.c
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600219 *
220 * All handle dates properly in a Y2K environment. The
Glenn Randers-Pehrson87544ac1999-01-13 22:06:39 -0600221 * png_convert_from_time_t() function calls gmtime() to convert from system
222 * clock time, which returns (year - 1900), which we properly convert to
223 * the full 4-digit year. There is a possibility that applications using
224 * libpng are not passing 4-digit years into the png_convert_to_rfc_1123()
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500225 * function, or that they are incorrectly passing only a 2-digit year
226 * instead of "year - 1900" into the png_convert_from_struct_tm() function,
227 * but this is not under our control. The libpng documentation has always
228 * stated that it works with 4-digit years, and the APIs have been
229 * documented as such.
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600230 *
Glenn Randers-Pehrson87544ac1999-01-13 22:06:39 -0600231 * The tIME chunk itself is also Y2K compliant. It uses a 2-byte unsigned
232 * integer to hold the year, and can hold years as large as 65535.
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600233 *
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500234 * zlib, upon which libpng depends, is also Y2K compliant. It contains
235 * no date-related code.
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600236 *
Glenn Randers-Pehrson87544ac1999-01-13 22:06:39 -0600237 * Glenn Randers-Pehrson
238 * libpng maintainer
239 * PNG Development Group
Glenn Randers-Pehrsonbcfd15d1999-10-01 14:22:25 -0500240 */
241
Glenn Randers-Pehrson13944802000-06-24 07:42:42 -0500242#ifndef PNG_H
243#define PNG_H
Guy Schalnat0d580581995-07-20 02:43:20 -0500244
245/* This is not the place to learn how to use libpng. The file libpng.txt
Andreas Dilger47a0c421997-05-16 02:46:07 -0500246 * describes how to use libpng, and the file example.c summarizes it
247 * with some code on which to build. This file is useful for looking
248 * at the actual function definitions and structure components.
249 */
Guy Schalnat0d580581995-07-20 02:43:20 -0500250
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -0500251/* Version information for png.h - this should match the version in png.c */
Glenn Randers-Pehrson15dac0b2000-07-10 07:48:54 -0500252#define PNG_LIBPNG_VER_STRING "1.0.8beta2"
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -0500253
254#define PNG_LIBPNG_VER_SONUM 2
255
256/* These should match the first 3 components of PNG_LIBPNG_VER_STRING: */
257#define PNG_LIBPNG_VER_MAJOR 1
258#define PNG_LIBPNG_VER_MINOR 0
Glenn Randers-Pehrson316f97a2000-07-08 13:19:41 -0500259#define PNG_LIBPNG_VER_RELEASE 8
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -0500260/* This should match the numeric part of the final component of
261 * PNG_LIBPNG_VER_STRING, omitting any leading zero: */
Glenn Randers-Pehrson15dac0b2000-07-10 07:48:54 -0500262#define PNG_LIBPNG_VER_BUILD 2
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -0500263
264/* Careful here. At one time, Guy wanted to use 082, but that would be octal.
265 * We must not include leading zeros.
266 * Versions 0.7 through 1.0.0 were in the range 0 to 100 here (only
267 * version 1.0.0 was mis-numbered 100 instead of 10000). From
268 * version 1.0.1 it's xxyyzz, where x=major, y=minor, z=release */
Glenn Randers-Pehrson316f97a2000-07-08 13:19:41 -0500269#define PNG_LIBPNG_VER 10008 /* 1.0.8 */
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -0500270
271/* Note to maintainer: update this number in scripts/pngdef.pas as well */
272
273#ifndef PNG_VERSION_INFO_ONLY
274
Guy Schalnat0d580581995-07-20 02:43:20 -0500275/* include the compression library's header */
276#include "zlib.h"
277
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500278/* include all user configurable info */
279#include "pngconf.h"
Guy Schalnat0d580581995-07-20 02:43:20 -0500280
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600281/* macros for optional assembler routines */
282#if defined(PNG_INTERNAL) && defined(PNG_ASSEMBLER_CODE_SUPPORTED)
283# include "pngasmrd.h"
284#endif
285
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500286/* Inhibit C++ name-mangling for libpng functions but not for system calls. */
287#ifdef __cplusplus
288extern "C" {
289#endif /* __cplusplus */
290
Andreas Dilger47a0c421997-05-16 02:46:07 -0500291/* This file is arranged in several sections. The first section contains
292 * structure and type definitions. The second section contains the external
293 * library functions, while the third has the internal library functions,
294 * which applications aren't expected to use directly.
295 */
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500296
Andreas Dilger47a0c421997-05-16 02:46:07 -0500297/* variables declared in png.c - only it needs to define PNG_NO_EXTERN */
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600298#if !defined(PNG_NO_EXTERN) || defined(PNG_ALWAYS_EXTERN)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500299/* Version information for C files, stored in png.c. This had better match
300 * the version above.
301 */
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -0600302#ifdef PNG_USE_GLOBAL_ARRAYS
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500303PNG_EXPORT_VAR (char) png_libpng_ver[12]; /* need room for 99.99.99-patch-aa0*/
304 /* Note to maintainer: increase to 18 at the next opportunity */
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600305#else
306#define png_libpng_ver png_get_header_ver(NULL)
307#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500308
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -0600309#ifdef PNG_USE_GLOBAL_ARRAYS
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600310/* This was removed in version 1.0.5c */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500311/* Structures to facilitate easy interlacing. See png.c for more details */
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -0600312PNG_EXPORT_VAR (int FARDATA) png_pass_start[7];
313PNG_EXPORT_VAR (int FARDATA) png_pass_inc[7];
314PNG_EXPORT_VAR (int FARDATA) png_pass_ystart[7];
315PNG_EXPORT_VAR (int FARDATA) png_pass_yinc[7];
316PNG_EXPORT_VAR (int FARDATA) png_pass_mask[7];
317PNG_EXPORT_VAR (int FARDATA) png_pass_dsp_mask[7];
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600318#ifdef PNG_HAVE_ASSEMBLER_COMBINE_ROW
319extern int FARDATA png_pass_width[7]; /* now used in pngvcrd.c, pnggccrd.c */
320#endif
321/* This isn't currently used. If you need it, see png.c for more details.
322extern int FARDATA png_pass_height[7];
Andreas Dilger47a0c421997-05-16 02:46:07 -0500323*/
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600324#endif
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -0600325
Andreas Dilger47a0c421997-05-16 02:46:07 -0500326#endif /* PNG_NO_EXTERN */
327
328/* Three color definitions. The order of the red, green, and blue, (and the
329 * exact size) is not important, although the size of the fields need to
330 * be png_byte or png_uint_16 (as defined below).
331 */
Guy Schalnat0d580581995-07-20 02:43:20 -0500332typedef struct png_color_struct
333{
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600334 png_byte red;
Guy Schalnat0d580581995-07-20 02:43:20 -0500335 png_byte green;
336 png_byte blue;
337} png_color;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500338typedef png_color FAR * png_colorp;
339typedef png_color FAR * FAR * png_colorpp;
Guy Schalnat0d580581995-07-20 02:43:20 -0500340
341typedef struct png_color_16_struct
342{
Andreas Dilger47a0c421997-05-16 02:46:07 -0500343 png_byte index; /* used for palette files */
344 png_uint_16 red; /* for use in red green blue files */
Guy Schalnat0d580581995-07-20 02:43:20 -0500345 png_uint_16 green;
346 png_uint_16 blue;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500347 png_uint_16 gray; /* for use in grayscale files */
Guy Schalnat0d580581995-07-20 02:43:20 -0500348} png_color_16;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500349typedef png_color_16 FAR * png_color_16p;
350typedef png_color_16 FAR * FAR * png_color_16pp;
Guy Schalnat0d580581995-07-20 02:43:20 -0500351
352typedef struct png_color_8_struct
353{
Andreas Dilger47a0c421997-05-16 02:46:07 -0500354 png_byte red; /* for use in red green blue files */
Guy Schalnat0d580581995-07-20 02:43:20 -0500355 png_byte green;
356 png_byte blue;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500357 png_byte gray; /* for use in grayscale files */
Guy Schalnat0d580581995-07-20 02:43:20 -0500358 png_byte alpha; /* for alpha channel files */
359} png_color_8;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500360typedef png_color_8 FAR * png_color_8p;
361typedef png_color_8 FAR * FAR * png_color_8pp;
Guy Schalnat0d580581995-07-20 02:43:20 -0500362
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600363/*
364 * The following two structures are used for the in-core representation
365 * of sPLT chunks.
366 */
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -0600367typedef struct png_sPLT_entry_struct
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600368{
369 png_uint_16 red;
370 png_uint_16 green;
371 png_uint_16 blue;
372 png_uint_16 alpha;
373 png_uint_16 frequency;
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -0600374} png_sPLT_entry;
375typedef png_sPLT_entry FAR * png_sPLT_entryp;
376typedef png_sPLT_entry FAR * FAR * png_sPLT_entrypp;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600377
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -0500378/* When the depth of the sPLT palette is 8 bits, the color and alpha samples
379 * occupy the LSB of their respective members, and the MSB of each member
380 * is zero-filled. The frequency member always occupies the full 16 bits.
381 */
382
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -0600383typedef struct png_sPLT_struct
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600384{
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -0500385 png_charp name; /* palette name */
386 png_byte depth; /* depth of palette samples */
387 png_sPLT_entryp entries; /* palette entries */
388 png_int_32 nentries; /* number of palette entries */
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -0600389} png_sPLT_t;
390typedef png_sPLT_t FAR * png_sPLT_tp;
391typedef png_sPLT_t FAR * FAR * png_sPLT_tpp;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600392
393#ifdef PNG_TEXT_SUPPORTED
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600394/* png_text holds the contents of a text/ztxt/itxt chunk in a PNG file,
395 * and whether that contents is compressed or not. The "key" field
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -0500396 * points to a regular zero-terminated C string. The "text", "lang", and
397 * "lang_key" fields can be regular C strings, empty strings, or NULL pointers.
398 * However, the * structure returned by png_get_text() will always contain
399 * regular zero-terminated C strings (possibly empty), never NULL pointers,
400 * so they can be safely used in printf() and other string-handling functions.
401 */
Guy Schalnat0d580581995-07-20 02:43:20 -0500402typedef struct png_text_struct
403{
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -0500404 int compression; /* compression value:
405 -1: tEXt, none
406 0: zTXt, deflate
407 1: iTXt, none
408 2: iTXt, deflate */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500409 png_charp key; /* keyword, 1-79 character description of "text" */
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -0500410 png_charp text; /* comment, may be an empty string (ie "")
411 or a NULL pointer */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600412 png_size_t text_length; /* length of the text string */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500413#ifdef PNG_iTXt_SUPPORTED
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600414 png_size_t itxt_length; /* length of the itxt string */
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -0500415 png_charp lang; /* language code, 0-79 characters
416 or a NULL pointer */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600417 png_charp lang_key; /* keyword translated UTF-8 string, 0 or more
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -0500418 chars or a NULL pointer */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500419#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500420} png_text;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500421typedef png_text FAR * png_textp;
422typedef png_text FAR * FAR * png_textpp;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600423#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -0500424
425/* Supported compression types for text in PNG files (tEXt, and zTXt).
426 * The values of the PNG_TEXT_COMPRESSION_ defines should NOT be changed. */
427#define PNG_TEXT_COMPRESSION_NONE_WR -3
428#define PNG_TEXT_COMPRESSION_zTXt_WR -2
429#define PNG_TEXT_COMPRESSION_NONE -1
430#define PNG_TEXT_COMPRESSION_zTXt 0
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600431#define PNG_ITXT_COMPRESSION_NONE 1
432#define PNG_ITXT_COMPRESSION_zTXt 2
433#define PNG_TEXT_COMPRESSION_LAST 3 /* Not a valid value */
Guy Schalnat0d580581995-07-20 02:43:20 -0500434
435/* png_time is a way to hold the time in an machine independent way.
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600436 * Two conversions are provided, both from time_t and struct tm. There
437 * is no portable way to convert to either of these structures, as far
438 * as I know. If you know of a portable way, send it to me. As a side
439 * note - PNG is Year 2000 compliant!
440 */
Guy Schalnat0d580581995-07-20 02:43:20 -0500441typedef struct png_time_struct
442{
443 png_uint_16 year; /* full year, as in, 1995 */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500444 png_byte month; /* month of year, 1 - 12 */
445 png_byte day; /* day of month, 1 - 31 */
446 png_byte hour; /* hour of day, 0 - 23 */
447 png_byte minute; /* minute of hour, 0 - 59 */
448 png_byte second; /* second of minute, 0 - 60 (for leap seconds) */
Guy Schalnat0d580581995-07-20 02:43:20 -0500449} png_time;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500450typedef png_time FAR * png_timep;
451typedef png_time FAR * FAR * png_timepp;
Guy Schalnat0d580581995-07-20 02:43:20 -0500452
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600453#if defined(PNG_UNKNOWN_CHUNKS_SUPPORTED)
454/* png_unknown_chunk is a structure to hold queued chunks for which there is
455 * no specific support. The idea is that we can use this to queue
456 * up private chunks for output even though the library doesn't actually
457 * know about their semantics.
458 */
459typedef struct png_unknown_chunk_t
460{
461 png_byte name[5];
462 png_byte *data;
463 png_size_t size;
464
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600465 /* libpng-using applications should NOT directly modify this byte. */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600466 png_byte location; /* mode of operation at read time */
467}
468png_unknown_chunk;
469typedef png_unknown_chunk FAR * png_unknown_chunkp;
470typedef png_unknown_chunk FAR * FAR * png_unknown_chunkpp;
471#endif
472
Andreas Dilger47a0c421997-05-16 02:46:07 -0500473/* png_info is a structure that holds the information in a PNG file so
474 * that the application can find out the characteristics of the image.
475 * If you are reading the file, this structure will tell you what is
476 * in the PNG file. If you are writing the file, fill in the information
477 * you want to put into the PNG file, then call png_write_info().
478 * The names chosen should be very close to the PNG specification, so
479 * consult that document for information about the meaning of each field.
480 *
481 * With libpng < 0.95, it was only possible to directly set and read the
482 * the values in the png_info_struct, which meant that the contents and
483 * order of the values had to remain fixed. With libpng 0.95 and later,
Glenn Randers-Pehrson8686fff1998-05-21 09:27:50 -0500484 * however, there are now functions that abstract the contents of
Andreas Dilger47a0c421997-05-16 02:46:07 -0500485 * png_info_struct from the application, so this makes it easier to use
486 * libpng with dynamic libraries, and even makes it possible to use
487 * libraries that don't have all of the libpng ancillary chunk-handing
488 * functionality.
489 *
490 * In any case, the order of the parameters in png_info_struct should NOT
491 * be changed for as long as possible to keep compatibility with applications
492 * that use the old direct-access method with png_info_struct.
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600493 *
494 * The following members may have allocated storage attached that should be
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600495 * cleaned up before the structure is discarded: palette, trans, text,
496 * pcal_purpose, pcal_units, pcal_params, hist, iccp_name, iccp_profile,
Glenn Randers-Pehrson38e6e772000-04-09 19:06:13 -0500497 * splt_palettes, scal_unit, row_pointers, and unknowns. By default, these are
498 * automatically freed when the info structure is deallocated, if they were
499 * allocated internally by libpng. This behavior can be changed by means
500 * of the png_data_freer() function.
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600501 *
502 * More allocation details: all the chunk-reading functions that change these
Glenn Randers-Pehrson38e6e772000-04-09 19:06:13 -0500503 * members go through the corresponding png_set_* functions. A function to
504 * clear these members is available: see png_free_data(). Some of the
505 * png_set_* functions do not depend on being able to point info structure
506 * members to any of the storage they are passed (they make their own copies),
507 * EXCEPT that the png_set_text functions use the same storage passed to them
508 * in the text_ptr or itxt_ptr structure argument, and the png_set_tRNS,
509 * png_set_PLTE, png_set_hIST, png_set_iCCP, png_set_rows, png_set_sPLT,
510 * and png_set_unknowns do not make their own copies.
Andreas Dilger47a0c421997-05-16 02:46:07 -0500511 */
Guy Schalnat0d580581995-07-20 02:43:20 -0500512typedef struct png_info_struct
513{
Andreas Dilger47a0c421997-05-16 02:46:07 -0500514 /* the following are necessary for every PNG file */
515 png_uint_32 width; /* width of image in pixels (from IHDR) */
516 png_uint_32 height; /* height of image in pixels (from IHDR) */
517 png_uint_32 valid; /* valid chunk data (see PNG_INFO_ below) */
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600518 png_uint_32 rowbytes; /* bytes needed to hold an untransformed row */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500519 png_colorp palette; /* array of color values (valid & PNG_INFO_PLTE) */
520 png_uint_16 num_palette; /* number of color entries in "palette" (PLTE) */
521 png_uint_16 num_trans; /* number of transparent palette color (tRNS) */
522 png_byte bit_depth; /* 1, 2, 4, 8, or 16 bits/channel (from IHDR) */
523 png_byte color_type; /* see PNG_COLOR_TYPE_ below (from IHDR) */
524 png_byte compression_type; /* must be PNG_COMPRESSION_TYPE_BASE (IHDR) */
525 png_byte filter_type; /* must be PNG_FILTER_TYPE_BASE (from IHDR) */
526 png_byte interlace_type; /* One of PNG_INTERLACE_NONE, PNG_INTERLACE_ADAM7 */
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500527
Andreas Dilger47a0c421997-05-16 02:46:07 -0500528 /* The following is informational only on read, and not used on writes. */
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600529 png_byte channels; /* number of data channels per pixel (1, 2, 3, 4)*/
Andreas Dilger47a0c421997-05-16 02:46:07 -0500530 png_byte pixel_depth; /* number of bits per pixel */
531 png_byte spare_byte; /* to align the data, and for future use */
532 png_byte signature[8]; /* magic bytes read by libpng from start of file */
533
534 /* The rest of the data is optional. If you are reading, check the
535 * valid field to see if the information in these are valid. If you
536 * are writing, set the valid field to those chunks you want written,
537 * and initialize the appropriate fields below.
538 */
539
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -0500540#if defined(PNG_gAMA_SUPPORTED) && defined(PNG_FLOATING_POINT_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500541 /* The gAMA chunk describes the gamma characteristics of the system
542 * on which the image was created, normally in the range [1.0, 2.5].
543 * Data is valid if (valid & PNG_INFO_gAMA) is non-zero.
544 */
545 float gamma; /* gamma value of image, if (valid & PNG_INFO_gAMA) */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600546#endif
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600547
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600548#if defined(PNG_sRGB_SUPPORTED)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600549 /* GR-P, 0.96a */
550 /* Data valid if (valid & PNG_INFO_sRGB) non-zero. */
551 png_byte srgb_intent; /* sRGB rendering intent [0, 1, 2, or 3] */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600552#endif
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600553
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600554#if defined(PNG_TEXT_SUPPORTED)
555 /* The tEXt, and zTXt chunks contain human-readable textual data in
556 * uncompressed, compressed, and optionally compressed forms, respectively.
557 * The data in "text" is an array of pointers to uncompressed,
558 * null-terminated C strings. Each chunk has a keyword that describes the
559 * textual data contained in that chunk. Keywords are not required to be
560 * unique, and the text string may be empty. Any number of text chunks may
561 * be in an image.
Andreas Dilger47a0c421997-05-16 02:46:07 -0500562 */
563 int num_text; /* number of comments read/to write */
564 int max_text; /* current size of text array */
565 png_textp text; /* array of comments read/to write */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600566#endif /* PNG_TEXT_SUPPORTED */
567
568#if defined(PNG_tIME_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500569 /* The tIME chunk holds the last time the displayed image data was
570 * modified. See the png_time struct for the contents of this struct.
571 */
572 png_time mod_time;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600573#endif
574
575#if defined(PNG_sBIT_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500576 /* The sBIT chunk specifies the number of significant high-order bits
577 * in the pixel data. Values are in the range [1, bit_depth], and are
578 * only specified for the channels in the pixel data. The contents of
579 * the low-order bits is not specified. Data is valid if
580 * (valid & PNG_INFO_sBIT) is non-zero.
581 */
582 png_color_8 sig_bit; /* significant bits in color channels */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600583#endif
584
585#if defined(PNG_tRNS_SUPPORTED) || defined(PNG_READ_EXPAND_SUPPORTED) || \
586defined(PNG_READ_BACKGROUND_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500587 /* The tRNS chunk supplies transparency data for paletted images and
588 * other image types that don't need a full alpha channel. There are
589 * "num_trans" transparency values for a paletted image, stored in the
590 * same order as the palette colors, starting from index 0. Values
591 * for the data are in the range [0, 255], ranging from fully transparent
592 * to fully opaque, respectively. For non-paletted images, there is a
Glenn Randers-Pehrson8686fff1998-05-21 09:27:50 -0500593 * single color specified that should be treated as fully transparent.
Andreas Dilger47a0c421997-05-16 02:46:07 -0500594 * Data is valid if (valid & PNG_INFO_tRNS) is non-zero.
595 */
596 png_bytep trans; /* transparent values for paletted image */
597 png_color_16 trans_values; /* transparent color for non-palette image */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600598#endif
599
600#if defined(PNG_bKGD_SUPPORTED) || defined(PNG_READ_BACKGROUND_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500601 /* The bKGD chunk gives the suggested image background color if the
602 * display program does not have its own background color and the image
603 * is needs to composited onto a background before display. The colors
604 * in "background" are normally in the same color space/depth as the
605 * pixel data. Data is valid if (valid & PNG_INFO_bKGD) is non-zero.
606 */
607 png_color_16 background;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600608#endif
609
610#if defined(PNG_oFFs_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500611 /* The oFFs chunk gives the offset in "offset_unit_type" units rightwards
612 * and downwards from the top-left corner of the display, page, or other
613 * application-specific co-ordinate space. See the PNG_OFFSET_ defines
614 * below for the unit types. Valid if (valid & PNG_INFO_oFFs) non-zero.
615 */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600616 png_int_32 x_offset; /* x offset on page */
617 png_int_32 y_offset; /* y offset on page */
Guy Schalnate5a37791996-06-05 15:50:50 -0500618 png_byte offset_unit_type; /* offset units type */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600619#endif
620
621#if defined(PNG_pHYs_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500622 /* The pHYs chunk gives the physical pixel density of the image for
623 * display or printing in "phys_unit_type" units (see PNG_RESOLUTION_
624 * defines below). Data is valid if (valid & PNG_INFO_pHYs) is non-zero.
625 */
626 png_uint_32 x_pixels_per_unit; /* horizontal pixel density */
627 png_uint_32 y_pixels_per_unit; /* vertical pixel density */
628 png_byte phys_unit_type; /* resolution type (see PNG_RESOLUTION_ below) */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600629#endif
630
631#if defined(PNG_hIST_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500632 /* The hIST chunk contains the relative frequency or importance of the
633 * various palette entries, so that a viewer can intelligently select a
634 * reduced-color palette, if required. Data is an array of "num_palette"
635 * values in the range [0,65535]. Data valid if (valid & PNG_INFO_hIST)
636 * is non-zero.
637 */
638 png_uint_16p hist;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600639#endif
640
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -0500641#ifdef PNG_cHRM_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -0500642 /* The cHRM chunk describes the CIE color characteristics of the monitor
643 * on which the PNG was created. This data allows the viewer to do gamut
644 * mapping of the input image to ensure that the viewer sees the same
645 * colors in the image as the creator. Values are in the range
646 * [0.0, 0.8]. Data valid if (valid & PNG_INFO_cHRM) non-zero.
647 */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600648#ifdef PNG_FLOATING_POINT_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -0500649 float x_white;
Guy Schalnat0d580581995-07-20 02:43:20 -0500650 float y_white;
651 float x_red;
652 float y_red;
653 float x_green;
654 float y_green;
655 float x_blue;
656 float y_blue;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600657#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600658#endif
659
660#if defined(PNG_pCAL_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500661 /* The pCAL chunk describes a transformation between the stored pixel
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600662 * values and original physical data values used to create the image.
Andreas Dilger47a0c421997-05-16 02:46:07 -0500663 * The integer range [0, 2^bit_depth - 1] maps to the floating-point
664 * range given by [pcal_X0, pcal_X1], and are further transformed by a
665 * (possibly non-linear) transformation function given by "pcal_type"
666 * and "pcal_params" into "pcal_units". Please see the PNG_EQUATION_
667 * defines below, and the PNG-Group's Scientific Visualization extension
668 * chunks document png-scivis-19970203 for a complete description of the
669 * transformations and how they should be implemented, as well as the
670 * png-extensions document for a description of the ASCII parameter
671 * strings. Data values are valid if (valid & PNG_INFO_pCAL) non-zero.
672 */
673 png_charp pcal_purpose; /* pCAL chunk description string */
674 png_int_32 pcal_X0; /* minimum value */
675 png_int_32 pcal_X1; /* maximum value */
676 png_charp pcal_units; /* Latin-1 string giving physical units */
677 png_charpp pcal_params; /* ASCII strings containing parameter values */
678 png_byte pcal_type; /* equation type (see PNG_EQUATION_ below) */
679 png_byte pcal_nparams; /* number of parameters given in pcal_params */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600680#endif
681
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -0500682#ifdef PNG_FREE_ME_SUPPORTED
683 png_uint_32 free_me; /* flags items libpng is responsible for freeing */
684#endif
685
686#if defined(PNG_UNKNOWN_CHUNKS_SUPPORTED)
687 /* storage for unknown chunks that the library doesn't recognize. */
688 png_unknown_chunkp unknown_chunks;
689 png_size_t unknown_chunks_num;
690#endif
691
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600692#if defined(PNG_iCCP_SUPPORTED)
693 /* iCCP chunk data. */
694 png_charp iccp_name; /* profile name */
695 png_charp iccp_profile; /* International Color Consortium profile data */
696 png_uint_32 iccp_proflen; /* ICC profile data length */
697 png_byte iccp_compression; /* Always zero */
698#endif
699
700#if defined(PNG_sPLT_SUPPORTED)
701 /* data on sPLT chunks (there may be more than one). */
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -0600702 png_sPLT_tp splt_palettes;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600703 png_uint_32 splt_palettes_num;
704#endif
705
706#if defined(PNG_sCAL_SUPPORTED)
707 /* The sCAL chunk describes the actual physical dimensions of the
708 * subject matter of the graphic. The chunk contains a unit specification
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600709 * a byte value, and two ASCII strings representing floating-point
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600710 * values. The values are width and height corresponsing to one pixel
711 * in the image. This external representation is converted to double
712 * here. Data values are valid if (valid & PNG_INFO_sCAL) is non-zero.
713 */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600714 png_byte scal_unit; /* unit of physical scale */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600715#ifdef PNG_FLOATING_POINT_SUPPORTED
716 double scal_pixel_width; /* width of one pixel */
717 double scal_pixel_height; /* height of one pixel */
Glenn Randers-Pehrson68ea2432000-04-01 21:10:05 -0600718#endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600719#ifdef PNG_FIXED_POINT_SUPPORTED
720 png_charp scal_s_width; /* string containing height */
721 png_charp scal_s_height; /* string containing width */
722#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600723#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600724
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600725#if defined(PNG_INFO_IMAGE_SUPPORTED)
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600726 /* Memory has been allocated if (valid & PNG_ALLOCATED_INFO_ROWS) non-zero */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600727 /* Data valid if (valid & PNG_INFO_IDAT) non-zero */
728 png_bytepp row_pointers; /* the image bits */
729#endif
Glenn Randers-Pehrson228bd392000-04-23 23:14:02 -0500730
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -0500731#if defined(PNG_FIXED_POINT_SUPPORTED) && defined(PNG_gAMA_SUPPORTED)
Glenn Randers-Pehrson228bd392000-04-23 23:14:02 -0500732 png_fixed_point int_gamma; /* gamma of image, if (valid & PNG_INFO_gAMA) */
733#endif
734
735#if defined(PNG_cHRM_SUPPORTED) && defined(PNG_FIXED_POINT_SUPPORTED)
736 png_fixed_point int_x_white;
737 png_fixed_point int_y_white;
738 png_fixed_point int_x_red;
739 png_fixed_point int_y_red;
740 png_fixed_point int_x_green;
741 png_fixed_point int_y_green;
742 png_fixed_point int_x_blue;
743 png_fixed_point int_y_blue;
744#endif
745
Guy Schalnat0d580581995-07-20 02:43:20 -0500746} png_info;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600747
Andreas Dilger47a0c421997-05-16 02:46:07 -0500748typedef png_info FAR * png_infop;
749typedef png_info FAR * FAR * png_infopp;
Guy Schalnat0d580581995-07-20 02:43:20 -0500750
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500751/* Maximum positive integer used in PNG is (2^31)-1 */
752#define PNG_MAX_UINT ((png_uint_32)0x7fffffffL)
753
Andreas Dilger47a0c421997-05-16 02:46:07 -0500754/* These describe the color_type field in png_info. */
Guy Schalnat0d580581995-07-20 02:43:20 -0500755/* color type masks */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500756#define PNG_COLOR_MASK_PALETTE 1
757#define PNG_COLOR_MASK_COLOR 2
758#define PNG_COLOR_MASK_ALPHA 4
Guy Schalnat0d580581995-07-20 02:43:20 -0500759
760/* color types. Note that not all combinations are legal */
Guy Schalnate5a37791996-06-05 15:50:50 -0500761#define PNG_COLOR_TYPE_GRAY 0
Andreas Dilger47a0c421997-05-16 02:46:07 -0500762#define PNG_COLOR_TYPE_PALETTE (PNG_COLOR_MASK_COLOR | PNG_COLOR_MASK_PALETTE)
763#define PNG_COLOR_TYPE_RGB (PNG_COLOR_MASK_COLOR)
764#define PNG_COLOR_TYPE_RGB_ALPHA (PNG_COLOR_MASK_COLOR | PNG_COLOR_MASK_ALPHA)
Guy Schalnat0d580581995-07-20 02:43:20 -0500765#define PNG_COLOR_TYPE_GRAY_ALPHA (PNG_COLOR_MASK_ALPHA)
766
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500767/* This is for compression type. PNG 1.0-1.2 only define the single type. */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500768#define PNG_COMPRESSION_TYPE_BASE 0 /* Deflate method 8, 32K window */
769#define PNG_COMPRESSION_TYPE_DEFAULT PNG_COMPRESSION_TYPE_BASE
770
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500771/* This is for filter type. PNG 1.0-1.2 only define the single type. */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500772#define PNG_FILTER_TYPE_BASE 0 /* Single row per-byte filtering */
773#define PNG_FILTER_TYPE_DEFAULT PNG_FILTER_TYPE_BASE
774
775/* These are for the interlacing type. These values should NOT be changed. */
776#define PNG_INTERLACE_NONE 0 /* Non-interlaced image */
777#define PNG_INTERLACE_ADAM7 1 /* Adam7 interlacing */
778#define PNG_INTERLACE_LAST 2 /* Not a valid value */
779
780/* These are for the oFFs chunk. These values should NOT be changed. */
781#define PNG_OFFSET_PIXEL 0 /* Offset in pixels */
782#define PNG_OFFSET_MICROMETER 1 /* Offset in micrometers (1/10^6 meter) */
783#define PNG_OFFSET_LAST 2 /* Not a valid value */
784
785/* These are for the pCAL chunk. These values should NOT be changed. */
786#define PNG_EQUATION_LINEAR 0 /* Linear transformation */
787#define PNG_EQUATION_BASE_E 1 /* Exponential base e transform */
788#define PNG_EQUATION_ARBITRARY 2 /* Arbitrary base exponential transform */
789#define PNG_EQUATION_HYPERBOLIC 3 /* Hyperbolic sine transformation */
790#define PNG_EQUATION_LAST 4 /* Not a valid value */
791
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600792/* These are for the sCAL chunk. These values should NOT be changed. */
793#define PNG_SCALE_UNKNOWN 0 /* unknown unit (image scale) */
794#define PNG_SCALE_METER 1 /* meters per pixel */
795#define PNG_SCALE_RADIAN 2 /* radians per pixel */
796#define PNG_SCALE_LAST 3 /* Not a valid value */
797
Andreas Dilger47a0c421997-05-16 02:46:07 -0500798/* These are for the pHYs chunk. These values should NOT be changed. */
799#define PNG_RESOLUTION_UNKNOWN 0 /* pixels/unknown unit (aspect ratio) */
800#define PNG_RESOLUTION_METER 1 /* pixels/meter */
801#define PNG_RESOLUTION_LAST 2 /* Not a valid value */
802
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600803/* These are for the sRGB chunk. These values should NOT be changed. */
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600804#define PNG_sRGB_INTENT_PERCEPTUAL 0
805#define PNG_sRGB_INTENT_RELATIVE 1
806#define PNG_sRGB_INTENT_SATURATION 2
807#define PNG_sRGB_INTENT_ABSOLUTE 3
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600808#define PNG_sRGB_INTENT_LAST 4 /* Not a valid value */
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -0600809
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600810/* This is for text chunks */
811#define PNG_KEYWORD_MAX_LENGTH 79
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -0600812
813
Andreas Dilger47a0c421997-05-16 02:46:07 -0500814/* These determine if an ancillary chunk's data has been successfully read
815 * from the PNG header, or if the application has filled in the corresponding
816 * data in the info_struct to be written into the output file. The values
817 * of the PNG_INFO_<chunk> defines should NOT be changed.
818 */
Guy Schalnat0d580581995-07-20 02:43:20 -0500819#define PNG_INFO_gAMA 0x0001
820#define PNG_INFO_sBIT 0x0002
821#define PNG_INFO_cHRM 0x0004
822#define PNG_INFO_PLTE 0x0008
823#define PNG_INFO_tRNS 0x0010
824#define PNG_INFO_bKGD 0x0020
825#define PNG_INFO_hIST 0x0040
826#define PNG_INFO_pHYs 0x0080
827#define PNG_INFO_oFFs 0x0100
828#define PNG_INFO_tIME 0x0200
Andreas Dilger47a0c421997-05-16 02:46:07 -0500829#define PNG_INFO_pCAL 0x0400
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600830#define PNG_INFO_sRGB 0x0800 /* GR-P, 0.96a */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600831#define PNG_INFO_iCCP 0x1000 /* ESR, 1.0.6 */
832#define PNG_INFO_sPLT 0x2000 /* ESR, 1.0.6 */
833#define PNG_INFO_sCAL 0x4000 /* ESR, 1.0.6 */
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600834#define PNG_INFO_IDAT 0x8000L /* ESR, 1.0.6 */
Guy Schalnat0d580581995-07-20 02:43:20 -0500835
Andreas Dilger47a0c421997-05-16 02:46:07 -0500836/* This is used for the transformation routines, as some of them
837 * change these values for the row. It also should enable using
838 * the routines for other purposes.
839 */
Guy Schalnat0d580581995-07-20 02:43:20 -0500840typedef struct png_row_info_struct
841{
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600842 png_uint_32 width; /* width of row */
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600843 png_uint_32 rowbytes; /* number of bytes in row */
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600844 png_byte color_type; /* color type of row */
845 png_byte bit_depth; /* bit depth of row */
846 png_byte channels; /* number of channels (1, 2, 3, or 4) */
847 png_byte pixel_depth; /* bits per pixel (depth * channels) */
Guy Schalnat0d580581995-07-20 02:43:20 -0500848} png_row_info;
849
Andreas Dilger47a0c421997-05-16 02:46:07 -0500850typedef png_row_info FAR * png_row_infop;
851typedef png_row_info FAR * FAR * png_row_infopp;
Guy Schalnat0f716451995-11-28 11:22:13 -0600852
Glenn Randers-Pehrson8686fff1998-05-21 09:27:50 -0500853/* These are the function types for the I/O functions and for the functions
854 * that allow the user to override the default I/O functions with his or her
855 * own. The png_error_ptr type should match that of user-supplied warning
856 * and error functions, while the png_rw_ptr type should match that of the
857 * user read/write data functions.
Guy Schalnat0f716451995-11-28 11:22:13 -0600858 */
Guy Schalnat6d764711995-12-19 03:22:19 -0600859typedef struct png_struct_def png_struct;
860typedef png_struct FAR * png_structp;
Guy Schalnat0f716451995-11-28 11:22:13 -0600861
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500862typedef void (PNGAPI *png_error_ptr) PNGARG((png_structp, png_const_charp));
863typedef void (PNGAPI *png_rw_ptr) PNGARG((png_structp, png_bytep, png_size_t));
864typedef void (PNGAPI *png_flush_ptr) PNGARG((png_structp));
865typedef void (PNGAPI *png_read_status_ptr) PNGARG((png_structp, png_uint_32,
866 int));
867typedef void (PNGAPI *png_write_status_ptr) PNGARG((png_structp, png_uint_32,
868 int));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600869
Guy Schalnat69b14481996-01-10 02:56:49 -0600870#ifdef PNG_PROGRESSIVE_READ_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500871typedef void (PNGAPI *png_progressive_info_ptr) PNGARG((png_structp, png_infop));
872typedef void (PNGAPI *png_progressive_end_ptr) PNGARG((png_structp, png_infop));
873typedef void (PNGAPI *png_progressive_row_ptr) PNGARG((png_structp, png_bytep,
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600874 png_uint_32, int));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600875#endif
Guy Schalnat6d764711995-12-19 03:22:19 -0600876
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600877#if defined(PNG_READ_USER_TRANSFORM_SUPPORTED) || \
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -0500878 defined(PNG_WRITE_USER_TRANSFORM_SUPPORTED) || \
879 defined(PNG_LEGACY_SUPPORTED)
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500880typedef void (PNGAPI *png_user_transform_ptr) PNGARG((png_structp,
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600881 png_row_infop, png_bytep));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600882#endif
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600883
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600884#if defined(PNG_READ_USER_CHUNKS_SUPPORTED)
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500885typedef int (PNGAPI *png_user_chunk_ptr) PNGARG((png_structp, png_unknown_chunkp));
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600886#endif
887#if defined(PNG_READ_UNKNOWN_CHUNKS_SUPPORTED)
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500888typedef void (PNGAPI *png_unknown_chunk_ptr) PNGARG((png_structp));
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600889#endif
890
891/* Transform masks for the high-level interface */
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600892#define PNG_TRANSFORM_IDENTITY 0x0000 /* read and write */
893#define PNG_TRANSFORM_STRIP_16 0x0001 /* read only */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600894#define PNG_TRANSFORM_STRIP_ALPHA 0x0002 /* read only */
895#define PNG_TRANSFORM_PACKING 0x0004 /* read and write */
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600896#define PNG_TRANSFORM_PACKSWAP 0x0008 /* read and write */
897#define PNG_TRANSFORM_EXPAND 0x0010 /* read only */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600898#define PNG_TRANSFORM_INVERT_MONO 0x0020 /* read and write */
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600899#define PNG_TRANSFORM_SHIFT 0x0040 /* read and write */
900#define PNG_TRANSFORM_BGR 0x0080 /* read and write */
901#define PNG_TRANSFORM_SWAP_ALPHA 0x0100 /* read and write */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600902#define PNG_TRANSFORM_SWAP_ENDIAN 0x0200 /* read and write */
Glenn Randers-Pehrsondb66d442000-06-23 21:38:16 -0500903#define PNG_TRANSFORM_INVERT_ALPHA 0x0400 /* read and write */
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600904#define PNG_TRANSFORM_STRIP_FILLER 0x0800 /* WRITE only */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600905
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500906typedef png_voidp (*png_malloc_ptr) PNGARG((png_structp, png_size_t));
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500907typedef void (*png_free_ptr) PNGARG((png_structp, png_voidp));
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500908
Andreas Dilger47a0c421997-05-16 02:46:07 -0500909/* The structure that holds the information to read and write PNG files.
910 * The only people who need to care about what is inside of this are the
911 * people who will be modifying the library for their own special needs.
912 * It should NOT be accessed directly by an application, except to store
913 * the jmp_buf.
914 */
Guy Schalnat6d764711995-12-19 03:22:19 -0600915
Guy Schalnat69b14481996-01-10 02:56:49 -0600916struct png_struct_def
Guy Schalnat0d580581995-07-20 02:43:20 -0500917{
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600918#ifdef PNG_SETJMP_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -0500919 jmp_buf jmpbuf; /* used in png_error */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600920#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -0500921 png_error_ptr error_fn; /* function for printing errors and aborting */
922 png_error_ptr warning_fn; /* function for printing warnings */
Guy Schalnate5a37791996-06-05 15:50:50 -0500923 png_voidp error_ptr; /* user supplied struct for error functions */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500924 png_rw_ptr write_data_fn; /* function for writing output data */
925 png_rw_ptr read_data_fn; /* function for reading input data */
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500926 png_voidp io_ptr; /* ptr to application struct for I/O functions*/
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600927
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500928#if defined(PNG_READ_USER_TRANSFORM_SUPPORTED)
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600929 png_user_transform_ptr read_user_transform_fn; /* user read transform */
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500930#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600931
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500932#if defined(PNG_WRITE_USER_TRANSFORM_SUPPORTED)
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600933 png_user_transform_ptr write_user_transform_fn; /* user write transform */
934#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600935
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -0500936/* These were added in libpng-1.0.2 */
937#if defined(PNG_USER_TRANSFORM_PTR_SUPPORTED)
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500938#if defined(PNG_READ_USER_TRANSFORM_SUPPORTED) || \
939 defined(PNG_WRITE_USER_TRANSFORM_SUPPORTED)
940 png_voidp user_transform_ptr; /* user supplied struct for user transform */
Glenn Randers-Pehrsonab1e5831999-10-06 04:57:42 -0500941 png_byte user_transform_depth; /* bit depth of user transformed pixels */
942 png_byte user_transform_channels; /* channels in user transformed pixels */
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500943#endif
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -0500944#endif
Guy Schalnate5a37791996-06-05 15:50:50 -0500945
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600946 png_uint_32 mode; /* tells us where we are in the PNG file */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500947 png_uint_32 flags; /* flags indicating various things to libpng */
Guy Schalnate5a37791996-06-05 15:50:50 -0500948 png_uint_32 transformations; /* which transformations to perform */
949
Andreas Dilger47a0c421997-05-16 02:46:07 -0500950 z_stream zstream; /* pointer to decompression structure (below) */
951 png_bytep zbuf; /* buffer for zlib */
952 png_size_t zbuf_size; /* size of zbuf */
953 int zlib_level; /* holds zlib compression level */
954 int zlib_method; /* holds zlib compression method */
955 int zlib_window_bits; /* holds zlib compression window bits */
956 int zlib_mem_level; /* holds zlib compression memory level */
957 int zlib_strategy; /* holds zlib compression strategy */
Guy Schalnate5a37791996-06-05 15:50:50 -0500958
Andreas Dilger47a0c421997-05-16 02:46:07 -0500959 png_uint_32 width; /* width of image in pixels */
960 png_uint_32 height; /* height of image in pixels */
961 png_uint_32 num_rows; /* number of rows in current pass */
962 png_uint_32 usr_width; /* width of row at start of write */
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600963 png_uint_32 rowbytes; /* size of row in bytes */
964 png_uint_32 irowbytes; /* size of current interlaced row in bytes */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500965 png_uint_32 iwidth; /* width of current interlaced row in pixels */
966 png_uint_32 row_number; /* current row in interlace pass */
967 png_bytep prev_row; /* buffer to save previous (unfiltered) row */
968 png_bytep row_buf; /* buffer to save current (unfiltered) row */
969 png_bytep sub_row; /* buffer to save "sub" row when filtering */
970 png_bytep up_row; /* buffer to save "up" row when filtering */
971 png_bytep avg_row; /* buffer to save "avg" row when filtering */
972 png_bytep paeth_row; /* buffer to save "Paeth" row when filtering */
973 png_row_info row_info; /* used for transformation routines */
Guy Schalnate5a37791996-06-05 15:50:50 -0500974
Andreas Dilger47a0c421997-05-16 02:46:07 -0500975 png_uint_32 idat_size; /* current IDAT size for read */
976 png_uint_32 crc; /* current chunk CRC value */
977 png_colorp palette; /* palette from the input file */
978 png_uint_16 num_palette; /* number of color entries in palette */
979 png_uint_16 num_trans; /* number of transparency values */
980 png_byte chunk_name[5]; /* null-terminated name of current chunk */
981 png_byte compression; /* file compression type (always 0) */
982 png_byte filter; /* file filter type (always 0) */
983 png_byte interlaced; /* PNG_INTERLACE_NONE, PNG_INTERLACE_ADAM7 */
984 png_byte pass; /* current interlace pass (0 - 6) */
985 png_byte do_filter; /* row filter flags (see PNG_FILTER_ below ) */
986 png_byte color_type; /* color type of file */
987 png_byte bit_depth; /* bit depth of file */
988 png_byte usr_bit_depth; /* bit depth of users row */
989 png_byte pixel_depth; /* number of bits per pixel */
990 png_byte channels; /* number of channels in file */
991 png_byte usr_channels; /* channels at start of write */
992 png_byte sig_bytes; /* magic bytes read/written from start of file */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600993
Guy Schalnate5a37791996-06-05 15:50:50 -0500994#if defined(PNG_READ_FILLER_SUPPORTED) || defined(PNG_WRITE_FILLER_SUPPORTED)
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -0500995#ifdef PNG_LEGACY_SUPPORTED
996 png_byte filler; /* filler byte for pixel expansion */
997#else
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500998 png_uint_16 filler; /* filler bytes for pixel expansion */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600999#endif
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05001000#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001001
Andreas Dilger47a0c421997-05-16 02:46:07 -05001002#if defined(PNG_READ_bKGD_SUPPORTED)
Guy Schalnate5a37791996-06-05 15:50:50 -05001003 png_byte background_gamma_type;
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05001004# ifdef PNG_FLOATING_POINT_SUPPORTED
Guy Schalnate5a37791996-06-05 15:50:50 -05001005 float background_gamma;
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05001006# endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05001007 png_color_16 background; /* background color in screen gamma space */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001008# if defined(PNG_READ_GAMMA_SUPPORTED)
1009 png_color_16 background_1; /* background normalized to gamma 1.0 */
1010# endif /* PNG_READ_GAMMA && PNG_READ_bKGD_SUPPORTED */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001011#endif /* PNG_READ_bKGD_SUPPORTED */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001012
Guy Schalnat6d764711995-12-19 03:22:19 -06001013#if defined(PNG_WRITE_FLUSH_SUPPORTED)
Guy Schalnate5a37791996-06-05 15:50:50 -05001014 png_flush_ptr output_flush_fn;/* Function for flushing output */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001015 png_uint_32 flush_dist; /* how many rows apart to flush, 0 - no flush */
1016 png_uint_32 flush_rows; /* number of rows written since last flush */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001017#endif
1018
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05001019#if defined(PNG_READ_GAMMA_SUPPORTED) || defined(PNG_READ_BACKGROUND_SUPPORTED)
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06001020 int gamma_shift; /* number of "insignificant" bits 16-bit gamma */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001021#ifdef PNG_FLOATING_POINT_SUPPORTED
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06001022 float gamma; /* file gamma value */
Glenn Randers-Pehrsonbcfd15d1999-10-01 14:22:25 -05001023 float screen_gamma; /* screen gamma value (display_exponent) */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001024#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001025#endif
1026
Guy Schalnate5a37791996-06-05 15:50:50 -05001027#if defined(PNG_READ_GAMMA_SUPPORTED) || defined(PNG_READ_BACKGROUND_SUPPORTED)
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05001028 png_bytep gamma_table; /* gamma table for 8-bit depth files */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001029 png_bytep gamma_from_1; /* converts from 1.0 to screen */
1030 png_bytep gamma_to_1; /* converts from file to 1.0 */
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05001031 png_uint_16pp gamma_16_table; /* gamma table for 16-bit depth files */
Guy Schalnate5a37791996-06-05 15:50:50 -05001032 png_uint_16pp gamma_16_from_1; /* converts from 1.0 to screen */
1033 png_uint_16pp gamma_16_to_1; /* converts from file to 1.0 */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001034#endif
1035
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05001036#if defined(PNG_READ_GAMMA_SUPPORTED) || defined(PNG_READ_sBIT_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001037 png_color_8 sig_bit; /* significant bits in each available channel */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001038#endif
1039
Guy Schalnate5a37791996-06-05 15:50:50 -05001040#if defined(PNG_READ_SHIFT_SUPPORTED) || defined(PNG_WRITE_SHIFT_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001041 png_color_8 shift; /* shift for significant bit tranformation */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001042#endif
1043
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05001044#if defined(PNG_READ_tRNS_SUPPORTED) || defined(PNG_READ_BACKGROUND_SUPPORTED) \
1045 || defined(PNG_READ_EXPAND_SUPPORTED) || defined(PNG_READ_BACKGROUND_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001046 png_bytep trans; /* transparency values for paletted files */
1047 png_color_16 trans_values; /* transparency values for non-paletted files */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001048#endif
1049
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06001050 png_read_status_ptr read_row_fn; /* called after each row is decoded */
1051 png_write_status_ptr write_row_fn; /* called after each row is encoded */
Guy Schalnat6d764711995-12-19 03:22:19 -06001052#ifdef PNG_PROGRESSIVE_READ_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -05001053 png_progressive_info_ptr info_fn; /* called after header data fully read */
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06001054 png_progressive_row_ptr row_fn; /* called after each prog. row is decoded */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001055 png_progressive_end_ptr end_fn; /* called after image is complete */
1056 png_bytep save_buffer_ptr; /* current location in save_buffer */
1057 png_bytep save_buffer; /* buffer for previously read data */
1058 png_bytep current_buffer_ptr; /* current location in current_buffer */
1059 png_bytep current_buffer; /* buffer for recently used data */
1060 png_uint_32 push_length; /* size of current input chunk */
1061 png_uint_32 skip_length; /* bytes to skip in input data */
1062 png_size_t save_buffer_size; /* amount of data now in save_buffer */
1063 png_size_t save_buffer_max; /* total size of save_buffer */
1064 png_size_t buffer_size; /* total amount of available input data */
1065 png_size_t current_buffer_size; /* amount of data now in current_buffer */
1066 int process_mode; /* what push library is currently doing */
1067 int cur_palette; /* current push library palette index */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001068
1069# if defined(PNG_READ_TEXT_SUPPORTED)
1070 png_size_t current_text_size; /* current size of text input data */
1071 png_size_t current_text_left; /* how much text left to read in input */
1072 png_charp current_text; /* current text chunk buffer */
1073 png_charp current_text_ptr; /* current location in current_text */
1074# endif /* PNG_PROGRESSIVE_READ_SUPPORTED && PNG_READ_TEXT_SUPPORTED */
1075
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06001076#endif /* PNG_PROGRESSIVE_READ_SUPPORTED */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001077
Guy Schalnat4ee97b01996-01-16 01:51:56 -06001078#if defined(__TURBOC__) && !defined(_Windows) && !defined(__FLAT__)
1079/* for the Borland special 64K segment handler */
1080 png_bytepp offset_table_ptr;
1081 png_bytep offset_table;
1082 png_uint_16 offset_table_number;
1083 png_uint_16 offset_table_count;
1084 png_uint_16 offset_table_count_free;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001085#endif
1086
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001087#if defined(PNG_READ_DITHER_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001088 png_bytep palette_lookup; /* lookup table for dithering */
1089 png_bytep dither_index; /* index translation for palette files */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001090#endif
1091
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001092#if defined(PNG_READ_DITHER_SUPPORTED) || defined(PNG_READ_hIST_SUPPORTED)
1093 png_uint_16p hist; /* histogram */
1094#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001095
Andreas Dilger47a0c421997-05-16 02:46:07 -05001096#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED)
1097 png_byte heuristic_method; /* heuristic for row filter selection */
1098 png_byte num_prev_filters; /* number of weights for previous rows */
1099 png_bytep prev_filters; /* filter type(s) of previous row(s) */
1100 png_uint_16p filter_weights; /* weight(s) for previous line(s) */
1101 png_uint_16p inv_filter_weights; /* 1/weight(s) for previous line(s) */
1102 png_uint_16p filter_costs; /* relative filter calculation cost */
1103 png_uint_16p inv_filter_costs; /* 1/relative filter calculation cost */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001104#endif
1105
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06001106#if defined(PNG_TIME_RFC1123_SUPPORTED)
1107 png_charp time_buffer; /* String to hold RFC 1123 time text */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001108#endif
1109
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05001110#ifdef PNG_USER_MEM_SUPPORTED
1111 png_voidp mem_ptr; /* user supplied struct for mem functions */
1112 png_malloc_ptr malloc_fn; /* function for allocating memory */
1113 png_free_ptr free_fn; /* function for freeing memory */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001114#endif
1115
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05001116/* New members added in libpng-1.0.6 */
1117
1118#ifdef PNG_FREE_ME_SUPPORTED
1119 png_uint_32 free_me; /* flags items libpng is responsible for freeing */
1120#endif
1121
1122#if defined(PNG_READ_USER_CHUNKS_SUPPORTED)
1123 png_voidp user_chunk_ptr;
1124 png_user_chunk_ptr read_user_chunk_fn; /* user read chunk handler */
1125#endif
1126
1127#if defined(PNG_UNKNOWN_CHUNKS_SUPPORTED)
1128 int num_chunk_list;
1129 png_bytep chunk_list;
1130#endif
1131
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06001132#if defined(PNG_READ_RGB_TO_GRAY_SUPPORTED)
1133 png_byte rgb_to_gray_status;
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -06001134 png_uint_16 rgb_to_gray_red_coeff;
1135 png_uint_16 rgb_to_gray_green_coeff;
1136 png_uint_16 rgb_to_gray_blue_coeff;
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06001137#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001138
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05001139#if defined(PNG_READ_EMPTY_PLTE_SUPPORTED) || \
1140 defined(PNG_WRITE_EMPTY_PLTE_SUPPORTED)
1141 png_byte empty_plte_permitted;
1142#endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001143
Glenn Randers-Pehrson228bd392000-04-23 23:14:02 -05001144#if defined(PNG_READ_GAMMA_SUPPORTED) || defined(PNG_READ_BACKGROUND_SUPPORTED)
1145 png_fixed_point int_gamma;
1146#endif
1147
Guy Schalnat0f716451995-11-28 11:22:13 -06001148};
Guy Schalnat0d580581995-07-20 02:43:20 -05001149
Glenn Randers-Pehrsonbcfd15d1999-10-01 14:22:25 -05001150/* This prevents a compiler error in png_get_copyright() in png.c if png.c
Glenn Randers-Pehrson15dac0b2000-07-10 07:48:54 -05001151and png.h are both at * version 1.0.8beta2
Glenn Randers-Pehrsonbcfd15d1999-10-01 14:22:25 -05001152 */
Glenn Randers-Pehrson15dac0b2000-07-10 07:48:54 -05001153typedef png_structp version_1_0_8beta2;
Glenn Randers-Pehrsonbcfd15d1999-10-01 14:22:25 -05001154
Andreas Dilger47a0c421997-05-16 02:46:07 -05001155typedef png_struct FAR * FAR * png_structpp;
Guy Schalnat6d764711995-12-19 03:22:19 -06001156
Guy Schalnat0d580581995-07-20 02:43:20 -05001157/* Here are the function definitions most commonly used. This is not
Andreas Dilger47a0c421997-05-16 02:46:07 -05001158 * the place to find out how to use libpng. See libpng.txt for the
1159 * full explanation, see example.c for the summary. This just provides
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001160 * a simple one line description of the use of each function.
Andreas Dilger47a0c421997-05-16 02:46:07 -05001161 */
Guy Schalnat0d580581995-07-20 02:43:20 -05001162
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -05001163/* Returns the version number of the library */
1164extern PNG_EXPORT(png_uint_32,png_access_version_number) PNGARG((void));
1165
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001166/* Tell lib we have already handled the first <num_bytes> magic bytes.
Andreas Dilger47a0c421997-05-16 02:46:07 -05001167 * Handling more than 8 bytes from the beginning of the file is an error.
1168 */
1169extern PNG_EXPORT(void,png_set_sig_bytes) PNGARG((png_structp png_ptr,
1170 int num_bytes));
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001171
Andreas Dilger47a0c421997-05-16 02:46:07 -05001172/* Check sig[start] through sig[start + num_to_check - 1] to see if it's a
1173 * PNG file. Returns zero if the supplied bytes match the 8-byte PNG
1174 * signature, and non-zero otherwise. Having num_to_check == 0 or
1175 * start > 7 will always fail (ie return non-zero).
1176 */
1177extern PNG_EXPORT(int,png_sig_cmp) PNGARG((png_bytep sig, png_size_t start,
1178 png_size_t num_to_check));
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001179
Andreas Dilger47a0c421997-05-16 02:46:07 -05001180/* Simple signature checking function. This is the same as calling
1181 * png_check_sig(sig, n) := !png_sig_cmp(sig, 0, n).
1182 */
1183extern PNG_EXPORT(int,png_check_sig) PNGARG((png_bytep sig, int num));
Guy Schalnat0d580581995-07-20 02:43:20 -05001184
Andreas Dilger47a0c421997-05-16 02:46:07 -05001185/* Allocate and initialize png_ptr struct for reading, and any other memory. */
1186extern PNG_EXPORT(png_structp,png_create_read_struct)
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05001187 PNGARG((png_const_charp user_png_ver, png_voidp error_ptr,
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001188 png_error_ptr error_fn, png_error_ptr warn_fn));
Guy Schalnat0d580581995-07-20 02:43:20 -05001189
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05001190/* Allocate and initialize png_ptr struct for writing, and any other memory */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001191extern PNG_EXPORT(png_structp,png_create_write_struct)
Glenn Randers-Pehrsond0dce401998-05-09 10:02:29 -05001192 PNGARG((png_const_charp user_png_ver, png_voidp error_ptr,
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001193 png_error_ptr error_fn, png_error_ptr warn_fn));
Guy Schalnate5a37791996-06-05 15:50:50 -05001194
Glenn Randers-Pehrson228bd392000-04-23 23:14:02 -05001195extern PNG_EXPORT(png_uint_32,png_get_compression_buffer_size)
1196 PNGARG((png_structp png_ptr));
1197
1198extern PNG_EXPORT(void,png_set_compression_buffer_size)
1199 PNGARG((png_structp png_ptr, png_uint_32 size));
1200
1201/* Reset the compression stream */
1202extern PNG_EXPORT(int,png_reset_zstream) PNGARG((png_structp png_ptr));
1203
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05001204#ifdef PNG_USER_MEM_SUPPORTED
1205extern PNG_EXPORT(png_structp,png_create_read_struct_2)
1206 PNGARG((png_const_charp user_png_ver, png_voidp error_ptr,
1207 png_error_ptr error_fn, png_error_ptr warn_fn, png_voidp mem_ptr,
1208 png_malloc_ptr malloc_fn, png_free_ptr free_fn));
1209extern PNG_EXPORT(png_structp,png_create_write_struct_2)
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06001210 PNGARG((png_const_charp user_png_ver, png_voidp error_ptr,
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05001211 png_error_ptr error_fn, png_error_ptr warn_fn, png_voidp mem_ptr,
1212 png_malloc_ptr malloc_fn, png_free_ptr free_fn));
1213#endif
1214
Glenn Randers-Pehrsoncbe52d81998-02-28 07:00:24 -06001215/* Write a PNG chunk - size, type, (optional) data, CRC. */
1216extern PNG_EXPORT(void,png_write_chunk) PNGARG((png_structp png_ptr,
1217 png_bytep chunk_name, png_bytep data, png_size_t length));
1218
1219/* Write the start of a PNG chunk - length and chunk name. */
1220extern PNG_EXPORT(void,png_write_chunk_start) PNGARG((png_structp png_ptr,
1221 png_bytep chunk_name, png_uint_32 length));
1222
1223/* Write the data of a PNG chunk started with png_write_chunk_start(). */
1224extern PNG_EXPORT(void,png_write_chunk_data) PNGARG((png_structp png_ptr,
1225 png_bytep data, png_size_t length));
1226
1227/* Finish a chunk started with png_write_chunk_start() (includes CRC). */
1228extern PNG_EXPORT(void,png_write_chunk_end) PNGARG((png_structp png_ptr));
1229
Andreas Dilger47a0c421997-05-16 02:46:07 -05001230/* Allocate and initialize the info structure */
1231extern PNG_EXPORT(png_infop,png_create_info_struct)
1232 PNGARG((png_structp png_ptr));
Guy Schalnat0d580581995-07-20 02:43:20 -05001233
Andreas Dilger47a0c421997-05-16 02:46:07 -05001234/* Initialize the info structure (old interface - NOT DLL EXPORTED) */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001235extern void png_info_init PNGARG((png_infop info_ptr));
Guy Schalnat0d580581995-07-20 02:43:20 -05001236
Andreas Dilger47a0c421997-05-16 02:46:07 -05001237/* Writes all the PNG information before the image. */
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06001238extern PNG_EXPORT(void,png_write_info_before_PLTE) PNGARG((png_structp png_ptr,
1239 png_infop info_ptr));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001240extern PNG_EXPORT(void,png_write_info) PNGARG((png_structp png_ptr,
1241 png_infop info_ptr));
Guy Schalnat0d580581995-07-20 02:43:20 -05001242
1243/* read the information before the actual image data. */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001244extern PNG_EXPORT(void,png_read_info) PNGARG((png_structp png_ptr,
1245 png_infop info_ptr));
Guy Schalnat0d580581995-07-20 02:43:20 -05001246
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06001247#if defined(PNG_TIME_RFC1123_SUPPORTED)
1248extern PNG_EXPORT(png_charp,png_convert_to_rfc1123)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001249 PNGARG((png_structp png_ptr, png_timep ptime));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001250#endif
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001251
Glenn Randers-Pehrson316f97a2000-07-08 13:19:41 -05001252#if !defined(_WIN32_WCE)
1253/* "time.h" functions are not supported on WindowsCE */
Guy Schalnat0f716451995-11-28 11:22:13 -06001254#if defined(PNG_WRITE_tIME_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -05001255/* convert from a struct tm to png_time */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001256extern PNG_EXPORT(void,png_convert_from_struct_tm) PNGARG((png_timep ptime,
Guy Schalnate5a37791996-06-05 15:50:50 -05001257 struct tm FAR * ttime));
Guy Schalnat0d580581995-07-20 02:43:20 -05001258
1259/* convert from time_t to png_time. Uses gmtime() */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001260extern PNG_EXPORT(void,png_convert_from_time_t) PNGARG((png_timep ptime,
1261 time_t ttime));
1262#endif /* PNG_WRITE_tIME_SUPPORTED */
Glenn Randers-Pehrson316f97a2000-07-08 13:19:41 -05001263#endif /* _WIN32_WCE */
Guy Schalnat0d580581995-07-20 02:43:20 -05001264
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001265#if defined(PNG_READ_EXPAND_SUPPORTED)
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05001266/* Expand data to 24-bit RGB, or 8-bit grayscale, with alpha if available. */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001267extern PNG_EXPORT(void,png_set_expand) PNGARG((png_structp png_ptr));
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05001268extern PNG_EXPORT(void,png_set_gray_1_2_4_to_8) PNGARG((png_structp png_ptr));
1269extern PNG_EXPORT(void,png_set_palette_to_rgb) PNGARG((png_structp png_ptr));
1270extern PNG_EXPORT(void,png_set_tRNS_to_alpha) PNGARG((png_structp png_ptr));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001271#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001272
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001273#if defined(PNG_READ_BGR_SUPPORTED) || defined(PNG_WRITE_BGR_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -05001274/* Use blue, green, red order for pixels. */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001275extern PNG_EXPORT(void,png_set_bgr) PNGARG((png_structp png_ptr));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001276#endif
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001277
Guy Schalnat69b14481996-01-10 02:56:49 -06001278#if defined(PNG_READ_GRAY_TO_RGB_SUPPORTED)
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05001279/* Expand the grayscale to 24-bit RGB if necessary. */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001280extern PNG_EXPORT(void,png_set_gray_to_rgb) PNGARG((png_structp png_ptr));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001281#endif
Guy Schalnat69b14481996-01-10 02:56:49 -06001282
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001283#if defined(PNG_READ_RGB_TO_GRAY_SUPPORTED)
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06001284/* Reduce RGB to grayscale. */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001285#ifdef PNG_FLOATING_POINT_SUPPORTED
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06001286extern PNG_EXPORT(void,png_set_rgb_to_gray) PNGARG((png_structp png_ptr,
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05001287 int error_action, double red, double green ));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001288#endif
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -06001289extern PNG_EXPORT(void,png_set_rgb_to_gray_fixed) PNGARG((png_structp png_ptr,
1290 int error_action, png_fixed_point red, png_fixed_point green ));
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06001291extern PNG_EXPORT(png_byte,png_get_rgb_to_gray_status) PNGARG((png_structp
1292 png_ptr));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001293#endif
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001294
Andreas Dilger47a0c421997-05-16 02:46:07 -05001295extern PNG_EXPORT(void,png_build_grayscale_palette) PNGARG((int bit_depth,
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001296 png_colorp palette));
1297
Andreas Dilger47a0c421997-05-16 02:46:07 -05001298#if defined(PNG_READ_STRIP_ALPHA_SUPPORTED)
1299extern PNG_EXPORT(void,png_set_strip_alpha) PNGARG((png_structp png_ptr));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001300#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05001301
1302#if defined(PNG_READ_SWAP_ALPHA_SUPPORTED) || \
1303 defined(PNG_WRITE_SWAP_ALPHA_SUPPORTED)
1304extern PNG_EXPORT(void,png_set_swap_alpha) PNGARG((png_structp png_ptr));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001305#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05001306
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06001307#if defined(PNG_READ_INVERT_ALPHA_SUPPORTED) || \
1308 defined(PNG_WRITE_INVERT_ALPHA_SUPPORTED)
1309extern PNG_EXPORT(void,png_set_invert_alpha) PNGARG((png_structp png_ptr));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001310#endif
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06001311
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001312#if defined(PNG_READ_FILLER_SUPPORTED) || defined(PNG_WRITE_FILLER_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001313/* Add a filler byte to 24-bit RGB images. */
1314extern PNG_EXPORT(void,png_set_filler) PNGARG((png_structp png_ptr,
1315 png_uint_32 filler, int flags));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001316/* The values of the PNG_FILLER_ defines should NOT be changed */
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001317#define PNG_FILLER_BEFORE 0
1318#define PNG_FILLER_AFTER 1
Andreas Dilger47a0c421997-05-16 02:46:07 -05001319#endif /* PNG_READ_FILLER_SUPPORTED || PNG_WRITE_FILLER_SUPPORTED */
Guy Schalnat0d580581995-07-20 02:43:20 -05001320
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001321#if defined(PNG_READ_SWAP_SUPPORTED) || defined(PNG_WRITE_SWAP_SUPPORTED)
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05001322/* Swap bytes in 16-bit depth files. */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001323extern PNG_EXPORT(void,png_set_swap) PNGARG((png_structp png_ptr));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001324#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001325
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001326#if defined(PNG_READ_PACK_SUPPORTED) || defined(PNG_WRITE_PACK_SUPPORTED)
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05001327/* Use 1 byte per pixel in 1, 2, or 4-bit depth files. */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001328extern PNG_EXPORT(void,png_set_packing) PNGARG((png_structp png_ptr));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001329#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05001330
Glenn Randers-Pehrson38d73af1998-03-07 21:30:44 -06001331#if defined(PNG_READ_PACKSWAP_SUPPORTED) || defined(PNG_WRITE_PACKSWAP_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001332/* Swap packing order of pixels in bytes. */
1333extern PNG_EXPORT(void,png_set_packswap) PNGARG((png_structp png_ptr));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001334#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001335
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001336#if defined(PNG_READ_SHIFT_SUPPORTED) || defined(PNG_WRITE_SHIFT_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -05001337/* Converts files to legal bit depths. */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001338extern PNG_EXPORT(void,png_set_shift) PNGARG((png_structp png_ptr,
Guy Schalnat6d764711995-12-19 03:22:19 -06001339 png_color_8p true_bits));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001340#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001341
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001342#if defined(PNG_READ_INTERLACING_SUPPORTED) || \
1343 defined(PNG_WRITE_INTERLACING_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -05001344/* Have the code handle the interlacing. Returns the number of passes. */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001345extern PNG_EXPORT(int,png_set_interlace_handling) PNGARG((png_structp png_ptr));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001346#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001347
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001348#if defined(PNG_READ_INVERT_SUPPORTED) || defined(PNG_WRITE_INVERT_SUPPORTED)
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -05001349/* Invert monochrome files */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001350extern PNG_EXPORT(void,png_set_invert_mono) PNGARG((png_structp png_ptr));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001351#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001352
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001353#if defined(PNG_READ_BACKGROUND_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -05001354/* Handle alpha and tRNS by replacing with a background color. */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001355#ifdef PNG_FLOATING_POINT_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -05001356extern PNG_EXPORT(void,png_set_background) PNGARG((png_structp png_ptr,
1357 png_color_16p background_color, int background_gamma_code,
1358 int need_expand, double background_gamma));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001359#endif
Guy Schalnate5a37791996-06-05 15:50:50 -05001360#define PNG_BACKGROUND_GAMMA_UNKNOWN 0
1361#define PNG_BACKGROUND_GAMMA_SCREEN 1
1362#define PNG_BACKGROUND_GAMMA_FILE 2
1363#define PNG_BACKGROUND_GAMMA_UNIQUE 3
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001364#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001365
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001366#if defined(PNG_READ_16_TO_8_SUPPORTED)
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05001367/* strip the second byte of information from a 16-bit depth file. */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001368extern PNG_EXPORT(void,png_set_strip_16) PNGARG((png_structp png_ptr));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001369#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001370
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001371#if defined(PNG_READ_DITHER_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -05001372/* Turn on dithering, and reduce the palette to the number of colors available. */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001373extern PNG_EXPORT(void,png_set_dither) PNGARG((png_structp png_ptr,
1374 png_colorp palette, int num_palette, int maximum_colors,
1375 png_uint_16p histogram, int full_dither));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001376#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001377
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001378#if defined(PNG_READ_GAMMA_SUPPORTED)
Glenn Randers-Pehrsonbcfd15d1999-10-01 14:22:25 -05001379/* Handle gamma correction. Screen_gamma=(display_exponent) */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001380#ifdef PNG_FLOATING_POINT_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -05001381extern PNG_EXPORT(void,png_set_gamma) PNGARG((png_structp png_ptr,
1382 double screen_gamma, double default_file_gamma));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001383#endif
1384#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05001385
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05001386#if defined(PNG_READ_EMPTY_PLTE_SUPPORTED) || \
1387 defined(PNG_WRITE_EMPTY_PLTE_SUPPORTED)
1388/* Permit or disallow empty PLTE (0: not permitted, 1: permitted) */
1389extern PNG_EXPORT(void,png_permit_empty_plte) PNGARG((png_structp png_ptr,
1390 int empty_plte_permitted));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001391#endif
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05001392
Guy Schalnat0f716451995-11-28 11:22:13 -06001393#if defined(PNG_WRITE_FLUSH_SUPPORTED)
1394/* Set how many lines between output flushes - 0 for no flushing */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001395extern PNG_EXPORT(void,png_set_flush) PNGARG((png_structp png_ptr, int nrows));
Guy Schalnat0f716451995-11-28 11:22:13 -06001396/* Flush the current PNG output buffer */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001397extern PNG_EXPORT(void,png_write_flush) PNGARG((png_structp png_ptr));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001398#endif
Guy Schalnat0f716451995-11-28 11:22:13 -06001399
Guy Schalnat0d580581995-07-20 02:43:20 -05001400/* optional update palette with requested transformations */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001401extern PNG_EXPORT(void,png_start_read_image) PNGARG((png_structp png_ptr));
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001402
1403/* optional call to update the users info structure */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001404extern PNG_EXPORT(void,png_read_update_info) PNGARG((png_structp png_ptr,
Guy Schalnat4ee97b01996-01-16 01:51:56 -06001405 png_infop info_ptr));
Guy Schalnat0d580581995-07-20 02:43:20 -05001406
1407/* read a one or more rows of image data.*/
Andreas Dilger47a0c421997-05-16 02:46:07 -05001408extern PNG_EXPORT(void,png_read_rows) PNGARG((png_structp png_ptr,
1409 png_bytepp row, png_bytepp display_row, png_uint_32 num_rows));
Guy Schalnat0d580581995-07-20 02:43:20 -05001410
1411/* read a row of data.*/
Andreas Dilger47a0c421997-05-16 02:46:07 -05001412extern PNG_EXPORT(void,png_read_row) PNGARG((png_structp png_ptr,
Guy Schalnat4ee97b01996-01-16 01:51:56 -06001413 png_bytep row,
1414 png_bytep display_row));
Guy Schalnat0d580581995-07-20 02:43:20 -05001415
1416/* read the whole image into memory at once. */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001417extern PNG_EXPORT(void,png_read_image) PNGARG((png_structp png_ptr,
Guy Schalnat4ee97b01996-01-16 01:51:56 -06001418 png_bytepp image));
Guy Schalnat0d580581995-07-20 02:43:20 -05001419
1420/* write a row of image data */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001421extern PNG_EXPORT(void,png_write_row) PNGARG((png_structp png_ptr,
Guy Schalnat4ee97b01996-01-16 01:51:56 -06001422 png_bytep row));
Guy Schalnat0d580581995-07-20 02:43:20 -05001423
1424/* write a few rows of image data */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001425extern PNG_EXPORT(void,png_write_rows) PNGARG((png_structp png_ptr,
1426 png_bytepp row, png_uint_32 num_rows));
Guy Schalnat0d580581995-07-20 02:43:20 -05001427
1428/* write the image data */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001429extern PNG_EXPORT(void,png_write_image) PNGARG((png_structp png_ptr,
1430 png_bytepp image));
Guy Schalnat0d580581995-07-20 02:43:20 -05001431
Andreas Dilger47a0c421997-05-16 02:46:07 -05001432/* writes the end of the PNG file. */
1433extern PNG_EXPORT(void,png_write_end) PNGARG((png_structp png_ptr,
1434 png_infop info_ptr));
Guy Schalnat0d580581995-07-20 02:43:20 -05001435
Andreas Dilger47a0c421997-05-16 02:46:07 -05001436/* read the end of the PNG file. */
1437extern PNG_EXPORT(void,png_read_end) PNGARG((png_structp png_ptr,
1438 png_infop info_ptr));
Guy Schalnat0d580581995-07-20 02:43:20 -05001439
Andreas Dilger47a0c421997-05-16 02:46:07 -05001440/* free any memory associated with the png_info_struct */
1441extern PNG_EXPORT(void,png_destroy_info_struct) PNGARG((png_structp png_ptr,
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001442 png_infopp info_ptr_ptr));
Guy Schalnate5a37791996-06-05 15:50:50 -05001443
Andreas Dilger47a0c421997-05-16 02:46:07 -05001444/* free any memory associated with the png_struct and the png_info_structs */
1445extern PNG_EXPORT(void,png_destroy_read_struct) PNGARG((png_structpp
1446 png_ptr_ptr, png_infopp info_ptr_ptr, png_infopp end_info_ptr_ptr));
Guy Schalnate5a37791996-06-05 15:50:50 -05001447
Andreas Dilger47a0c421997-05-16 02:46:07 -05001448/* free all memory used by the read (old method - NOT DLL EXPORTED) */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001449extern void png_read_destroy PNGARG((png_structp png_ptr, png_infop info_ptr,
1450 png_infop end_info_ptr));
Guy Schalnat0d580581995-07-20 02:43:20 -05001451
Andreas Dilger47a0c421997-05-16 02:46:07 -05001452/* free any memory associated with the png_struct and the png_info_structs */
1453extern PNG_EXPORT(void,png_destroy_write_struct)
1454 PNGARG((png_structpp png_ptr_ptr, png_infopp info_ptr_ptr));
Guy Schalnate5a37791996-06-05 15:50:50 -05001455
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001456/* free any memory used in info_ptr struct (old method - NOT DLL EXPORTED) */
1457extern void png_write_destroy_info PNGARG((png_infop info_ptr));
1458
Andreas Dilger47a0c421997-05-16 02:46:07 -05001459/* free any memory used in png_ptr struct (old method - NOT DLL EXPORTED) */
Guy Schalnat6d764711995-12-19 03:22:19 -06001460extern void png_write_destroy PNGARG((png_structp png_ptr));
Guy Schalnat0d580581995-07-20 02:43:20 -05001461
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001462/* set the libpng method of handling chunk CRC errors */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001463extern PNG_EXPORT(void,png_set_crc_action) PNGARG((png_structp png_ptr,
1464 int crit_action, int ancil_action));
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001465
1466/* Values for png_set_crc_action() to say how to handle CRC errors in
Andreas Dilger47a0c421997-05-16 02:46:07 -05001467 * ancillary and critical chunks, and whether to use the data contained
1468 * therein. Note that it is impossible to "discard" data in a critical
1469 * chunk. For versions prior to 0.90, the action was always error/quit,
1470 * whereas in version 0.90 and later, the action for CRC errors in ancillary
1471 * chunks is warn/discard. These values should NOT be changed.
1472 *
1473 * value action:critical action:ancillary
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001474 */
1475#define PNG_CRC_DEFAULT 0 /* error/quit warn/discard data */
1476#define PNG_CRC_ERROR_QUIT 1 /* error/quit error/quit */
1477#define PNG_CRC_WARN_DISCARD 2 /* (INVALID) warn/discard data */
1478#define PNG_CRC_WARN_USE 3 /* warn/use data warn/use data */
1479#define PNG_CRC_QUIET_USE 4 /* quiet/use data quiet/use data */
1480#define PNG_CRC_NO_CHANGE 5 /* use current value use current value */
1481
Andreas Dilger47a0c421997-05-16 02:46:07 -05001482/* These functions give the user control over the scan-line filtering in
1483 * libpng and the compression methods used by zlib. These functions are
1484 * mainly useful for testing, as the defaults should work with most users.
1485 * Those users who are tight on memory or want faster performance at the
1486 * expense of compression can modify them. See the compression library
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001487 * header file (zlib.h) for an explination of the compression functions.
1488 */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001489
Andreas Dilger47a0c421997-05-16 02:46:07 -05001490/* set the filtering method(s) used by libpng. Currently, the only valid
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001491 * value for "method" is 0.
1492 */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001493extern PNG_EXPORT(void,png_set_filter) PNGARG((png_structp png_ptr, int method,
Guy Schalnate5a37791996-06-05 15:50:50 -05001494 int filters));
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001495
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001496/* Flags for png_set_filter() to say which filters to use. The flags
Andreas Dilger47a0c421997-05-16 02:46:07 -05001497 * are chosen so that they don't conflict with real filter types
1498 * below, in case they are supplied instead of the #defined constants.
1499 * These values should NOT be changed.
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001500 */
1501#define PNG_NO_FILTERS 0x00
1502#define PNG_FILTER_NONE 0x08
1503#define PNG_FILTER_SUB 0x10
1504#define PNG_FILTER_UP 0x20
1505#define PNG_FILTER_AVG 0x40
1506#define PNG_FILTER_PAETH 0x80
1507#define PNG_ALL_FILTERS (PNG_FILTER_NONE | PNG_FILTER_SUB | PNG_FILTER_UP | \
1508 PNG_FILTER_AVG | PNG_FILTER_PAETH)
1509
Andreas Dilger47a0c421997-05-16 02:46:07 -05001510/* Filter values (not flags) - used in pngwrite.c, pngwutil.c for now.
1511 * These defines should NOT be changed.
1512 */
1513#define PNG_FILTER_VALUE_NONE 0
1514#define PNG_FILTER_VALUE_SUB 1
1515#define PNG_FILTER_VALUE_UP 2
1516#define PNG_FILTER_VALUE_AVG 3
1517#define PNG_FILTER_VALUE_PAETH 4
1518#define PNG_FILTER_VALUE_LAST 5
1519
1520#if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED) /* EXPERIMENTAL */
1521/* The "heuristic_method" is given by one of the PNG_FILTER_HEURISTIC_
1522 * defines, either the default (minimum-sum-of-absolute-differences), or
1523 * the experimental method (weighted-minimum-sum-of-absolute-differences).
1524 *
1525 * Weights are factors >= 1.0, indicating how important it is to keep the
1526 * filter type consistent between rows. Larger numbers mean the current
1527 * filter is that many times as likely to be the same as the "num_weights"
1528 * previous filters. This is cumulative for each previous row with a weight.
1529 * There needs to be "num_weights" values in "filter_weights", or it can be
1530 * NULL if the weights aren't being specified. Weights have no influence on
1531 * the selection of the first row filter. Well chosen weights can (in theory)
1532 * improve the compression for a given image.
1533 *
1534 * Costs are factors >= 1.0 indicating the relative decoding costs of a
1535 * filter type. Higher costs indicate more decoding expense, and are
1536 * therefore less likely to be selected over a filter with lower computational
1537 * costs. There needs to be a value in "filter_costs" for each valid filter
1538 * type (given by PNG_FILTER_VALUE_LAST), or it can be NULL if you aren't
1539 * setting the costs. Costs try to improve the speed of decompression without
1540 * unduly increasing the compressed image size.
1541 *
1542 * A negative weight or cost indicates the default value is to be used, and
1543 * values in the range [0.0, 1.0) indicate the value is to remain unchanged.
1544 * The default values for both weights and costs are currently 1.0, but may
1545 * change if good general weighting/cost heuristics can be found. If both
1546 * the weights and costs are set to 1.0, this degenerates the WEIGHTED method
1547 * to the UNWEIGHTED method, but with added encoding time/computation.
1548 */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001549#ifdef PNG_FLOATING_POINT_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -05001550extern PNG_EXPORT(void,png_set_filter_heuristics) PNGARG((png_structp png_ptr,
1551 int heuristic_method, int num_weights, png_doublep filter_weights,
1552 png_doublep filter_costs));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001553#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05001554#endif /* PNG_WRITE_WEIGHTED_FILTER_SUPPORTED */
1555
1556/* Heuristic used for row filter selection. These defines should NOT be
1557 * changed.
1558 */
1559#define PNG_FILTER_HEURISTIC_DEFAULT 0 /* Currently "UNWEIGHTED" */
1560#define PNG_FILTER_HEURISTIC_UNWEIGHTED 1 /* Used by libpng < 0.95 */
1561#define PNG_FILTER_HEURISTIC_WEIGHTED 2 /* Experimental feature */
1562#define PNG_FILTER_HEURISTIC_LAST 3 /* Not a valid value */
1563
1564/* Set the library compression level. Currently, valid values range from
1565 * 0 - 9, corresponding directly to the zlib compression levels 0 - 9
1566 * (0 - no compression, 9 - "maximal" compression). Note that tests have
1567 * shown that zlib compression levels 3-6 usually perform as well as level 9
1568 * for PNG images, and do considerably fewer caclulations. In the future,
1569 * these values may not correspond directly to the zlib compression levels.
1570 */
1571extern PNG_EXPORT(void,png_set_compression_level) PNGARG((png_structp png_ptr,
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001572 int level));
1573
Andreas Dilger47a0c421997-05-16 02:46:07 -05001574extern PNG_EXPORT(void,png_set_compression_mem_level)
1575 PNGARG((png_structp png_ptr, int mem_level));
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001576
Andreas Dilger47a0c421997-05-16 02:46:07 -05001577extern PNG_EXPORT(void,png_set_compression_strategy)
1578 PNGARG((png_structp png_ptr, int strategy));
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001579
Andreas Dilger47a0c421997-05-16 02:46:07 -05001580extern PNG_EXPORT(void,png_set_compression_window_bits)
1581 PNGARG((png_structp png_ptr, int window_bits));
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001582
Andreas Dilger47a0c421997-05-16 02:46:07 -05001583extern PNG_EXPORT(void,png_set_compression_method) PNGARG((png_structp png_ptr,
Guy Schalnat51f0eb41995-09-26 05:22:39 -05001584 int method));
Guy Schalnat0d580581995-07-20 02:43:20 -05001585
Guy Schalnate5a37791996-06-05 15:50:50 -05001586/* These next functions are called for input/output, memory, and error
Andreas Dilger47a0c421997-05-16 02:46:07 -05001587 * handling. They are in the file pngrio.c, pngwio.c, and pngerror.c,
1588 * and call standard C I/O routines such as fread(), fwrite(), and
1589 * fprintf(). These functions can be made to use other I/O routines
1590 * at run time for those applications that need to handle I/O in a
1591 * different manner by calling png_set_???_fn(). See libpng.txt for
1592 * more information.
1593 */
Guy Schalnat0d580581995-07-20 02:43:20 -05001594
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001595#if !defined(PNG_NO_STDIO)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001596/* Initialize the input/output for the PNG file to the default functions. */
Glenn Randers-Pehrson15dac0b2000-07-10 07:48:54 -05001597extern PNG_EXPORT(void,png_init_io) PNGARG((png_structp png_ptr, png_FILE_p fp));
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001598#endif
Guy Schalnat6d764711995-12-19 03:22:19 -06001599
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06001600/* Replace the (error and abort), and warning functions with user
Andreas Dilger47a0c421997-05-16 02:46:07 -05001601 * supplied functions. If no messages are to be printed you must still
1602 * write and use replacement functions. The replacement error_fn should
1603 * still do a longjmp to the last setjmp location if you are using this
1604 * method of error handling. If error_fn or warning_fn is NULL, the
1605 * default function will be used.
1606 */
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06001607
Andreas Dilger47a0c421997-05-16 02:46:07 -05001608extern PNG_EXPORT(void,png_set_error_fn) PNGARG((png_structp png_ptr,
1609 png_voidp error_ptr, png_error_ptr error_fn, png_error_ptr warning_fn));
Guy Schalnat6d764711995-12-19 03:22:19 -06001610
Guy Schalnate5a37791996-06-05 15:50:50 -05001611/* Return the user pointer associated with the error functions */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001612extern PNG_EXPORT(png_voidp,png_get_error_ptr) PNGARG((png_structp png_ptr));
Guy Schalnat6d764711995-12-19 03:22:19 -06001613
1614/* Replace the default data output functions with a user supplied one(s).
Andreas Dilger47a0c421997-05-16 02:46:07 -05001615 * If buffered output is not used, then output_flush_fn can be set to NULL.
1616 * If PNG_WRITE_FLUSH_SUPPORTED is not defined at libpng compile time
1617 * output_flush_fn will be ignored (and thus can be NULL).
1618 */
1619extern PNG_EXPORT(void,png_set_write_fn) PNGARG((png_structp png_ptr,
1620 png_voidp io_ptr, png_rw_ptr write_data_fn, png_flush_ptr output_flush_fn));
Guy Schalnat6d764711995-12-19 03:22:19 -06001621
1622/* Replace the default data input function with a user supplied one. */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001623extern PNG_EXPORT(void,png_set_read_fn) PNGARG((png_structp png_ptr,
1624 png_voidp io_ptr, png_rw_ptr read_data_fn));
Guy Schalnat6d764711995-12-19 03:22:19 -06001625
1626/* Return the user pointer associated with the I/O functions */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001627extern PNG_EXPORT(png_voidp,png_get_io_ptr) PNGARG((png_structp png_ptr));
Guy Schalnat6d764711995-12-19 03:22:19 -06001628
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06001629extern PNG_EXPORT(void,png_set_read_status_fn) PNGARG((png_structp png_ptr,
1630 png_read_status_ptr read_row_fn));
1631
1632extern PNG_EXPORT(void,png_set_write_status_fn) PNGARG((png_structp png_ptr,
1633 png_write_status_ptr write_row_fn));
1634
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05001635#ifdef PNG_USER_MEM_SUPPORTED
1636/* Replace the default memory allocation functions with user supplied one(s). */
1637extern PNG_EXPORT(void,png_set_mem_fn) PNGARG((png_structp png_ptr,
1638 png_voidp mem_ptr, png_malloc_ptr malloc_fn, png_free_ptr free_fn));
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05001639/* Return the user pointer associated with the memory functions */
1640extern PNG_EXPORT(png_voidp,png_get_mem_ptr) PNGARG((png_structp png_ptr));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001641#endif
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05001642
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05001643#if defined(PNG_READ_USER_TRANSFORM_SUPPORTED) || \
1644 defined(PNG_LEGACY_SUPPORTED)
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06001645extern PNG_EXPORT(void,png_set_read_user_transform_fn) PNGARG((png_structp
1646 png_ptr, png_user_transform_ptr read_user_transform_fn));
1647#endif
1648
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05001649#if defined(PNG_WRITE_USER_TRANSFORM_SUPPORTED) || \
1650 defined(PNG_LEGACY_SUPPORTED)
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -06001651extern PNG_EXPORT(void,png_set_write_user_transform_fn) PNGARG((png_structp
1652 png_ptr, png_user_transform_ptr write_user_transform_fn));
1653#endif
1654
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05001655#if defined(PNG_READ_USER_TRANSFORM_SUPPORTED) || \
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05001656 defined(PNG_WRITE_USER_TRANSFORM_SUPPORTED) || \
1657 defined(PNG_LEGACY_SUPPORTED)
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05001658extern PNG_EXPORT(void,png_set_user_transform_info) PNGARG((png_structp
1659 png_ptr, png_voidp user_transform_ptr, int user_transform_depth,
1660 int user_transform_channels));
1661/* Return the user pointer associated with the user transform functions */
1662extern PNG_EXPORT(png_voidp,png_get_user_transform_ptr)
1663 PNGARG((png_structp png_ptr));
1664#endif
1665
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001666#ifdef PNG_READ_USER_CHUNKS_SUPPORTED
1667extern PNG_EXPORT(void,png_set_read_user_chunk_fn) PNGARG((png_structp png_ptr,
1668 png_voidp user_chunk_ptr, png_user_chunk_ptr read_user_chunk_fn));
1669extern PNG_EXPORT(png_voidp,png_get_user_chunk_ptr) PNGARG((png_structp
1670 png_ptr));
1671#endif
1672
Guy Schalnat4ee97b01996-01-16 01:51:56 -06001673#ifdef PNG_PROGRESSIVE_READ_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -05001674/* Sets the function callbacks for the push reader, and a pointer to a
1675 * user-defined structure available to the callback functions.
1676 */
1677extern PNG_EXPORT(void,png_set_progressive_read_fn) PNGARG((png_structp png_ptr,
1678 png_voidp progressive_ptr,
Guy Schalnat4ee97b01996-01-16 01:51:56 -06001679 png_progressive_info_ptr info_fn, png_progressive_row_ptr row_fn,
1680 png_progressive_end_ptr end_fn));
Guy Schalnat6d764711995-12-19 03:22:19 -06001681
Guy Schalnat4ee97b01996-01-16 01:51:56 -06001682/* returns the user pointer associated with the push read functions */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001683extern PNG_EXPORT(png_voidp,png_get_progressive_ptr)
1684 PNGARG((png_structp png_ptr));
1685
1686/* function to be called when data becomes available */
1687extern PNG_EXPORT(void,png_process_data) PNGARG((png_structp png_ptr,
1688 png_infop info_ptr, png_bytep buffer, png_size_t buffer_size));
1689
Glenn Randers-Pehrson8686fff1998-05-21 09:27:50 -05001690/* function that combines rows. Not very much different than the
Andreas Dilger47a0c421997-05-16 02:46:07 -05001691 * png_combine_row() call. Is this even used?????
1692 */
1693extern PNG_EXPORT(void,png_progressive_combine_row) PNGARG((png_structp png_ptr,
1694 png_bytep old_row, png_bytep new_row));
Guy Schalnat4ee97b01996-01-16 01:51:56 -06001695#endif /* PNG_PROGRESSIVE_READ_SUPPORTED */
Guy Schalnat6d764711995-12-19 03:22:19 -06001696
Andreas Dilger47a0c421997-05-16 02:46:07 -05001697extern PNG_EXPORT(png_voidp,png_malloc) PNGARG((png_structp png_ptr,
Guy Schalnat4ee97b01996-01-16 01:51:56 -06001698 png_uint_32 size));
Guy Schalnat0d580581995-07-20 02:43:20 -05001699
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001700/* frees a pointer allocated by png_malloc() */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001701extern PNG_EXPORT(void,png_free) PNGARG((png_structp png_ptr, png_voidp ptr));
Guy Schalnate5a37791996-06-05 15:50:50 -05001702
Glenn Randers-Pehrson38e6e772000-04-09 19:06:13 -05001703/* Free data that was allocated internally */
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -06001704extern PNG_EXPORT(void,png_free_data) PNGARG((png_structp png_ptr,
1705 png_infop info_ptr, png_uint_32 free_me, int num));
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05001706#ifdef PNG_FREE_ME_SUPPORTED
Glenn Randers-Pehrson38e6e772000-04-09 19:06:13 -05001707/* Reassign responsibility for freeing existing data, whether allocated
1708 * by libpng or by the application */
1709extern PNG_EXPORT(void,png_data_freer) PNGARG((png_structp png_ptr,
1710 png_infop info_ptr, int freer, png_uint_32 mask));
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05001711#endif
Glenn Randers-Pehrson38e6e772000-04-09 19:06:13 -05001712/* assignments for png_data_freer */
1713#define PNG_DESTROY_WILL_FREE_DATA 1
1714#define PNG_SET_WILL_FREE_DATA 1
1715#define PNG_USER_WILL_FREE_DATA 2
1716/* Flags for png_ptr->free_me and info_ptr->free_me */
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -06001717#define PNG_FREE_HIST 0x0008
1718#define PNG_FREE_ICCP 0x0010
1719#define PNG_FREE_SPLT 0x0020
1720#define PNG_FREE_ROWS 0x0040
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -05001721#define PNG_FREE_PCAL 0x0080
1722#define PNG_FREE_SCAL 0x0100
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -06001723#define PNG_FREE_UNKN 0x0200
1724#define PNG_FREE_LIST 0x0400
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05001725#define PNG_FREE_PLTE 0x1000
1726#define PNG_FREE_TRNS 0x2000
1727#define PNG_FREE_TEXT 0x4000
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -05001728#define PNG_FREE_ALL 0x7fff
Glenn Randers-Pehrsonec61c232000-05-16 06:17:36 -05001729#define PNG_FREE_MUL 0x4220 /* PNG_FREE_SPLT|PNG_FREE_TEXT|PNG_FREE_UNKN */
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -06001730
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05001731#ifdef PNG_USER_MEM_SUPPORTED
1732extern PNG_EXPORT(png_voidp,png_malloc_default) PNGARG((png_structp png_ptr,
1733 png_uint_32 size));
1734extern PNG_EXPORT(void,png_free_default) PNGARG((png_structp png_ptr,
1735 png_voidp ptr));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001736#endif
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05001737
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001738extern PNG_EXPORT(png_voidp,png_memcpy_check) PNGARG((png_structp png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001739 png_voidp s1, png_voidp s2, png_uint_32 size));
1740
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001741extern PNG_EXPORT(png_voidp,png_memset_check) PNGARG((png_structp png_ptr,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06001742 png_voidp s1, int value, png_uint_32 size));
1743
Andreas Dilger47a0c421997-05-16 02:46:07 -05001744#if defined(USE_FAR_KEYWORD) /* memory model conversion function */
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -06001745extern void *png_far_to_near PNGARG((png_structp png_ptr,png_voidp ptr,
1746 int check));
Andreas Dilger47a0c421997-05-16 02:46:07 -05001747#endif /* USE_FAR_KEYWORD */
1748
1749/* Fatal error in PNG image of libpng - can't continue */
1750extern PNG_EXPORT(void,png_error) PNGARG((png_structp png_ptr,
1751 png_const_charp error));
Guy Schalnat0d580581995-07-20 02:43:20 -05001752
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001753/* The same, but the chunk name is prepended to the error string. */
1754extern PNG_EXPORT(void,png_chunk_error) PNGARG((png_structp png_ptr,
1755 png_const_charp error));
1756
Guy Schalnat6d764711995-12-19 03:22:19 -06001757/* Non-fatal error in libpng. Can continue, but may have a problem. */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001758extern PNG_EXPORT(void,png_warning) PNGARG((png_structp png_ptr,
1759 png_const_charp message));
Guy Schalnat0d580581995-07-20 02:43:20 -05001760
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -06001761/* Non-fatal error in libpng, chunk name is prepended to message. */
1762extern PNG_EXPORT(void,png_chunk_warning) PNGARG((png_structp png_ptr,
1763 png_const_charp message));
1764
Andreas Dilger47a0c421997-05-16 02:46:07 -05001765/* The png_set_<chunk> functions are for storing values in the png_info_struct.
1766 * Similarly, the png_get_<chunk> calls are used to read values from the
1767 * png_info_struct, either storing the parameters in the passed variables, or
1768 * setting pointers into the png_info_struct where the data is stored. The
1769 * png_get_<chunk> functions return a non-zero value if the data was available
1770 * in info_ptr, or return zero and do not change any of the parameters if the
1771 * data was not available.
1772 *
1773 * These functions should be used instead of directly accessing png_info
1774 * to avoid problems with future changes in the size and internal layout of
1775 * png_info_struct.
1776 */
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001777/* Returns "flag" if chunk data is valid in info_ptr. */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001778extern PNG_EXPORT(png_uint_32,png_get_valid) PNGARG((png_structp png_ptr,
1779png_infop info_ptr, png_uint_32 flag));
1780
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001781/* Returns number of bytes needed to hold a transformed row. */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001782extern PNG_EXPORT(png_uint_32,png_get_rowbytes) PNGARG((png_structp png_ptr,
1783png_infop info_ptr));
1784
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -06001785#if defined(PNG_INFO_IMAGE_SUPPORTED)
1786/* Returns row_pointers, which is an array of pointers to scanlines that was
1787returned from png_read_png(). */
1788extern PNG_EXPORT(png_bytepp,png_get_rows) PNGARG((png_structp png_ptr,
1789png_infop info_ptr));
1790/* Set row_pointers, which is an array of pointers to scanlines for use
1791by png_write_png(). */
1792extern PNG_EXPORT(void,png_set_rows) PNGARG((png_structp png_ptr,
1793 png_infop info_ptr, png_bytepp row_pointers));
1794#endif
1795
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001796/* Returns number of color channels in image. */
Andreas Dilger47a0c421997-05-16 02:46:07 -05001797extern PNG_EXPORT(png_byte,png_get_channels) PNGARG((png_structp png_ptr,
1798png_infop info_ptr));
1799
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001800#ifdef PNG_EASY_ACCESS_SUPPORTED
1801/* Returns image width in pixels. */
1802extern PNG_EXPORT(png_uint_32, png_get_image_width) PNGARG((png_structp
1803png_ptr, png_infop info_ptr));
1804
1805/* Returns image height in pixels. */
1806extern PNG_EXPORT(png_uint_32, png_get_image_height) PNGARG((png_structp
1807png_ptr, png_infop info_ptr));
1808
1809/* Returns image bit_depth. */
1810extern PNG_EXPORT(png_byte, png_get_bit_depth) PNGARG((png_structp
1811png_ptr, png_infop info_ptr));
1812
1813/* Returns image color_type. */
1814extern PNG_EXPORT(png_byte, png_get_color_type) PNGARG((png_structp
1815png_ptr, png_infop info_ptr));
1816
1817/* Returns image filter_type. */
1818extern PNG_EXPORT(png_byte, png_get_filter_type) PNGARG((png_structp
1819png_ptr, png_infop info_ptr));
1820
1821/* Returns image interlace_type. */
1822extern PNG_EXPORT(png_byte, png_get_interlace_type) PNGARG((png_structp
1823png_ptr, png_infop info_ptr));
1824
1825/* Returns image compression_type. */
1826extern PNG_EXPORT(png_byte, png_get_compression_type) PNGARG((png_structp
1827png_ptr, png_infop info_ptr));
1828
1829/* Returns image resolution in pixels per meter, from pHYs chunk data. */
1830extern PNG_EXPORT(png_uint_32, png_get_pixels_per_meter) PNGARG((png_structp
1831png_ptr, png_infop info_ptr));
Glenn Randers-Pehrsoncbe52d81998-02-28 07:00:24 -06001832extern PNG_EXPORT(png_uint_32, png_get_x_pixels_per_meter) PNGARG((png_structp
1833png_ptr, png_infop info_ptr));
1834extern PNG_EXPORT(png_uint_32, png_get_y_pixels_per_meter) PNGARG((png_structp
1835png_ptr, png_infop info_ptr));
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001836
1837/* Returns pixel aspect ratio, computed from pHYs chunk data. */
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001838#ifdef PNG_FLOATING_POINT_SUPPORTED
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001839extern PNG_EXPORT(float, png_get_pixel_aspect_ratio) PNGARG((png_structp
1840png_ptr, png_infop info_ptr));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001841#endif
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001842
1843/* Returns image x, y offset in pixels or microns, from oFFs chunk data. */
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -05001844extern PNG_EXPORT(png_int_32, png_get_x_offset_pixels) PNGARG((png_structp
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001845png_ptr, png_infop info_ptr));
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -05001846extern PNG_EXPORT(png_int_32, png_get_y_offset_pixels) PNGARG((png_structp
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001847png_ptr, png_infop info_ptr));
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -05001848extern PNG_EXPORT(png_int_32, png_get_x_offset_microns) PNGARG((png_structp
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001849png_ptr, png_infop info_ptr));
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -05001850extern PNG_EXPORT(png_int_32, png_get_y_offset_microns) PNGARG((png_structp
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06001851png_ptr, png_infop info_ptr));
1852
1853#endif /* PNG_EASY_ACCESS_SUPPORTED */
1854
Andreas Dilger47a0c421997-05-16 02:46:07 -05001855/* Returns pointer to signature string read from PNG header */
1856extern PNG_EXPORT(png_bytep,png_get_signature) PNGARG((png_structp png_ptr,
1857png_infop info_ptr));
1858
1859#if defined(PNG_READ_bKGD_SUPPORTED)
1860extern PNG_EXPORT(png_uint_32,png_get_bKGD) PNGARG((png_structp png_ptr,
1861 png_infop info_ptr, png_color_16p *background));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001862#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05001863
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001864#if defined(PNG_bKGD_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001865extern PNG_EXPORT(void,png_set_bKGD) PNGARG((png_structp png_ptr,
1866 png_infop info_ptr, png_color_16p background));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001867#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05001868
1869#if defined(PNG_READ_cHRM_SUPPORTED)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001870#ifdef PNG_FLOATING_POINT_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -05001871extern PNG_EXPORT(png_uint_32,png_get_cHRM) PNGARG((png_structp png_ptr,
1872 png_infop info_ptr, double *white_x, double *white_y, double *red_x,
1873 double *red_y, double *green_x, double *green_y, double *blue_x,
1874 double *blue_y));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001875#endif
1876#ifdef PNG_FIXED_POINT_SUPPORTED
1877extern PNG_EXPORT(png_uint_32,png_get_cHRM_fixed) PNGARG((png_structp png_ptr,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001878 png_infop info_ptr, png_fixed_point *int_white_x, png_fixed_point
1879 *int_white_y, png_fixed_point *int_red_x, png_fixed_point *int_red_y,
1880 png_fixed_point *int_green_x, png_fixed_point *int_green_y, png_fixed_point
1881 *int_blue_x, png_fixed_point *int_blue_y));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001882#endif
1883#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05001884
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001885#if defined(PNG_cHRM_SUPPORTED)
1886#ifdef PNG_FLOATING_POINT_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -05001887extern PNG_EXPORT(void,png_set_cHRM) PNGARG((png_structp png_ptr,
1888 png_infop info_ptr, double white_x, double white_y, double red_x,
1889 double red_y, double green_x, double green_y, double blue_x, double blue_y));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001890#endif
1891#ifdef PNG_FIXED_POINT_SUPPORTED
1892extern PNG_EXPORT(void,png_set_cHRM_fixed) PNGARG((png_structp png_ptr,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001893 png_infop info_ptr, png_fixed_point int_white_x, png_fixed_point int_white_y,
1894 png_fixed_point int_red_x, png_fixed_point int_red_y, png_fixed_point
1895 int_green_x, png_fixed_point int_green_y, png_fixed_point int_blue_x,
1896 png_fixed_point int_blue_y));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001897#endif
1898#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05001899
1900#if defined(PNG_READ_gAMA_SUPPORTED)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001901#ifdef PNG_FLOATING_POINT_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -05001902extern PNG_EXPORT(png_uint_32,png_get_gAMA) PNGARG((png_structp png_ptr,
1903 png_infop info_ptr, double *file_gamma));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001904#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001905extern PNG_EXPORT(png_uint_32,png_get_gAMA_fixed) PNGARG((png_structp png_ptr,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001906 png_infop info_ptr, png_fixed_point *int_file_gamma));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001907#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05001908
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001909#if defined(PNG_gAMA_SUPPORTED)
1910#ifdef PNG_FLOATING_POINT_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -05001911extern PNG_EXPORT(void,png_set_gAMA) PNGARG((png_structp png_ptr,
1912 png_infop info_ptr, double file_gamma));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001913#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001914extern PNG_EXPORT(void,png_set_gAMA_fixed) PNGARG((png_structp png_ptr,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06001915 png_infop info_ptr, png_fixed_point int_file_gamma));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001916#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05001917
1918#if defined(PNG_READ_hIST_SUPPORTED)
1919extern PNG_EXPORT(png_uint_32,png_get_hIST) PNGARG((png_structp png_ptr,
1920 png_infop info_ptr, png_uint_16p *hist));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001921#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05001922
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001923#if defined(PNG_hIST_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001924extern PNG_EXPORT(void,png_set_hIST) PNGARG((png_structp png_ptr,
1925 png_infop info_ptr, png_uint_16p hist));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001926#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05001927
1928extern PNG_EXPORT(png_uint_32,png_get_IHDR) PNGARG((png_structp png_ptr,
1929 png_infop info_ptr, png_uint_32 *width, png_uint_32 *height,
1930 int *bit_depth, int *color_type, int *interlace_type,
1931 int *compression_type, int *filter_type));
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06001932
Andreas Dilger47a0c421997-05-16 02:46:07 -05001933extern PNG_EXPORT(void,png_set_IHDR) PNGARG((png_structp png_ptr,
1934 png_infop info_ptr, png_uint_32 width, png_uint_32 height, int bit_depth,
1935 int color_type, int interlace_type, int compression_type, int filter_type));
1936
1937#if defined(PNG_READ_oFFs_SUPPORTED)
1938extern PNG_EXPORT(png_uint_32,png_get_oFFs) PNGARG((png_structp png_ptr,
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001939 png_infop info_ptr, png_int_32 *offset_x, png_int_32 *offset_y,
Andreas Dilger47a0c421997-05-16 02:46:07 -05001940 int *unit_type));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001941#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05001942
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001943#if defined(PNG_oFFs_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001944extern PNG_EXPORT(void,png_set_oFFs) PNGARG((png_structp png_ptr,
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001945 png_infop info_ptr, png_int_32 offset_x, png_int_32 offset_y,
Andreas Dilger47a0c421997-05-16 02:46:07 -05001946 int unit_type));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001947#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05001948
1949#if defined(PNG_READ_pCAL_SUPPORTED)
1950extern PNG_EXPORT(png_uint_32,png_get_pCAL) PNGARG((png_structp png_ptr,
1951 png_infop info_ptr, png_charp *purpose, png_int_32 *X0, png_int_32 *X1,
1952 int *type, int *nparams, png_charp *units, png_charpp *params));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001953#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05001954
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001955#if defined(PNG_pCAL_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001956extern PNG_EXPORT(void,png_set_pCAL) PNGARG((png_structp png_ptr,
1957 png_infop info_ptr, png_charp purpose, png_int_32 X0, png_int_32 X1,
1958 int type, int nparams, png_charp units, png_charpp params));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001959#endif
1960
Andreas Dilger47a0c421997-05-16 02:46:07 -05001961#if defined(PNG_READ_pHYs_SUPPORTED)
1962extern PNG_EXPORT(png_uint_32,png_get_pHYs) PNGARG((png_structp png_ptr,
1963 png_infop info_ptr, png_uint_32 *res_x, png_uint_32 *res_y, int *unit_type));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001964#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05001965
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001966#if defined(PNG_pHYs_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001967extern PNG_EXPORT(void,png_set_pHYs) PNGARG((png_structp png_ptr,
1968 png_infop info_ptr, png_uint_32 res_x, png_uint_32 res_y, int unit_type));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001969#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05001970
1971extern PNG_EXPORT(png_uint_32,png_get_PLTE) PNGARG((png_structp png_ptr,
1972 png_infop info_ptr, png_colorp *palette, int *num_palette));
1973
1974extern PNG_EXPORT(void,png_set_PLTE) PNGARG((png_structp png_ptr,
1975 png_infop info_ptr, png_colorp palette, int num_palette));
1976
1977#if defined(PNG_READ_sBIT_SUPPORTED)
1978extern PNG_EXPORT(png_uint_32,png_get_sBIT) PNGARG((png_structp png_ptr,
1979 png_infop info_ptr, png_color_8p *sig_bit));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001980#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05001981
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001982#if defined(PNG_sBIT_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05001983extern PNG_EXPORT(void,png_set_sBIT) PNGARG((png_structp png_ptr,
1984 png_infop info_ptr, png_color_8p sig_bit));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001985#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05001986
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001987#if defined(PNG_READ_sRGB_SUPPORTED)
1988extern PNG_EXPORT(png_uint_32,png_get_sRGB) PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06001989 png_infop info_ptr, int *intent));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001990#endif
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001991
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001992#if defined(PNG_sRGB_SUPPORTED)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001993extern PNG_EXPORT(void,png_set_sRGB) PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06001994 png_infop info_ptr, int intent));
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001995extern PNG_EXPORT(void,png_set_sRGB_gAMA_and_cHRM) PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06001996 png_infop info_ptr, int intent));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001997#endif
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06001998
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06001999#if defined(PNG_READ_iCCP_SUPPORTED)
2000extern PNG_EXPORT(png_uint_32,png_get_iCCP) PNGARG((png_structp png_ptr,
2001 png_infop info_ptr, png_charpp name, int *compression_type,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002002 png_charpp profile, png_uint_32 *proflen));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002003#endif
2004
2005#if defined(PNG_iCCP_SUPPORTED)
2006extern PNG_EXPORT(void,png_set_iCCP) PNGARG((png_structp png_ptr,
2007 png_infop info_ptr, png_charp name, int compression_type,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002008 png_charp profile, png_uint_32 proflen));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002009#endif
2010
2011#if defined(PNG_READ_sPLT_SUPPORTED)
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -06002012extern PNG_EXPORT(png_uint_32,png_get_sPLT) PNGARG((png_structp png_ptr,
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -06002013 png_infop info_ptr, png_sPLT_tpp entries));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002014#endif
2015
2016#if defined(PNG_sPLT_SUPPORTED)
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -06002017extern PNG_EXPORT(void,png_set_sPLT) PNGARG((png_structp png_ptr,
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -06002018 png_infop info_ptr, png_sPLT_tp entries, int nentries));
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002019#endif
2020
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002021#if defined(PNG_READ_TEXT_SUPPORTED)
2022/* png_get_text also returns the number of text chunks in *num_text */
Andreas Dilger47a0c421997-05-16 02:46:07 -05002023extern PNG_EXPORT(png_uint_32,png_get_text) PNGARG((png_structp png_ptr,
2024 png_infop info_ptr, png_textp *text_ptr, int *num_text));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002025#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05002026
Glenn Randers-Pehrson4accabb2000-04-14 14:20:47 -05002027/*
2028 * Note while png_set_text() will accept a structure whose text,
2029 * language, and translated keywords are NULL pointers, the structure
2030 * returned by png_get_text will always contain regular
2031 * zero-terminated C strings. They might be empty strings but
2032 * they will never be NULL pointers.
2033 */
2034
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002035#if defined(PNG_TEXT_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002036extern PNG_EXPORT(void,png_set_text) PNGARG((png_structp png_ptr,
2037 png_infop info_ptr, png_textp text_ptr, int num_text));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002038#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05002039
2040#if defined(PNG_READ_tIME_SUPPORTED)
2041extern PNG_EXPORT(png_uint_32,png_get_tIME) PNGARG((png_structp png_ptr,
2042 png_infop info_ptr, png_timep *mod_time));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002043#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05002044
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002045#if defined(PNG_tIME_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002046extern PNG_EXPORT(void,png_set_tIME) PNGARG((png_structp png_ptr,
2047 png_infop info_ptr, png_timep mod_time));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002048#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05002049
2050#if defined(PNG_READ_tRNS_SUPPORTED)
2051extern PNG_EXPORT(png_uint_32,png_get_tRNS) PNGARG((png_structp png_ptr,
2052 png_infop info_ptr, png_bytep *trans, int *num_trans,
2053 png_color_16p *trans_values));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002054#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05002055
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002056#if defined(PNG_tRNS_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002057extern PNG_EXPORT(void,png_set_tRNS) PNGARG((png_structp png_ptr,
2058 png_infop info_ptr, png_bytep trans, int num_trans,
2059 png_color_16p trans_values));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002060#endif
2061
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002062#if defined(PNG_tRNS_SUPPORTED)
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002063#endif
2064
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002065#if defined(PNG_READ_sCAL_SUPPORTED)
2066#ifdef PNG_FLOATING_POINT_SUPPORTED
2067extern PNG_EXPORT(png_uint_32,png_get_sCAL) PNGARG((png_structp png_ptr,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002068 png_infop info_ptr, int *unit, double *width, double *height));
2069#else
2070#ifdef PNG_FIXED_POINT_SUPPORTED
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002071extern PNG_EXPORT(png_uint_32,png_get_sCAL_s) PNGARG((png_structp png_ptr,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002072 png_infop info_ptr, int *unit, png_charpp swidth, png_charpp sheight));
2073#endif
2074#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002075#endif /* PNG_READ_sCAL_SUPPORTED */
2076
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002077#if defined(PNG_sCAL_SUPPORTED)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002078#ifdef PNG_FLOATING_POINT_SUPPORTED
2079extern PNG_EXPORT(void,png_set_sCAL) PNGARG((png_structp png_ptr,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002080 png_infop info_ptr, int unit, double width, double height));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002081#endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002082#ifdef PNG_FIXED_POINT_SUPPORTED
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002083extern PNG_EXPORT(void,png_set_sCAL_s) PNGARG((png_structp png_ptr,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002084 png_infop info_ptr, int unit, png_charp swidth, png_charp sheight));
2085#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002086#endif /* PNG_READ_sCAL_SUPPORTED || PNG_WRITE_sCAL_SUPPORTED */
2087
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002088#if defined(PNG_UNKNOWN_CHUNKS_SUPPORTED)
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002089/* provide a list of chunks and how they are to be handled, if the built-in
2090 handling or default unknown chunk handling is not desired. Any chunks not
2091 listed will be handled in the default manner. The IHDR and IEND chunks
2092 must not be listed.
2093 keep = 0: follow default behavour
2094 = 1: do not keep
2095 = 2: keep only if safe-to-copy
2096 = 3: keep even if unsafe-to-copy
2097*/
2098extern PNG_EXPORT(void, png_set_keep_unknown_chunks) PNGARG((png_structp
2099 png_ptr, int keep, png_bytep chunk_list, int num_chunks));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002100extern PNG_EXPORT(void, png_set_unknown_chunks) PNGARG((png_structp png_ptr,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002101 png_infop info_ptr, png_unknown_chunkp unknowns, int num_unknowns));
Glenn Randers-Pehrson228bd392000-04-23 23:14:02 -05002102extern PNG_EXPORT(void, png_set_unknown_chunk_location)
2103 PNGARG((png_structp png_ptr, png_infop info_ptr, int chunk, int location));
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002104extern PNG_EXPORT(png_uint_32,png_get_unknown_chunks) PNGARG((png_structp
2105 png_ptr, png_infop info_ptr, png_unknown_chunkpp entries));
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002106#endif
2107
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -05002108/* Png_free_data() will turn off the "valid" flag for anything it frees.
2109 If you need to turn it off for a chunk that your application has freed,
2110 you can use png_set_invalid(png_ptr, info_ptr, PNG_INFO_CHNK); */
2111extern PNG_EXPORT(void, png_set_invalid) PNGARG((png_structp png_ptr,
2112 png_infop info_ptr, int mask));
2113
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002114#if defined(PNG_INFO_IMAGE_SUPPORTED)
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05002115/* The "params" pointer is currently not used and is for future expansion. */
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002116extern PNG_EXPORT(void, png_read_png) PNGARG((png_structp png_ptr,
2117 png_infop info_ptr,
2118 int transforms,
2119 voidp params));
2120extern PNG_EXPORT(void, png_write_png) PNGARG((png_structp png_ptr,
2121 png_infop info_ptr,
2122 int transforms,
2123 voidp params));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002124#endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05002125
2126/* Define PNG_DEBUG at compile time for debugging information. Higher
2127 * numbers for PNG_DEBUG mean more debugging information. This has
2128 * only been added since version 0.95 so it is not implemented throughout
2129 * libpng yet, but more support will be added as needed.
2130 */
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06002131#ifdef PNG_DEBUG
Andreas Dilger47a0c421997-05-16 02:46:07 -05002132#if (PNG_DEBUG > 0)
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -05002133#if !defined(PNG_DEBUG_FILE) && defined(_MSC_VER)
2134#include <crtdbg.h>
2135#define png_debug(l,m) if (PNG_DEBUG > l) _RPT0(_CRT_WARN,m)
2136#define png_debug1(l,m,p1) if (PNG_DEBUG > l) _RPT1(_CRT_WARN,m,p1)
2137#define png_debug2(l,m,p1,p2) if (PNG_DEBUG > l) _RPT2(_CRT_WARN,m,p1,p2)
2138#else /* PNG_DEBUG_FILE || !_MSC_VER */
Andreas Dilger47a0c421997-05-16 02:46:07 -05002139#ifndef PNG_DEBUG_FILE
2140#define PNG_DEBUG_FILE stderr
2141#endif /* PNG_DEBUG_FILE */
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -05002142#define png_debug(l,m) \
2143 if (PNG_DEBUG > l) \
2144 fprintf(PNG_DEBUG_FILE,"%s"m,(l==1 ? "\t" : \
2145 (l==2 ? "\t\t":(l>2 ? "\t\t\t":""))))
2146#define png_debug1(l,m,p1) \
2147 if (PNG_DEBUG > l) \
2148 fprintf(PNG_DEBUG_FILE,"%s"m,(l==1 ? "\t" : \
2149 (l==2 ? "\t\t":(l>2 ? "\t\t\t":""))),p1)
2150#define png_debug2(l,m,p1,p2) \
2151 if (PNG_DEBUG > l) \
2152 fprintf(PNG_DEBUG_FILE,"%s"m,(l==1 ? "\t" : \
2153 (l==2 ? "\t\t":(l>2 ? "\t\t\t":""))),p1,p2)
2154#endif /* _MSC_VER */
Andreas Dilger47a0c421997-05-16 02:46:07 -05002155#endif /* (PNG_DEBUG > 0) */
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06002156#endif /* PNG_DEBUG */
2157#ifndef png_debug
2158#define png_debug(l, m)
2159#endif
2160#ifndef png_debug1
2161#define png_debug1(l, m, p1)
2162#endif
2163#ifndef png_debug2
2164#define png_debug2(l, m, p1, p2)
2165#endif
2166
Glenn Randers-Pehrson81fdf8a2000-04-07 10:34:56 -05002167extern PNG_EXPORT(png_bytep,png_sig_bytes) PNGARG((void));
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06002168
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06002169extern PNG_EXPORT(png_charp,png_get_copyright) PNGARG((png_structp png_ptr));
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06002170extern PNG_EXPORT(png_charp,png_get_header_ver) PNGARG((png_structp png_ptr));
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06002171extern PNG_EXPORT(png_charp,png_get_header_version) PNGARG((png_structp png_ptr));
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06002172extern PNG_EXPORT(png_charp,png_get_libpng_ver) PNGARG((png_structp png_ptr));
Glenn Randers-Pehrsonc9442291999-01-06 21:50:16 -06002173
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002174#define PNG_HEADER_VERSION_STRING \
Glenn Randers-Pehrson15dac0b2000-07-10 07:48:54 -05002175 " libpng version 1.0.8beta2 - July 10, 2000 (header)\n"
Andreas Dilger47a0c421997-05-16 02:46:07 -05002176
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002177#ifdef PNG_READ_COMPOSITE_NODIV_SUPPORTED
Glenn Randers-Pehrson8686fff1998-05-21 09:27:50 -05002178/* With these routines we avoid an integer divide, which will be slower on
2179 * most machines. However, it does take more operations than the corresponding
2180 * divide method, so it may be slower on a few RISC systems. There are two
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002181 * shifts (by 8 or 16 bits) and an addition, versus a single integer divide.
2182 *
2183 * Note that the rounding factors are NOT supposed to be the same! 128 and
2184 * 32768 are correct for the NODIV code; 127 and 32767 are correct for the
2185 * standard method.
2186 *
2187 * [Optimized code by Greg Roelofs and Mark Adler...blame us for bugs. :-) ]
2188 */
2189
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06002190 /* fg and bg should be in `gamma 1.0' space; alpha is the opacity */
2191
2192# define png_composite(composite, fg, alpha, bg) \
Glenn Randers-Pehrson860ab2b1999-10-14 07:43:10 -05002193 { png_uint_16 temp = (png_uint_16)((png_uint_16)(fg) * (png_uint_16)(alpha) \
2194 + (png_uint_16)(bg)*(png_uint_16)(255 - \
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06002195 (png_uint_16)(alpha)) + (png_uint_16)128); \
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002196 (composite) = (png_byte)((temp + (temp >> 8)) >> 8); }
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06002197
2198# define png_composite_16(composite, fg, alpha, bg) \
Glenn Randers-Pehrson860ab2b1999-10-14 07:43:10 -05002199 { png_uint_32 temp = (png_uint_32)((png_uint_32)(fg) * (png_uint_32)(alpha) \
2200 + (png_uint_32)(bg)*(png_uint_32)(65535L - \
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06002201 (png_uint_32)(alpha)) + (png_uint_32)32768L); \
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002202 (composite) = (png_uint_16)((temp + (temp >> 16)) >> 16); }
2203
2204#else /* standard method using integer division */
2205
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06002206# define png_composite(composite, fg, alpha, bg) \
2207 (composite) = (png_byte)(((png_uint_16)(fg) * (png_uint_16)(alpha) + \
2208 (png_uint_16)(bg) * (png_uint_16)(255 - (png_uint_16)(alpha)) + \
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002209 (png_uint_16)127) / 255)
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06002210
2211# define png_composite_16(composite, fg, alpha, bg) \
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002212 (composite) = (png_uint_16)(((png_uint_32)(fg) * (png_uint_32)(alpha) + \
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06002213 (png_uint_32)(bg)*(png_uint_32)(65535L - (png_uint_32)(alpha)) + \
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -05002214 (png_uint_32)32767) / (png_uint_32)65535L)
2215
2216#endif /* PNG_READ_COMPOSITE_NODIV_SUPPORTED */
2217
Andreas Dilger47a0c421997-05-16 02:46:07 -05002218/* These next functions are used internally in the code. They generally
2219 * shouldn't be used unless you are writing code to add or replace some
2220 * functionality in libpng. More information about most functions can
2221 * be found in the files where the functions are located.
2222 */
Guy Schalnat0d580581995-07-20 02:43:20 -05002223
Guy Schalnate5a37791996-06-05 15:50:50 -05002224#if defined(PNG_INTERNAL)
Guy Schalnat0d580581995-07-20 02:43:20 -05002225
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06002226/* Various modes of operation. Note that after an init, mode is set to
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06002227 * zero automatically when the structure is created.
2228 */
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06002229#define PNG_HAVE_IHDR 0x01
2230#define PNG_HAVE_PLTE 0x02
2231#define PNG_HAVE_IDAT 0x04
2232#define PNG_AFTER_IDAT 0x08
2233#define PNG_HAVE_IEND 0x10
2234#define PNG_HAVE_gAMA 0x20
2235#define PNG_HAVE_cHRM 0x40
2236#define PNG_HAVE_sRGB 0x80
2237#define PNG_HAVE_CHUNK_HEADER 0x100
2238#define PNG_WROTE_tIME 0x200
2239#define PNG_WROTE_INFO_BEFORE_PLTE 0x400
2240#define PNG_BACKGROUND_IS_GRAY 0x800
Guy Schalnat0d580581995-07-20 02:43:20 -05002241
Andreas Dilger47a0c421997-05-16 02:46:07 -05002242/* flags for the transformations the PNG library does on the image data */
Guy Schalnate5a37791996-06-05 15:50:50 -05002243#define PNG_BGR 0x0001
2244#define PNG_INTERLACE 0x0002
2245#define PNG_PACK 0x0004
2246#define PNG_SHIFT 0x0008
2247#define PNG_SWAP_BYTES 0x0010
2248#define PNG_INVERT_MONO 0x0020
2249#define PNG_DITHER 0x0040
2250#define PNG_BACKGROUND 0x0080
2251#define PNG_BACKGROUND_EXPAND 0x0100
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06002252 /* 0x0200 unused */
Guy Schalnate5a37791996-06-05 15:50:50 -05002253#define PNG_16_TO_8 0x0400
2254#define PNG_RGBA 0x0800
2255#define PNG_EXPAND 0x1000
2256#define PNG_GAMMA 0x2000
2257#define PNG_GRAY_TO_RGB 0x4000
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002258#define PNG_FILLER 0x8000L
Glenn Randers-Pehrson397100e1998-03-07 19:45:37 -06002259#define PNG_PACKSWAP 0x10000L
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06002260#define PNG_SWAP_ALPHA 0x20000L
2261#define PNG_STRIP_ALPHA 0x40000L
2262#define PNG_INVERT_ALPHA 0x80000L
Glenn Randers-Pehrson397100e1998-03-07 19:45:37 -06002263#define PNG_USER_TRANSFORM 0x100000L
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06002264#define PNG_RGB_TO_GRAY_ERR 0x200000L
2265#define PNG_RGB_TO_GRAY_WARN 0x400000L
2266#define PNG_RGB_TO_GRAY 0x600000L /* two bits, RGB_TO_GRAY_ERR|WARN */
Guy Schalnate5a37791996-06-05 15:50:50 -05002267
Guy Schalnate5a37791996-06-05 15:50:50 -05002268/* flags for png_create_struct */
2269#define PNG_STRUCT_PNG 0x0001
2270#define PNG_STRUCT_INFO 0x0002
2271
Andreas Dilger47a0c421997-05-16 02:46:07 -05002272/* Scaling factor for filter heuristic weighting calculations */
2273#define PNG_WEIGHT_SHIFT 8
2274#define PNG_WEIGHT_FACTOR (1<<(PNG_WEIGHT_SHIFT))
2275#define PNG_COST_SHIFT 3
2276#define PNG_COST_FACTOR (1<<(PNG_COST_SHIFT))
2277
2278/* flags for the png_ptr->flags rather than declaring a byte for each one */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06002279#define PNG_FLAG_ZLIB_CUSTOM_STRATEGY 0x0001
2280#define PNG_FLAG_ZLIB_CUSTOM_LEVEL 0x0002
2281#define PNG_FLAG_ZLIB_CUSTOM_MEM_LEVEL 0x0004
2282#define PNG_FLAG_ZLIB_CUSTOM_WINDOW_BITS 0x0008
2283#define PNG_FLAG_ZLIB_CUSTOM_METHOD 0x0010
2284#define PNG_FLAG_ZLIB_FINISHED 0x0020
2285#define PNG_FLAG_ROW_INIT 0x0040
2286#define PNG_FLAG_FILLER_AFTER 0x0080
2287#define PNG_FLAG_CRC_ANCILLARY_USE 0x0100
2288#define PNG_FLAG_CRC_ANCILLARY_NOWARN 0x0200
2289#define PNG_FLAG_CRC_CRITICAL_USE 0x0400
2290#define PNG_FLAG_CRC_CRITICAL_IGNORE 0x0800
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -05002291#define PNG_FLAG_FREE_PLTE 0x1000
2292#define PNG_FLAG_FREE_TRNS 0x2000
2293#define PNG_FLAG_FREE_HIST 0x4000
2294#define PNG_FLAG_KEEP_UNKNOWN_CHUNKS 0x8000L
2295#define PNG_FLAG_KEEP_UNSAFE_CHUNKS 0x10000L
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05002296#define PNG_FLAG_LIBRARY_MISMATCH 0x20000L
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06002297
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002298/* For use in png_set_keep_unknown, png_handle_as_unknown */
2299#define HANDLE_CHUNK_AS_DEFAULT 0
2300#define HANDLE_CHUNK_NEVER 1
2301#define HANDLE_CHUNK_IF_SAFE 2
2302#define HANDLE_CHUNK_ALWAYS 3
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06002303
2304#define PNG_FLAG_CRC_ANCILLARY_MASK (PNG_FLAG_CRC_ANCILLARY_USE | \
2305 PNG_FLAG_CRC_ANCILLARY_NOWARN)
2306
2307#define PNG_FLAG_CRC_CRITICAL_MASK (PNG_FLAG_CRC_CRITICAL_USE | \
2308 PNG_FLAG_CRC_CRITICAL_IGNORE)
2309
2310#define PNG_FLAG_CRC_MASK (PNG_FLAG_CRC_ANCILLARY_MASK | \
2311 PNG_FLAG_CRC_CRITICAL_MASK)
Guy Schalnat0d580581995-07-20 02:43:20 -05002312
2313/* save typing and make code easier to understand */
2314#define PNG_COLOR_DIST(c1, c2) (abs((int)((c1).red) - (int)((c2).red)) + \
2315 abs((int)((c1).green) - (int)((c2).green)) + \
2316 abs((int)((c1).blue) - (int)((c2).blue)))
2317
Andreas Dilger47a0c421997-05-16 02:46:07 -05002318/* variables declared in png.c - only it needs to define PNG_NO_EXTERN */
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06002319#if !defined(PNG_NO_EXTERN) || defined(PNG_ALWAYS_EXTERN)
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06002320/* place to hold the signature string for a PNG file. */
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06002321#ifdef PNG_USE_GLOBAL_ARRAYS
2322 PNG_EXPORT_VAR (png_byte FARDATA) png_sig[8];
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -06002323#else
2324#define png_sig png_sig_bytes(NULL)
2325#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002326#endif /* PNG_NO_EXTERN */
Guy Schalnat0d580581995-07-20 02:43:20 -05002327
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06002328/* Constant strings for known chunk types. If you need to add a chunk,
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06002329 * define the name here, and add an invocation of the macro in png.c and
2330 * wherever it's needed.
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06002331 */
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06002332#define PNG_IHDR const png_byte png_IHDR[5] = { 73, 72, 68, 82, '\0'}
2333#define PNG_IDAT const png_byte png_IDAT[5] = { 73, 68, 65, 84, '\0'}
2334#define PNG_IEND const png_byte png_IEND[5] = { 73, 69, 78, 68, '\0'}
2335#define PNG_PLTE const png_byte png_PLTE[5] = { 80, 76, 84, 69, '\0'}
2336#define PNG_bKGD const png_byte png_bKGD[5] = { 98, 75, 71, 68, '\0'}
2337#define PNG_cHRM const png_byte png_cHRM[5] = { 99, 72, 82, 77, '\0'}
2338#define PNG_gAMA const png_byte png_gAMA[5] = {103, 65, 77, 65, '\0'}
2339#define PNG_hIST const png_byte png_hIST[5] = {104, 73, 83, 84, '\0'}
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002340#define PNG_iCCP const png_byte png_iCCP[5] = {105, 67, 67, 80, '\0'}
2341#define PNG_iTXt const png_byte png_iTXt[5] = {105, 84, 88, 116, '\0'}
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06002342#define PNG_oFFs const png_byte png_oFFs[5] = {111, 70, 70, 115, '\0'}
2343#define PNG_pCAL const png_byte png_pCAL[5] = {112, 67, 65, 76, '\0'}
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002344#define PNG_sCAL const png_byte png_sCAL[5] = {115, 67, 65, 76, '\0'}
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06002345#define PNG_pHYs const png_byte png_pHYs[5] = {112, 72, 89, 115, '\0'}
2346#define PNG_sBIT const png_byte png_sBIT[5] = {115, 66, 73, 84, '\0'}
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002347#define PNG_sPLT const png_byte png_sPLT[5] = {115, 80, 76, 84, '\0'}
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06002348#define PNG_sRGB const png_byte png_sRGB[5] = {115, 82, 71, 66, '\0'}
2349#define PNG_tEXt const png_byte png_tEXt[5] = {116, 69, 88, 116, '\0'}
2350#define PNG_tIME const png_byte png_tIME[5] = {116, 73, 77, 69, '\0'}
2351#define PNG_tRNS const png_byte png_tRNS[5] = {116, 82, 78, 83, '\0'}
2352#define PNG_zTXt const png_byte png_zTXt[5] = {122, 84, 88, 116, '\0'}
2353
2354#ifdef PNG_USE_GLOBAL_ARRAYS
2355PNG_EXPORT_VAR (const png_byte FARDATA) png_IHDR[5];
2356PNG_EXPORT_VAR (const png_byte FARDATA) png_IDAT[5];
2357PNG_EXPORT_VAR (const png_byte FARDATA) png_IEND[5];
2358PNG_EXPORT_VAR (const png_byte FARDATA) png_PLTE[5];
2359PNG_EXPORT_VAR (const png_byte FARDATA) png_bKGD[5];
2360PNG_EXPORT_VAR (const png_byte FARDATA) png_cHRM[5];
2361PNG_EXPORT_VAR (const png_byte FARDATA) png_gAMA[5];
2362PNG_EXPORT_VAR (const png_byte FARDATA) png_hIST[5];
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002363PNG_EXPORT_VAR (const png_byte FARDATA) png_iCCP[5];
2364PNG_EXPORT_VAR (const png_byte FARDATA) png_iTXt[5];
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06002365PNG_EXPORT_VAR (const png_byte FARDATA) png_oFFs[5];
2366PNG_EXPORT_VAR (const png_byte FARDATA) png_pCAL[5];
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002367PNG_EXPORT_VAR (const png_byte FARDATA) png_sCAL[5];
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06002368PNG_EXPORT_VAR (const png_byte FARDATA) png_pHYs[5];
2369PNG_EXPORT_VAR (const png_byte FARDATA) png_sBIT[5];
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002370PNG_EXPORT_VAR (const png_byte FARDATA) png_sPLT[5];
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -06002371PNG_EXPORT_VAR (const png_byte FARDATA) png_sRGB[5];
2372PNG_EXPORT_VAR (const png_byte FARDATA) png_tEXt[5];
2373PNG_EXPORT_VAR (const png_byte FARDATA) png_tIME[5];
2374PNG_EXPORT_VAR (const png_byte FARDATA) png_tRNS[5];
2375PNG_EXPORT_VAR (const png_byte FARDATA) png_zTXt[5];
2376#endif /* PNG_USE_GLOBAL_ARRAYS */
Guy Schalnat0d580581995-07-20 02:43:20 -05002377
Guy Schalnat0d580581995-07-20 02:43:20 -05002378
Andreas Dilger47a0c421997-05-16 02:46:07 -05002379/* Inline macros to do direct reads of bytes from the input buffer. These
2380 * require that you are using an architecture that uses PNG byte ordering
2381 * (MSB first) and supports unaligned data storage. I think that PowerPC
2382 * in big-endian mode and 680x0 are the only ones that will support this.
2383 * The x86 line of processors definitely do not. The png_get_int_32()
2384 * routine also assumes we are using two's complement format for negative
2385 * values, which is almost certainly true.
2386 */
2387#if defined(PNG_READ_BIG_ENDIAN_SUPPORTED)
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002388# if defined(PNG_READ_pCAL_SUPPORTED) || defined(PNG_READ_oFFs_SUPPORTED)
2389# define png_get_int_32(buf) ( *((png_int_32p) (buf)))
2390# endif
2391# define png_get_uint_32(buf) ( *((png_uint_32p) (buf)))
2392# define png_get_uint_16(buf) ( *((png_uint_16p) (buf)))
Andreas Dilger47a0c421997-05-16 02:46:07 -05002393#else
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002394# if defined(PNG_READ_pCAL_SUPPORTED) || defined(PNG_READ_oFFs_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002395PNG_EXTERN png_int_32 png_get_int_32 PNGARG((png_bytep buf));
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002396# endif
Andreas Dilger47a0c421997-05-16 02:46:07 -05002397PNG_EXTERN png_uint_32 png_get_uint_32 PNGARG((png_bytep buf));
2398PNG_EXTERN png_uint_16 png_get_uint_16 PNGARG((png_bytep buf));
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002399#endif /* !PNG_READ_BIG_ENDIAN_SUPPORTED */
Andreas Dilger47a0c421997-05-16 02:46:07 -05002400
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06002401/* Initialize png_ptr struct for reading, and allocate any other memory.
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05002402 * (old interface - DEPRECATED).
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06002403 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05002404extern PNG_EXPORT(void,png_read_init) PNGARG((png_structp png_ptr));
Glenn Randers-Pehrson98c9d732000-05-03 21:06:11 -05002405#define png_read_init(png_ptr) png_read_init_2(png_ptr, \
2406 PNG_LIBPNG_VER_STRING, sizeof(png_struct), sizeof(png_info));
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05002407extern PNG_EXPORT(void,png_read_init_2) PNGARG((png_structp png_ptr,
Glenn Randers-Pehrson98c9d732000-05-03 21:06:11 -05002408 png_const_charp user_png_ver, png_size_t png_struct_size, png_size_t
2409 png_info_size));
Andreas Dilger47a0c421997-05-16 02:46:07 -05002410
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06002411/* Initialize png_ptr struct for writing, and allocate any other memory.
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05002412 * (old interface - DEPRECATED).
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06002413 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05002414extern PNG_EXPORT(void,png_write_init) PNGARG((png_structp png_ptr));
Glenn Randers-Pehrson98c9d732000-05-03 21:06:11 -05002415#define png_write_init(png_ptr) png_write_init_2(png_ptr, \
2416 PNG_LIBPNG_VER_STRING, sizeof(png_struct), sizeof(png_info));
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -05002417extern PNG_EXPORT(void,png_write_init_2) PNGARG((png_structp png_ptr,
Glenn Randers-Pehrson98c9d732000-05-03 21:06:11 -05002418 png_const_charp user_png_ver, png_size_t png_struct_size, png_size_t
2419 png_info_size));
Andreas Dilger47a0c421997-05-16 02:46:07 -05002420
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002421/* Allocate memory for an internal libpng struct */
Andreas Dilger47a0c421997-05-16 02:46:07 -05002422PNG_EXTERN png_voidp png_create_struct PNGARG((int type));
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06002423
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002424/* Free memory from internal libpng struct */
Andreas Dilger47a0c421997-05-16 02:46:07 -05002425PNG_EXTERN void png_destroy_struct PNGARG((png_voidp struct_ptr));
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06002426
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -05002427PNG_EXTERN png_voidp png_create_struct_2 PNGARG((int type, png_malloc_ptr
2428 malloc_fn));
2429PNG_EXTERN void png_destroy_struct_2 PNGARG((png_voidp struct_ptr,
2430 png_free_ptr free_fn));
2431
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002432/* Free any memory that info_ptr points to and reset struct. */
Andreas Dilger47a0c421997-05-16 02:46:07 -05002433PNG_EXTERN void png_info_destroy PNGARG((png_structp png_ptr,
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06002434 png_infop info_ptr));
2435
Guy Schalnat0d580581995-07-20 02:43:20 -05002436/* Function to allocate memory for zlib. */
Andreas Dilger47a0c421997-05-16 02:46:07 -05002437PNG_EXTERN voidpf png_zalloc PNGARG((voidpf png_ptr, uInt items, uInt size));
Guy Schalnat0d580581995-07-20 02:43:20 -05002438
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002439/* Function to free memory for zlib */
Andreas Dilger47a0c421997-05-16 02:46:07 -05002440PNG_EXTERN void png_zfree PNGARG((voidpf png_ptr, voidpf ptr));
Guy Schalnat0d580581995-07-20 02:43:20 -05002441
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002442/* Reset the CRC variable */
Andreas Dilger47a0c421997-05-16 02:46:07 -05002443PNG_EXTERN void png_reset_crc PNGARG((png_structp png_ptr));
2444
2445/* Write the "data" buffer to whatever output you are using. */
2446PNG_EXTERN void png_write_data PNGARG((png_structp png_ptr, png_bytep data,
2447 png_size_t length));
2448
2449/* Read data from whatever input you are using into the "data" buffer */
2450PNG_EXTERN void png_read_data PNGARG((png_structp png_ptr, png_bytep data,
2451 png_size_t length));
Guy Schalnat0d580581995-07-20 02:43:20 -05002452
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002453/* Read bytes into buf, and update png_ptr->crc */
Andreas Dilger47a0c421997-05-16 02:46:07 -05002454PNG_EXTERN void png_crc_read PNGARG((png_structp png_ptr, png_bytep buf,
2455 png_size_t length));
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06002456
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002457/* Decompress data in a chunk that uses compression */
2458#if defined(PNG_READ_zTXt_SUPPORTED) || defined(PNG_READ_iTXt_SUPPORTED) || \
2459 defined(PNG_READ_iCCP_SUPPORTED) || defined(PNG_READ_sPLT_SUPPORTED)
2460PNG_EXTERN png_charp png_decompress_chunk PNGARG((png_structp png_ptr,
2461 int comp_type, png_charp chunkdata, png_size_t chunklength,
Glenn Randers-Pehrson68ea2432000-04-01 21:10:05 -06002462 png_size_t prefix_length, png_size_t *data_length));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002463#endif
2464
2465/* Read "skip" bytes, read the file crc, and (optionally) verify png_ptr->crc */
Andreas Dilger47a0c421997-05-16 02:46:07 -05002466PNG_EXTERN int png_crc_finish PNGARG((png_structp png_ptr, png_uint_32 skip));
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06002467
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002468/* Read the CRC from the file and compare it to the libpng calculated CRC */
Andreas Dilger47a0c421997-05-16 02:46:07 -05002469PNG_EXTERN int png_crc_error PNGARG((png_structp png_ptr));
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06002470
Andreas Dilger47a0c421997-05-16 02:46:07 -05002471/* Calculate the CRC over a section of data. Note that we are only
2472 * passing a maximum of 64K on systems that have this as a memory limit,
2473 * since this is the maximum buffer size we can specify.
2474 */
2475PNG_EXTERN void png_calculate_crc PNGARG((png_structp png_ptr, png_bytep ptr,
2476 png_size_t length));
Guy Schalnat6d764711995-12-19 03:22:19 -06002477
Guy Schalnat6d764711995-12-19 03:22:19 -06002478#if defined(PNG_WRITE_FLUSH_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002479PNG_EXTERN void png_flush PNGARG((png_structp png_ptr));
Guy Schalnat6d764711995-12-19 03:22:19 -06002480#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05002481
Andreas Dilger47a0c421997-05-16 02:46:07 -05002482/* Place a 32-bit number into a buffer in PNG byte order (big-endian).
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06002483 * The only currently known PNG chunks that use signed numbers are
2484 * the ancillary extension chunks, oFFs and pCAL.
Andreas Dilger47a0c421997-05-16 02:46:07 -05002485 */
2486PNG_EXTERN void png_save_uint_32 PNGARG((png_bytep buf, png_uint_32 i));
Guy Schalnat0d580581995-07-20 02:43:20 -05002487
Andreas Dilger47a0c421997-05-16 02:46:07 -05002488#if defined(PNG_WRITE_pCAL_SUPPORTED)
2489PNG_EXTERN void png_save_int_32 PNGARG((png_bytep buf, png_int_32 i));
2490#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05002491
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05002492/* Place a 16-bit number into a buffer in PNG byte order.
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06002493 * The parameter is declared unsigned int, not png_uint_16,
2494 * just to avoid potential problems on pre-ANSI C compilers.
2495 */
2496PNG_EXTERN void png_save_uint_16 PNGARG((png_bytep buf, unsigned int i));
Guy Schalnat0d580581995-07-20 02:43:20 -05002497
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -06002498/* simple function to write the signature */
Andreas Dilger47a0c421997-05-16 02:46:07 -05002499PNG_EXTERN void png_write_sig PNGARG((png_structp png_ptr));
Guy Schalnat0d580581995-07-20 02:43:20 -05002500
2501/* write various chunks */
2502
2503/* Write the IHDR chunk, and update the png_struct with the necessary
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06002504 * information.
2505 */
Andreas Dilger47a0c421997-05-16 02:46:07 -05002506PNG_EXTERN void png_write_IHDR PNGARG((png_structp png_ptr, png_uint_32 width,
Guy Schalnat4ee97b01996-01-16 01:51:56 -06002507 png_uint_32 height,
2508 int bit_depth, int color_type, int compression_type, int filter_type,
2509 int interlace_type));
Guy Schalnat0d580581995-07-20 02:43:20 -05002510
Andreas Dilger47a0c421997-05-16 02:46:07 -05002511PNG_EXTERN void png_write_PLTE PNGARG((png_structp png_ptr, png_colorp palette,
2512 png_uint_32 num_pal));
Guy Schalnat0d580581995-07-20 02:43:20 -05002513
Andreas Dilger47a0c421997-05-16 02:46:07 -05002514PNG_EXTERN void png_write_IDAT PNGARG((png_structp png_ptr, png_bytep data,
2515 png_size_t length));
Guy Schalnat0d580581995-07-20 02:43:20 -05002516
Andreas Dilger47a0c421997-05-16 02:46:07 -05002517PNG_EXTERN void png_write_IEND PNGARG((png_structp png_ptr));
Guy Schalnat0d580581995-07-20 02:43:20 -05002518
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002519#if defined(PNG_WRITE_gAMA_SUPPORTED)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002520#ifdef PNG_FLOATING_POINT_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -05002521PNG_EXTERN void png_write_gAMA PNGARG((png_structp png_ptr, double file_gamma));
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002522#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002523#ifdef PNG_FIXED_POINT_SUPPORTED
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002524PNG_EXTERN void png_write_gAMA_fixed PNGARG((png_structp png_ptr, png_fixed_point
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002525 file_gamma));
2526#endif
2527#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05002528
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002529#if defined(PNG_WRITE_sBIT_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002530PNG_EXTERN void png_write_sBIT PNGARG((png_structp png_ptr, png_color_8p sbit,
Guy Schalnat4ee97b01996-01-16 01:51:56 -06002531 int color_type));
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002532#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05002533
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002534#if defined(PNG_WRITE_cHRM_SUPPORTED)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002535#ifdef PNG_FLOATING_POINT_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -05002536PNG_EXTERN void png_write_cHRM PNGARG((png_structp png_ptr,
Guy Schalnat4ee97b01996-01-16 01:51:56 -06002537 double white_x, double white_y,
2538 double red_x, double red_y, double green_x, double green_y,
2539 double blue_x, double blue_y));
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002540#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002541#ifdef PNG_FIXED_POINT_SUPPORTED
2542PNG_EXTERN void png_write_cHRM_fixed PNGARG((png_structp png_ptr,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002543 png_fixed_point int_white_x, png_fixed_point int_white_y,
2544 png_fixed_point int_red_x, png_fixed_point int_red_y, png_fixed_point
2545 int_green_x, png_fixed_point int_green_y, png_fixed_point int_blue_x,
2546 png_fixed_point int_blue_y));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002547#endif
2548#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05002549
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06002550#if defined(PNG_WRITE_sRGB_SUPPORTED)
2551PNG_EXTERN void png_write_sRGB PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06002552 int intent));
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06002553#endif
2554
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002555#if defined(PNG_WRITE_iCCP_SUPPORTED)
2556PNG_EXTERN void png_write_iCCP PNGARG((png_structp png_ptr,
2557 png_charp name, int compression_type,
2558 png_charp profile, int proflen));
2559#endif
2560
2561#if defined(PNG_WRITE_sPLT_SUPPORTED)
2562PNG_EXTERN void png_write_sPLT PNGARG((png_structp png_ptr,
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -06002563 png_sPLT_tp palette));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002564#endif
2565
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002566#if defined(PNG_WRITE_tRNS_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002567PNG_EXTERN void png_write_tRNS PNGARG((png_structp png_ptr, png_bytep trans,
Guy Schalnat4ee97b01996-01-16 01:51:56 -06002568 png_color_16p values, int number, int color_type));
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002569#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05002570
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002571#if defined(PNG_WRITE_bKGD_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002572PNG_EXTERN void png_write_bKGD PNGARG((png_structp png_ptr,
2573 png_color_16p values, int color_type));
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002574#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05002575
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002576#if defined(PNG_WRITE_hIST_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002577PNG_EXTERN void png_write_hIST PNGARG((png_structp png_ptr, png_uint_16p hist,
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -06002578 int num_hist));
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002579#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05002580
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002581#if defined(PNG_WRITE_TEXT_SUPPORTED) || defined(PNG_WRITE_pCAL_SUPPORTED) || \
2582 defined(PNG_WRITE_iCCP_SUPPORTED) || defined(PNG_WRITE_sPLT_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002583PNG_EXTERN png_size_t png_check_keyword PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06002584 png_charp key, png_charpp new_key));
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06002585#endif
2586
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002587#if defined(PNG_WRITE_tEXt_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002588PNG_EXTERN void png_write_tEXt PNGARG((png_structp png_ptr, png_charp key,
2589 png_charp text, png_size_t text_len));
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002590#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05002591
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002592#if defined(PNG_WRITE_zTXt_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002593PNG_EXTERN void png_write_zTXt PNGARG((png_structp png_ptr, png_charp key,
2594 png_charp text, png_size_t text_len, int compression));
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002595#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05002596
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002597#if defined(PNG_WRITE_iTXt_SUPPORTED)
2598PNG_EXTERN void png_write_iTXt PNGARG((png_structp png_ptr,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002599 int compression, png_charp key, png_charp lang, png_charp lang_key,
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002600 png_charp text));
2601#endif
2602
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002603#if defined(PNG_WRITE_oFFs_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002604PNG_EXTERN void png_write_oFFs PNGARG((png_structp png_ptr,
2605 png_uint_32 x_offset, png_uint_32 y_offset, int unit_type));
2606#endif
2607
2608#if defined(PNG_WRITE_pCAL_SUPPORTED)
2609PNG_EXTERN void png_write_pCAL PNGARG((png_structp png_ptr, png_charp purpose,
2610 png_int_32 X0, png_int_32 X1, int type, int nparams,
2611 png_charp units, png_charpp params));
2612#endif
2613
2614#if defined(PNG_WRITE_pHYs_SUPPORTED)
2615PNG_EXTERN void png_write_pHYs PNGARG((png_structp png_ptr,
2616 png_uint_32 x_pixels_per_unit, png_uint_32 y_pixels_per_unit,
Guy Schalnat0d580581995-07-20 02:43:20 -05002617 int unit_type));
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002618#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05002619
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002620#if defined(PNG_WRITE_tIME_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002621PNG_EXTERN void png_write_tIME PNGARG((png_structp png_ptr,
Guy Schalnat4ee97b01996-01-16 01:51:56 -06002622 png_timep mod_time));
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002623#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05002624
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002625#if defined(PNG_WRITE_sCAL_SUPPORTED)
Glenn Randers-Pehrson68ea2432000-04-01 21:10:05 -06002626#if defined(PNG_FLOATING_POINT_SUPPORTED) && !defined(PNG_NO_STDIO)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002627PNG_EXTERN void png_write_sCAL PNGARG((png_structp png_ptr,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002628 int unit, double width, double height));
2629#else
2630#ifdef PNG_FIXED_POINT_SUPPORTED
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002631PNG_EXTERN void png_write_sCAL_s PNGARG((png_structp png_ptr,
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002632 int unit, png_charp width, png_charp height));
2633#endif
2634#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002635#endif
2636
Andreas Dilger47a0c421997-05-16 02:46:07 -05002637/* Called when finished processing a row of data */
2638PNG_EXTERN void png_write_finish_row PNGARG((png_structp png_ptr));
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002639
Andreas Dilger47a0c421997-05-16 02:46:07 -05002640/* Internal use only. Called before first row of data */
2641PNG_EXTERN void png_write_start_row PNGARG((png_structp png_ptr));
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002642
2643#if defined(PNG_READ_GAMMA_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002644PNG_EXTERN void png_build_gamma_table PNGARG((png_structp png_ptr));
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002645#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05002646
2647/* combine a row of data, dealing with alpha, etc. if requested */
Andreas Dilger47a0c421997-05-16 02:46:07 -05002648PNG_EXTERN void png_combine_row PNGARG((png_structp png_ptr, png_bytep row,
Guy Schalnat0d580581995-07-20 02:43:20 -05002649 int mask));
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002650
2651#if defined(PNG_READ_INTERLACING_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -05002652/* expand an interlaced row */
Andreas Dilger47a0c421997-05-16 02:46:07 -05002653PNG_EXTERN void png_do_read_interlace PNGARG((png_row_infop row_info,
2654 png_bytep row, int pass, png_uint_32 transformations));
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002655#endif
2656
2657#if defined(PNG_WRITE_INTERLACING_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -05002658/* grab pixels out of a row for an interlaced pass */
Andreas Dilger47a0c421997-05-16 02:46:07 -05002659PNG_EXTERN void png_do_write_interlace PNGARG((png_row_infop row_info,
Guy Schalnat4ee97b01996-01-16 01:51:56 -06002660 png_bytep row, int pass));
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002661#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05002662
2663/* unfilter a row */
Andreas Dilger47a0c421997-05-16 02:46:07 -05002664PNG_EXTERN void png_read_filter_row PNGARG((png_structp png_ptr,
Guy Schalnate5a37791996-06-05 15:50:50 -05002665 png_row_infop row_info, png_bytep row, png_bytep prev_row, int filter));
Andreas Dilger47a0c421997-05-16 02:46:07 -05002666
2667/* Choose the best filter to use and filter the row data */
2668PNG_EXTERN void png_write_find_filter PNGARG((png_structp png_ptr,
Guy Schalnate5a37791996-06-05 15:50:50 -05002669 png_row_infop row_info));
Andreas Dilger47a0c421997-05-16 02:46:07 -05002670
2671/* Write out the filtered row. */
2672PNG_EXTERN void png_write_filtered_row PNGARG((png_structp png_ptr,
Guy Schalnate5a37791996-06-05 15:50:50 -05002673 png_bytep filtered_row));
Guy Schalnat0d580581995-07-20 02:43:20 -05002674/* finish a row while reading, dealing with interlacing passes, etc. */
Andreas Dilger47a0c421997-05-16 02:46:07 -05002675PNG_EXTERN void png_read_finish_row PNGARG((png_structp png_ptr));
2676
Guy Schalnat0d580581995-07-20 02:43:20 -05002677/* initialize the row buffers, etc. */
Andreas Dilger47a0c421997-05-16 02:46:07 -05002678PNG_EXTERN void png_read_start_row PNGARG((png_structp png_ptr));
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002679/* optional call to update the users info structure */
Andreas Dilger47a0c421997-05-16 02:46:07 -05002680PNG_EXTERN void png_read_transform_info PNGARG((png_structp png_ptr,
Guy Schalnat4ee97b01996-01-16 01:51:56 -06002681 png_infop info_ptr));
Guy Schalnat0d580581995-07-20 02:43:20 -05002682
2683/* these are the functions that do the transformations */
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002684#if defined(PNG_READ_FILLER_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002685PNG_EXTERN void png_do_read_filler PNGARG((png_row_infop row_info,
2686 png_bytep row, png_uint_32 filler, png_uint_32 flags));
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002687#endif
2688
Andreas Dilger47a0c421997-05-16 02:46:07 -05002689#if defined(PNG_READ_SWAP_ALPHA_SUPPORTED)
2690PNG_EXTERN void png_do_read_swap_alpha PNGARG((png_row_infop row_info,
2691 png_bytep row));
2692#endif
2693
2694#if defined(PNG_WRITE_SWAP_ALPHA_SUPPORTED)
2695PNG_EXTERN void png_do_write_swap_alpha PNGARG((png_row_infop row_info,
2696 png_bytep row));
2697#endif
2698
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -06002699#if defined(PNG_READ_INVERT_ALPHA_SUPPORTED)
2700PNG_EXTERN void png_do_read_invert_alpha PNGARG((png_row_infop row_info,
2701 png_bytep row));
2702#endif
2703
2704#if defined(PNG_WRITE_INVERT_ALPHA_SUPPORTED)
2705PNG_EXTERN void png_do_write_invert_alpha PNGARG((png_row_infop row_info,
2706 png_bytep row));
2707#endif
2708
Andreas Dilger47a0c421997-05-16 02:46:07 -05002709#if defined(PNG_WRITE_FILLER_SUPPORTED) || \
2710 defined(PNG_READ_STRIP_ALPHA_SUPPORTED)
2711PNG_EXTERN void png_do_strip_filler PNGARG((png_row_infop row_info,
2712 png_bytep row, png_uint_32 flags));
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002713#endif
2714
2715#if defined(PNG_READ_SWAP_SUPPORTED) || defined(PNG_WRITE_SWAP_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002716PNG_EXTERN void png_do_swap PNGARG((png_row_infop row_info, png_bytep row));
2717#endif
2718
Glenn Randers-Pehrson8f8fb6a1998-03-09 23:02:06 -06002719#if defined(PNG_READ_PACKSWAP_SUPPORTED) || defined(PNG_WRITE_PACKSWAP_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002720PNG_EXTERN void png_do_packswap PNGARG((png_row_infop row_info, png_bytep row));
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002721#endif
2722
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06002723#if defined(PNG_READ_RGB_TO_GRAY_SUPPORTED)
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06002724PNG_EXTERN int png_do_rgb_to_gray PNGARG((png_structp png_ptr, png_row_infop
2725 row_info, png_bytep row));
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06002726#endif
2727
2728#if defined(PNG_READ_GRAY_TO_RGB_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002729PNG_EXTERN void png_do_gray_to_rgb PNGARG((png_row_infop row_info,
2730 png_bytep row));
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06002731#endif
2732
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002733#if defined(PNG_READ_PACK_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002734PNG_EXTERN void png_do_unpack PNGARG((png_row_infop row_info, png_bytep row));
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002735#endif
2736
2737#if defined(PNG_READ_SHIFT_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002738PNG_EXTERN void png_do_unshift PNGARG((png_row_infop row_info, png_bytep row,
Guy Schalnat6d764711995-12-19 03:22:19 -06002739 png_color_8p sig_bits));
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002740#endif
2741
2742#if defined(PNG_READ_INVERT_SUPPORTED) || defined(PNG_WRITE_INVERT_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002743PNG_EXTERN void png_do_invert PNGARG((png_row_infop row_info, png_bytep row));
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002744#endif
2745
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002746#if defined(PNG_READ_16_TO_8_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002747PNG_EXTERN void png_do_chop PNGARG((png_row_infop row_info, png_bytep row));
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002748#endif
2749
2750#if defined(PNG_READ_DITHER_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002751PNG_EXTERN void png_do_dither PNGARG((png_row_infop row_info,
Guy Schalnat4ee97b01996-01-16 01:51:56 -06002752 png_bytep row, png_bytep palette_lookup, png_bytep dither_lookup));
Andreas Dilger47a0c421997-05-16 02:46:07 -05002753
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06002754# if defined(PNG_CORRECT_PALETTE_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002755PNG_EXTERN void png_correct_palette PNGARG((png_structp png_ptr,
Guy Schalnate5a37791996-06-05 15:50:50 -05002756 png_colorp palette, int num_palette));
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06002757# endif
Guy Schalnate5a37791996-06-05 15:50:50 -05002758#endif
2759
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002760#if defined(PNG_READ_BGR_SUPPORTED) || defined(PNG_WRITE_BGR_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002761PNG_EXTERN void png_do_bgr PNGARG((png_row_infop row_info, png_bytep row));
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002762#endif
2763
2764#if defined(PNG_WRITE_PACK_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002765PNG_EXTERN void png_do_pack PNGARG((png_row_infop row_info,
2766 png_bytep row, png_uint_32 bit_depth));
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002767#endif
2768
2769#if defined(PNG_WRITE_SHIFT_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002770PNG_EXTERN void png_do_shift PNGARG((png_row_infop row_info, png_bytep row,
Guy Schalnat6d764711995-12-19 03:22:19 -06002771 png_color_8p bit_depth));
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002772#endif
2773
2774#if defined(PNG_READ_BACKGROUND_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002775PNG_EXTERN void png_do_background PNGARG((png_row_infop row_info, png_bytep row,
Guy Schalnat6d764711995-12-19 03:22:19 -06002776 png_color_16p trans_values, png_color_16p background,
Guy Schalnat4ee97b01996-01-16 01:51:56 -06002777 png_color_16p background_1,
2778 png_bytep gamma_table, png_bytep gamma_from_1, png_bytep gamma_to_1,
2779 png_uint_16pp gamma_16, png_uint_16pp gamma_16_from_1,
2780 png_uint_16pp gamma_16_to_1, int gamma_shift));
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002781#endif
2782
2783#if defined(PNG_READ_GAMMA_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002784PNG_EXTERN void png_do_gamma PNGARG((png_row_infop row_info, png_bytep row,
Guy Schalnat4ee97b01996-01-16 01:51:56 -06002785 png_bytep gamma_table, png_uint_16pp gamma_16_table,
Guy Schalnat0d580581995-07-20 02:43:20 -05002786 int gamma_shift));
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002787#endif
2788
2789#if defined(PNG_READ_EXPAND_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002790PNG_EXTERN void png_do_expand_palette PNGARG((png_row_infop row_info,
Guy Schalnat4ee97b01996-01-16 01:51:56 -06002791 png_bytep row, png_colorp palette, png_bytep trans, int num_trans));
Andreas Dilger47a0c421997-05-16 02:46:07 -05002792PNG_EXTERN void png_do_expand PNGARG((png_row_infop row_info,
Guy Schalnat4ee97b01996-01-16 01:51:56 -06002793 png_bytep row, png_color_16p trans_value));
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002794#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05002795
Andreas Dilger47a0c421997-05-16 02:46:07 -05002796/* The following decodes the appropriate chunks, and does error correction,
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06002797 * then calls the appropriate callback for the chunk if it is valid.
2798 */
Guy Schalnat0d580581995-07-20 02:43:20 -05002799
2800/* decode the IHDR chunk */
Andreas Dilger47a0c421997-05-16 02:46:07 -05002801PNG_EXTERN void png_handle_IHDR PNGARG((png_structp png_ptr, png_infop info_ptr,
Guy Schalnat4ee97b01996-01-16 01:51:56 -06002802 png_uint_32 length));
Andreas Dilger47a0c421997-05-16 02:46:07 -05002803PNG_EXTERN void png_handle_PLTE PNGARG((png_structp png_ptr, png_infop info_ptr,
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06002804 png_uint_32 length));
Andreas Dilger47a0c421997-05-16 02:46:07 -05002805PNG_EXTERN void png_handle_IEND PNGARG((png_structp png_ptr, png_infop info_ptr,
Guy Schalnat0d580581995-07-20 02:43:20 -05002806 png_uint_32 length));
Andreas Dilger47a0c421997-05-16 02:46:07 -05002807
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002808#if defined(PNG_READ_bKGD_SUPPORTED)
2809PNG_EXTERN void png_handle_bKGD PNGARG((png_structp png_ptr, png_infop info_ptr,
Guy Schalnat0d580581995-07-20 02:43:20 -05002810 png_uint_32 length));
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002811#endif
2812
2813#if defined(PNG_READ_cHRM_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002814PNG_EXTERN void png_handle_cHRM PNGARG((png_structp png_ptr, png_infop info_ptr,
Guy Schalnat0d580581995-07-20 02:43:20 -05002815 png_uint_32 length));
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002816#endif
2817
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002818#if defined(PNG_READ_gAMA_SUPPORTED)
2819PNG_EXTERN void png_handle_gAMA PNGARG((png_structp png_ptr, png_infop info_ptr,
2820 png_uint_32 length));
2821#endif
2822
2823#if defined(PNG_READ_hIST_SUPPORTED)
2824PNG_EXTERN void png_handle_hIST PNGARG((png_structp png_ptr, png_infop info_ptr,
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06002825 png_uint_32 length));
2826#endif
2827
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002828#if defined(PNG_READ_iCCP_SUPPORTED)
2829extern void png_handle_iCCP PNGARG((png_structp png_ptr, png_infop info_ptr,
2830 png_uint_32 length));
2831#endif /* PNG_READ_iCCP_SUPPORTED */
2832
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002833#if defined(PNG_READ_iTXt_SUPPORTED)
2834PNG_EXTERN void png_handle_iTXt PNGARG((png_structp png_ptr, png_infop info_ptr,
Guy Schalnat0d580581995-07-20 02:43:20 -05002835 png_uint_32 length));
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002836#endif
2837
2838#if defined(PNG_READ_oFFs_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002839PNG_EXTERN void png_handle_oFFs PNGARG((png_structp png_ptr, png_infop info_ptr,
2840 png_uint_32 length));
2841#endif
2842
2843#if defined(PNG_READ_pCAL_SUPPORTED)
2844PNG_EXTERN void png_handle_pCAL PNGARG((png_structp png_ptr, png_infop info_ptr,
2845 png_uint_32 length));
2846#endif
2847
2848#if defined(PNG_READ_pHYs_SUPPORTED)
2849PNG_EXTERN void png_handle_pHYs PNGARG((png_structp png_ptr, png_infop info_ptr,
Guy Schalnat0d580581995-07-20 02:43:20 -05002850 png_uint_32 length));
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002851#endif
2852
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002853#if defined(PNG_READ_sBIT_SUPPORTED)
2854PNG_EXTERN void png_handle_sBIT PNGARG((png_structp png_ptr, png_infop info_ptr,
2855 png_uint_32 length));
2856#endif
2857
2858#if defined(PNG_READ_sCAL_SUPPORTED)
2859PNG_EXTERN void png_handle_sCAL PNGARG((png_structp png_ptr, png_infop info_ptr,
2860 png_uint_32 length));
2861#endif
2862
2863#if defined(PNG_READ_sPLT_SUPPORTED)
2864extern void png_handle_sPLT PNGARG((png_structp png_ptr, png_infop info_ptr,
2865 png_uint_32 length));
2866#endif /* PNG_READ_sPLT_SUPPORTED */
2867
2868#if defined(PNG_READ_sRGB_SUPPORTED)
2869PNG_EXTERN void png_handle_sRGB PNGARG((png_structp png_ptr, png_infop info_ptr,
Guy Schalnat0d580581995-07-20 02:43:20 -05002870 png_uint_32 length));
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002871#endif
2872
2873#if defined(PNG_READ_tEXt_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002874PNG_EXTERN void png_handle_tEXt PNGARG((png_structp png_ptr, png_infop info_ptr,
Guy Schalnat0d580581995-07-20 02:43:20 -05002875 png_uint_32 length));
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002876#endif
2877
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002878#if defined(PNG_READ_tIME_SUPPORTED)
2879PNG_EXTERN void png_handle_tIME PNGARG((png_structp png_ptr, png_infop info_ptr,
2880 png_uint_32 length));
2881#endif
2882
2883#if defined(PNG_READ_tRNS_SUPPORTED)
2884PNG_EXTERN void png_handle_tRNS PNGARG((png_structp png_ptr, png_infop info_ptr,
2885 png_uint_32 length));
2886#endif
2887
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002888#if defined(PNG_READ_zTXt_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002889PNG_EXTERN void png_handle_zTXt PNGARG((png_structp png_ptr, png_infop info_ptr,
Guy Schalnat0d580581995-07-20 02:43:20 -05002890 png_uint_32 length));
Guy Schalnat51f0eb41995-09-26 05:22:39 -05002891#endif
Guy Schalnat0d580581995-07-20 02:43:20 -05002892
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -06002893#ifdef PNG_HANDLE_AS_UNKNOWN_SUPPORTED
2894PNG_EXTERN int png_handle_as_unknown PNGARG((png_structp png_ptr, png_bytep
2895 chunk_name));
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002896#endif
2897
Andreas Dilger47a0c421997-05-16 02:46:07 -05002898PNG_EXTERN void png_handle_unknown PNGARG((png_structp png_ptr,
2899 png_infop info_ptr, png_uint_32 length));
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06002900
Andreas Dilger47a0c421997-05-16 02:46:07 -05002901PNG_EXTERN void png_check_chunk_name PNGARG((png_structp png_ptr,
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06002902 png_bytep chunk_name));
2903
Guy Schalnat0d580581995-07-20 02:43:20 -05002904/* handle the transformations for reading and writing */
Andreas Dilger47a0c421997-05-16 02:46:07 -05002905PNG_EXTERN void png_do_read_transformations PNGARG((png_structp png_ptr));
2906PNG_EXTERN void png_do_write_transformations PNGARG((png_structp png_ptr));
Guy Schalnat0d580581995-07-20 02:43:20 -05002907
Andreas Dilger47a0c421997-05-16 02:46:07 -05002908PNG_EXTERN void png_init_read_transformations PNGARG((png_structp png_ptr));
Guy Schalnat0d580581995-07-20 02:43:20 -05002909
Guy Schalnat6d764711995-12-19 03:22:19 -06002910#ifdef PNG_PROGRESSIVE_READ_SUPPORTED
Andreas Dilger47a0c421997-05-16 02:46:07 -05002911PNG_EXTERN void png_push_read_chunk PNGARG((png_structp png_ptr,
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06002912 png_infop info_ptr));
Andreas Dilger47a0c421997-05-16 02:46:07 -05002913PNG_EXTERN void png_push_read_sig PNGARG((png_structp png_ptr,
2914 png_infop info_ptr));
2915PNG_EXTERN void png_push_check_crc PNGARG((png_structp png_ptr));
2916PNG_EXTERN void png_push_crc_skip PNGARG((png_structp png_ptr,
Guy Schalnat4ee97b01996-01-16 01:51:56 -06002917 png_uint_32 length));
Andreas Dilger47a0c421997-05-16 02:46:07 -05002918PNG_EXTERN void png_push_crc_finish PNGARG((png_structp png_ptr));
2919PNG_EXTERN void png_push_fill_buffer PNGARG((png_structp png_ptr,
2920 png_bytep buffer, png_size_t length));
2921PNG_EXTERN void png_push_save_buffer PNGARG((png_structp png_ptr));
2922PNG_EXTERN void png_push_restore_buffer PNGARG((png_structp png_ptr,
2923 png_bytep buffer, png_size_t buffer_length));
2924PNG_EXTERN void png_push_read_IDAT PNGARG((png_structp png_ptr));
2925PNG_EXTERN void png_process_IDAT_data PNGARG((png_structp png_ptr,
2926 png_bytep buffer, png_size_t buffer_length));
2927PNG_EXTERN void png_push_process_row PNGARG((png_structp png_ptr));
2928PNG_EXTERN void png_push_handle_unknown PNGARG((png_structp png_ptr,
2929 png_infop info_ptr, png_uint_32 length));
2930PNG_EXTERN void png_push_have_info PNGARG((png_structp png_ptr,
2931 png_infop info_ptr));
2932PNG_EXTERN void png_push_have_end PNGARG((png_structp png_ptr,
2933 png_infop info_ptr));
2934PNG_EXTERN void png_push_have_row PNGARG((png_structp png_ptr, png_bytep row));
2935PNG_EXTERN void png_push_read_end PNGARG((png_structp png_ptr,
2936 png_infop info_ptr));
2937PNG_EXTERN void png_process_some_data PNGARG((png_structp png_ptr,
2938 png_infop info_ptr));
2939PNG_EXTERN void png_read_push_finish_row PNGARG((png_structp png_ptr));
2940#if defined(PNG_READ_tEXt_SUPPORTED)
2941PNG_EXTERN void png_push_handle_tEXt PNGARG((png_structp png_ptr,
2942 png_infop info_ptr, png_uint_32 length));
2943PNG_EXTERN void png_push_read_tEXt PNGARG((png_structp png_ptr,
2944 png_infop info_ptr));
Guy Schalnat6d764711995-12-19 03:22:19 -06002945#endif
2946#if defined(PNG_READ_zTXt_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -05002947PNG_EXTERN void png_push_handle_zTXt PNGARG((png_structp png_ptr,
2948 png_infop info_ptr, png_uint_32 length));
2949PNG_EXTERN void png_push_read_zTXt PNGARG((png_structp png_ptr,
2950 png_infop info_ptr));
Guy Schalnat6d764711995-12-19 03:22:19 -06002951#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -06002952#if defined(PNG_READ_iTXt_SUPPORTED)
2953PNG_EXTERN void png_push_handle_iTXt PNGARG((png_structp png_ptr,
2954 png_infop info_ptr, png_uint_32 length));
2955PNG_EXTERN void png_push_read_iTXt PNGARG((png_structp png_ptr,
2956 png_infop info_ptr));
2957#endif
Guy Schalnat6d764711995-12-19 03:22:19 -06002958
2959#endif /* PNG_PROGRESSIVE_READ_SUPPORTED */
Guy Schalnat0d580581995-07-20 02:43:20 -05002960
2961#endif /* PNG_INTERNAL */
2962
Andreas Dilger02ad0ef1997-01-17 01:34:35 -06002963#ifdef __cplusplus
2964}
2965#endif
2966
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -05002967#endif /* PNG_VERSION_INFO_ONLY */
Guy Schalnat0d580581995-07-20 02:43:20 -05002968/* do not put anything past this line */
Glenn Randers-Pehrson13944802000-06-24 07:42:42 -05002969#endif /* PNG_H */