blob: fa2975e05d8c991f5d7134a5a54f5e4ea6b48ecb [file] [log] [blame]
Guy Schalnat0d580581995-07-20 02:43:20 -05001
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06002/* png.c - location for general purpose libpng functions
3 *
Glenn Randers-Pehrson37f116a2004-08-15 07:15:39 -05004 * libpng version 1.2.6 - August 15, 2004
Glenn Randers-Pehrson5b5dcf82004-07-17 22:45:44 -05005 * For conditions of distribution and use, see copyright notice in png.h
6 * Copyright (c) 1998-2004 Glenn Randers-Pehrson
Glenn Randers-Pehrsond4366722000-06-04 14:29:29 -05007 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
8 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06009 */
Guy Schalnat0d580581995-07-20 02:43:20 -050010
11#define PNG_INTERNAL
12#define PNG_NO_EXTERN
13#include "png.h"
14
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -060015/* Generate a compiler error if there is an old png.h in the search path. */
Glenn Randers-Pehrson37f116a2004-08-15 07:15:39 -050016typedef version_1_2_6 Your_png_h_is_not_version_1_2_6;
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -060017
Andreas Dilger47a0c421997-05-16 02:46:07 -050018/* Version information for C files. This had better match the version
Glenn Randers-Pehrson520a7642000-03-21 05:13:06 -060019 * string defined in png.h. */
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -060020
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -060021#ifdef PNG_USE_GLOBAL_ARRAYS
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -060022/* png_libpng_ver was changed to a function in version 1.0.5c */
Glenn Randers-Pehrson5b5dcf82004-07-17 22:45:44 -050023const char png_libpng_ver[18] = PNG_LIBPNG_VER_STRING;
Guy Schalnat51f0eb41995-09-26 05:22:39 -050024
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -060025/* png_sig was changed to a function in version 1.0.5c */
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -060026/* Place to hold the signature string for a PNG file. */
Glenn Randers-Pehrson5e5c1e12000-11-10 12:26:19 -060027const png_byte FARDATA png_sig[8] = {137, 80, 78, 71, 13, 10, 26, 10};
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -060028
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -060029/* Invoke global declarations for constant strings for known chunk types */
30PNG_IHDR;
31PNG_IDAT;
32PNG_IEND;
33PNG_PLTE;
34PNG_bKGD;
35PNG_cHRM;
36PNG_gAMA;
37PNG_hIST;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -060038PNG_iCCP;
39PNG_iTXt;
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -060040PNG_oFFs;
41PNG_pCAL;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -060042PNG_sCAL;
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -060043PNG_pHYs;
44PNG_sBIT;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -060045PNG_sPLT;
Glenn Randers-Pehrson074af5e1999-11-28 23:32:18 -060046PNG_sRGB;
47PNG_tEXt;
48PNG_tIME;
49PNG_tRNS;
50PNG_zTXt;
Guy Schalnat0d580581995-07-20 02:43:20 -050051
52/* arrays to facilitate easy interlacing - use pass (0 - 6) as index */
53
54/* start of interlace block */
Glenn Randers-Pehrson5e5c1e12000-11-10 12:26:19 -060055const int FARDATA png_pass_start[] = {0, 4, 0, 2, 0, 1, 0};
Guy Schalnat0d580581995-07-20 02:43:20 -050056
57/* offset to next interlace block */
Glenn Randers-Pehrson5e5c1e12000-11-10 12:26:19 -060058const int FARDATA png_pass_inc[] = {8, 8, 4, 4, 2, 2, 1};
Guy Schalnat0d580581995-07-20 02:43:20 -050059
60/* start of interlace block in the y direction */
Glenn Randers-Pehrson5e5c1e12000-11-10 12:26:19 -060061const int FARDATA png_pass_ystart[] = {0, 0, 4, 0, 2, 0, 1};
Guy Schalnat0d580581995-07-20 02:43:20 -050062
63/* offset to next interlace block in the y direction */
Glenn Randers-Pehrson5e5c1e12000-11-10 12:26:19 -060064const int FARDATA png_pass_yinc[] = {8, 8, 8, 4, 4, 2, 2};
Guy Schalnat0d580581995-07-20 02:43:20 -050065
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -060066/* width of interlace block (used in assembler routines only) */
67#ifdef PNG_HAVE_ASSEMBLER_COMBINE_ROW
Glenn Randers-Pehrson5e5c1e12000-11-10 12:26:19 -060068const int FARDATA png_pass_width[] = {8, 4, 4, 2, 2, 1, 1};
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -060069#endif
Guy Schalnat0d580581995-07-20 02:43:20 -050070
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060071/* Height of interlace block. This is not currently used - if you need
72 * it, uncomment it here and in png.h
Glenn Randers-Pehrson5e5c1e12000-11-10 12:26:19 -060073const int FARDATA png_pass_height[] = {8, 8, 4, 4, 2, 2, 1};
Guy Schalnat0d580581995-07-20 02:43:20 -050074*/
75
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060076/* Mask to determine which pixels are valid in a pass */
Glenn Randers-Pehrson5e5c1e12000-11-10 12:26:19 -060077const int FARDATA png_pass_mask[] = {0x80, 0x08, 0x88, 0x22, 0xaa, 0x55, 0xff};
Guy Schalnat0d580581995-07-20 02:43:20 -050078
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060079/* Mask to determine which pixels to overwrite while displaying */
Glenn Randers-Pehrson5e5c1e12000-11-10 12:26:19 -060080const int FARDATA png_pass_dsp_mask[]
81 = {0xff, 0x0f, 0xff, 0x33, 0xff, 0x55, 0xff};
Guy Schalnat0d580581995-07-20 02:43:20 -050082
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -060083#endif
84
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060085/* Tells libpng that we have already handled the first "num_bytes" bytes
86 * of the PNG file signature. If the PNG data is embedded into another
87 * stream we can set num_bytes = 8 so that libpng will not attempt to read
88 * or write any of the magic bytes before it starts on the IHDR.
89 */
Glenn Randers-Pehrsonbcfd15d1999-10-01 14:22:25 -050090
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -050091void PNGAPI
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060092png_set_sig_bytes(png_structp png_ptr, int num_bytes)
93{
Andreas Dilger47a0c421997-05-16 02:46:07 -050094 png_debug(1, "in png_set_sig_bytes\n");
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060095 if (num_bytes > 8)
96 png_error(png_ptr, "Too many bytes for PNG signature.");
97
Glenn Randers-Pehrson860ab2b1999-10-14 07:43:10 -050098 png_ptr->sig_bytes = (png_byte)(num_bytes < 0 ? 0 : num_bytes);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060099}
100
101/* Checks whether the supplied bytes match the PNG signature. We allow
102 * checking less than the full 8-byte signature so that those apps that
103 * already read the first few bytes of a file to determine the file type
104 * can simply check the remaining bytes for extra assurance. Returns
105 * an integer less than, equal to, or greater than zero if sig is found,
106 * respectively, to be less than, to match, or be greater than the correct
107 * PNG signature (this is the same behaviour as strcmp, memcmp, etc).
108 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500109int PNGAPI
Andreas Dilger47a0c421997-05-16 02:46:07 -0500110png_sig_cmp(png_bytep sig, png_size_t start, png_size_t num_to_check)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600111{
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600112 png_byte png_signature[8] = {137, 80, 78, 71, 13, 10, 26, 10};
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600113 if (num_to_check > 8)
114 num_to_check = 8;
115 else if (num_to_check < 1)
Glenn Randers-Pehrsonb2120021998-01-31 20:07:59 -0600116 return (0);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600117
Andreas Dilger47a0c421997-05-16 02:46:07 -0500118 if (start > 7)
Glenn Randers-Pehrsonb2120021998-01-31 20:07:59 -0600119 return (0);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600120
121 if (start + num_to_check > 8)
122 num_to_check = 8 - start;
123
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600124 return ((int)(png_memcmp(&sig[start], &png_signature[start], num_to_check)));
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600125}
126
127/* (Obsolete) function to check signature bytes. It does not allow one
Glenn Randers-Pehrsonc9442291999-01-06 21:50:16 -0600128 * to check a partial signature. This function might be removed in the
129 * future - use png_sig_cmp(). Returns true (nonzero) if the file is a PNG.
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600130 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500131int PNGAPI
Guy Schalnat6d764711995-12-19 03:22:19 -0600132png_check_sig(png_bytep sig, int num)
Guy Schalnat0d580581995-07-20 02:43:20 -0500133{
Glenn Randers-Pehrsonb2120021998-01-31 20:07:59 -0600134 return ((int)!png_sig_cmp(sig, (png_size_t)0, (png_size_t)num));
Guy Schalnat0d580581995-07-20 02:43:20 -0500135}
136
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -0500137/* Function to allocate memory for zlib and clear it to 0. */
Glenn Randers-Pehrson2ae022d2002-07-01 22:23:46 -0500138#ifdef PNG_1_0_X
Glenn Randers-Pehrson51d92502002-08-23 23:07:42 -0500139voidpf PNGAPI
Glenn Randers-Pehrson2ae022d2002-07-01 22:23:46 -0500140#else
Glenn Randers-Pehrson22f28962002-05-13 18:17:09 -0500141voidpf /* private */
Glenn Randers-Pehrson2ae022d2002-07-01 22:23:46 -0500142#endif
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500143png_zalloc(voidpf png_ptr, uInt items, uInt size)
Guy Schalnat0d580581995-07-20 02:43:20 -0500144{
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600145 png_voidp ptr;
146 png_structp p=png_ptr;
147 png_uint_32 save_flags=p->flags;
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500148 png_uint_32 num_bytes;
149
150 if (items > PNG_UINT_32_MAX/size)
151 {
152 png_warning (png_ptr, "Potential overflow in png_zalloc()");
153 return (NULL);
154 }
155 num_bytes = (png_uint_32)items * size;
Glenn Randers-Pehrson9c0f0942002-02-21 23:14:23 -0600156
157 p->flags|=PNG_FLAG_MALLOC_NULL_MEM_OK;
158 ptr = (png_voidp)png_malloc((png_structp)png_ptr, num_bytes);
159 p->flags=save_flags;
Guy Schalnat6d764711995-12-19 03:22:19 -0600160
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500161#if defined(PNG_1_0_X) && !defined(PNG_NO_ZALLOC_ZERO)
Glenn Randers-Pehrson25228ab2002-03-31 07:33:55 -0600162 if (ptr == NULL)
163 return ((voidpf)ptr);
164
Glenn Randers-Pehrson82ae3832001-04-20 10:32:10 -0500165 if (num_bytes > (png_uint_32)0x8000L)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600166 {
Glenn Randers-Pehrson82ae3832001-04-20 10:32:10 -0500167 png_memset(ptr, 0, (png_size_t)0x8000L);
168 png_memset((png_bytep)ptr + (png_size_t)0x8000L, 0,
169 (png_size_t)(num_bytes - (png_uint_32)0x8000L));
170 }
171 else
172 {
173 png_memset(ptr, 0, (png_size_t)num_bytes);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600174 }
Glenn Randers-Pehrsona4d54bd2000-07-14 08:15:12 -0500175#endif
Glenn Randers-Pehrsonb2120021998-01-31 20:07:59 -0600176 return ((voidpf)ptr);
Guy Schalnat0d580581995-07-20 02:43:20 -0500177}
178
179/* function to free memory for zlib */
Glenn Randers-Pehrson2ae022d2002-07-01 22:23:46 -0500180#ifdef PNG_1_0_X
181void PNGAPI
182#else
Glenn Randers-Pehrson22f28962002-05-13 18:17:09 -0500183void /* private */
Glenn Randers-Pehrson2ae022d2002-07-01 22:23:46 -0500184#endif
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500185png_zfree(voidpf png_ptr, voidpf ptr)
Guy Schalnat0d580581995-07-20 02:43:20 -0500186{
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600187 png_free((png_structp)png_ptr, (png_voidp)ptr);
Guy Schalnat0d580581995-07-20 02:43:20 -0500188}
189
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600190/* Reset the CRC variable to 32 bits of 1's. Care must be taken
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600191 * in case CRC is > 32 bits to leave the top bits 0.
192 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500193void /* PRIVATE */
Guy Schalnat6d764711995-12-19 03:22:19 -0600194png_reset_crc(png_structp png_ptr)
Guy Schalnat0d580581995-07-20 02:43:20 -0500195{
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600196 png_ptr->crc = crc32(0, Z_NULL, 0);
Guy Schalnat0d580581995-07-20 02:43:20 -0500197}
198
Andreas Dilger47a0c421997-05-16 02:46:07 -0500199/* Calculate the CRC over a section of data. We can only pass as
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600200 * much data to this routine as the largest single buffer size. We
201 * also check that this data will actually be used before going to the
202 * trouble of calculating it.
203 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500204void /* PRIVATE */
Andreas Dilger47a0c421997-05-16 02:46:07 -0500205png_calculate_crc(png_structp png_ptr, png_bytep ptr, png_size_t length)
Guy Schalnat0d580581995-07-20 02:43:20 -0500206{
Andreas Dilger47a0c421997-05-16 02:46:07 -0500207 int need_crc = 1;
208
209 if (png_ptr->chunk_name[0] & 0x20) /* ancillary */
210 {
211 if ((png_ptr->flags & PNG_FLAG_CRC_ANCILLARY_MASK) ==
212 (PNG_FLAG_CRC_ANCILLARY_USE | PNG_FLAG_CRC_ANCILLARY_NOWARN))
213 need_crc = 0;
214 }
215 else /* critical */
216 {
217 if (png_ptr->flags & PNG_FLAG_CRC_CRITICAL_IGNORE)
218 need_crc = 0;
219 }
220
221 if (need_crc)
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600222 png_ptr->crc = crc32(png_ptr->crc, ptr, (uInt)length);
Guy Schalnat0d580581995-07-20 02:43:20 -0500223}
Guy Schalnate5a37791996-06-05 15:50:50 -0500224
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600225/* Allocate the memory for an info_struct for the application. We don't
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600226 * really need the png_ptr, but it could potentially be useful in the
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500227 * future. This should be used in favour of malloc(png_sizeof(png_info))
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600228 * and png_info_init() so that applications that want to use a shared
229 * libpng don't have to be recompiled if png_info changes size.
230 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500231png_infop PNGAPI
Guy Schalnate5a37791996-06-05 15:50:50 -0500232png_create_info_struct(png_structp png_ptr)
233{
234 png_infop info_ptr;
235
Andreas Dilger47a0c421997-05-16 02:46:07 -0500236 png_debug(1, "in png_create_info_struct\n");
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600237 if(png_ptr == NULL) return (NULL);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500238#ifdef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrson5cded0b2001-11-07 07:10:08 -0600239 info_ptr = (png_infop)png_create_struct_2(PNG_STRUCT_INFO,
240 png_ptr->malloc_fn, png_ptr->mem_ptr);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500241#else
Glenn Randers-Pehrson5cded0b2001-11-07 07:10:08 -0600242 info_ptr = (png_infop)png_create_struct(PNG_STRUCT_INFO);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500243#endif
Glenn Randers-Pehrson5cded0b2001-11-07 07:10:08 -0600244 if (info_ptr != NULL)
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500245 png_info_init_3(&info_ptr, png_sizeof(png_info));
Guy Schalnate5a37791996-06-05 15:50:50 -0500246
Glenn Randers-Pehrsonb2120021998-01-31 20:07:59 -0600247 return (info_ptr);
Guy Schalnate5a37791996-06-05 15:50:50 -0500248}
249
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600250/* This function frees the memory associated with a single info struct.
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600251 * Normally, one would use either png_destroy_read_struct() or
252 * png_destroy_write_struct() to free an info struct, but this may be
253 * useful for some applications.
254 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500255void PNGAPI
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600256png_destroy_info_struct(png_structp png_ptr, png_infopp info_ptr_ptr)
257{
258 png_infop info_ptr = NULL;
259
Andreas Dilger47a0c421997-05-16 02:46:07 -0500260 png_debug(1, "in png_destroy_info_struct\n");
261 if (info_ptr_ptr != NULL)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600262 info_ptr = *info_ptr_ptr;
263
Andreas Dilger47a0c421997-05-16 02:46:07 -0500264 if (info_ptr != NULL)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600265 {
266 png_info_destroy(png_ptr, info_ptr);
267
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500268#ifdef PNG_USER_MEM_SUPPORTED
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500269 png_destroy_struct_2((png_voidp)info_ptr, png_ptr->free_fn,
270 png_ptr->mem_ptr);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500271#else
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600272 png_destroy_struct((png_voidp)info_ptr);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500273#endif
Glenn Randers-Pehrson3f549252001-10-27 07:35:13 -0500274 *info_ptr_ptr = NULL;
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600275 }
276}
277
278/* Initialize the info structure. This is now an internal function (0.89)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600279 * and applications using it are urged to use png_create_info_struct()
280 * instead.
281 */
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500282#undef png_info_init
283void PNGAPI
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600284png_info_init(png_infop info_ptr)
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500285{
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500286 /* We only come here via pre-1.0.12-compiled applications */
287 png_info_init_3(&info_ptr, 0);
288}
289
290void PNGAPI
291png_info_init_3(png_infopp ptr_ptr, png_size_t png_info_struct_size)
292{
293 png_infop info_ptr = *ptr_ptr;
294
295 png_debug(1, "in png_info_init_3\n");
296
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500297 if(png_sizeof(png_info) > png_info_struct_size)
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500298 {
299 png_destroy_struct(info_ptr);
300 info_ptr = (png_infop)png_create_struct(PNG_STRUCT_INFO);
301 *ptr_ptr = info_ptr;
302 }
303
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500304 /* set everything to 0 */
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500305 png_memset(info_ptr, 0, png_sizeof (png_info));
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600306}
307
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -0500308#ifdef PNG_FREE_ME_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500309void PNGAPI
Glenn Randers-Pehrson38e6e772000-04-09 19:06:13 -0500310png_data_freer(png_structp png_ptr, png_infop info_ptr,
311 int freer, png_uint_32 mask)
312{
313 png_debug(1, "in png_data_freer\n");
314 if (png_ptr == NULL || info_ptr == NULL)
315 return;
316 if(freer == PNG_DESTROY_WILL_FREE_DATA)
317 info_ptr->free_me |= mask;
318 else if(freer == PNG_USER_WILL_FREE_DATA)
319 info_ptr->free_me &= ~mask;
320 else
321 png_warning(png_ptr,
322 "Unknown freer parameter in png_data_freer.");
323}
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -0500324#endif
Glenn Randers-Pehrson38e6e772000-04-09 19:06:13 -0500325
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500326void PNGAPI
Glenn Randers-Pehrson82ae3832001-04-20 10:32:10 -0500327png_free_data(png_structp png_ptr, png_infop info_ptr, png_uint_32 mask,
328 int num)
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600329{
Glenn Randers-Pehrson38e6e772000-04-09 19:06:13 -0500330 png_debug(1, "in png_free_data\n");
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600331 if (png_ptr == NULL || info_ptr == NULL)
332 return;
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600333
334#if defined(PNG_TEXT_SUPPORTED)
335/* free text item num or (if num == -1) all text items */
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -0500336#ifdef PNG_FREE_ME_SUPPORTED
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -0500337if ((mask & PNG_FREE_TEXT) & info_ptr->free_me)
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -0500338#else
339if (mask & PNG_FREE_TEXT)
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -0500340#endif
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600341{
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600342 if (num != -1)
343 {
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -0500344 if (info_ptr->text && info_ptr->text[num].key)
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600345 {
346 png_free(png_ptr, info_ptr->text[num].key);
347 info_ptr->text[num].key = NULL;
348 }
349 }
Glenn Randers-Pehrsonec61c232000-05-16 06:17:36 -0500350 else
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600351 {
Glenn Randers-Pehrsonec61c232000-05-16 06:17:36 -0500352 int i;
353 for (i = 0; i < info_ptr->num_text; i++)
354 png_free_data(png_ptr, info_ptr, PNG_FREE_TEXT, i);
355 png_free(png_ptr, info_ptr->text);
356 info_ptr->text = NULL;
357 info_ptr->num_text=0;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600358 }
359}
360#endif
361
362#if defined(PNG_tRNS_SUPPORTED)
363/* free any tRNS entry */
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -0500364#ifdef PNG_FREE_ME_SUPPORTED
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -0500365if ((mask & PNG_FREE_TRNS) & info_ptr->free_me)
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -0500366#else
367if ((mask & PNG_FREE_TRNS) && (png_ptr->flags & PNG_FLAG_FREE_TRNS))
368#endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600369{
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -0500370 png_free(png_ptr, info_ptr->trans);
371 info_ptr->valid &= ~PNG_INFO_tRNS;
Glenn Randers-Pehrsonc1bfe682002-03-06 22:08:00 -0600372#ifndef PNG_FREE_ME_SUPPORTED
373 png_ptr->flags &= ~PNG_FLAG_FREE_TRNS;
374#endif
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -0500375 info_ptr->trans = NULL;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600376}
377#endif
378
379#if defined(PNG_sCAL_SUPPORTED)
380/* free any sCAL entry */
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -0500381#ifdef PNG_FREE_ME_SUPPORTED
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -0500382if ((mask & PNG_FREE_SCAL) & info_ptr->free_me)
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -0500383#else
384if (mask & PNG_FREE_SCAL)
385#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600386{
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600387#if defined(PNG_FIXED_POINT_SUPPORTED) && !defined(PNG_FLOATING_POINT_SUPPORTED)
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -0500388 png_free(png_ptr, info_ptr->scal_s_width);
389 png_free(png_ptr, info_ptr->scal_s_height);
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -0500390 info_ptr->scal_s_width = NULL;
391 info_ptr->scal_s_height = NULL;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600392#endif
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -0500393 info_ptr->valid &= ~PNG_INFO_sCAL;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600394}
395#endif
396
397#if defined(PNG_pCAL_SUPPORTED)
398/* free any pCAL entry */
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -0500399#ifdef PNG_FREE_ME_SUPPORTED
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -0500400if ((mask & PNG_FREE_PCAL) & info_ptr->free_me)
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -0500401#else
402if (mask & PNG_FREE_PCAL)
403#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600404{
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -0500405 png_free(png_ptr, info_ptr->pcal_purpose);
406 png_free(png_ptr, info_ptr->pcal_units);
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -0500407 info_ptr->pcal_purpose = NULL;
408 info_ptr->pcal_units = NULL;
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -0500409 if (info_ptr->pcal_params != NULL)
410 {
411 int i;
412 for (i = 0; i < (int)info_ptr->pcal_nparams; i++)
Glenn Randers-Pehrson4766a242000-07-17 06:17:09 -0500413 {
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -0500414 png_free(png_ptr, info_ptr->pcal_params[i]);
Glenn Randers-Pehrson4766a242000-07-17 06:17:09 -0500415 info_ptr->pcal_params[i]=NULL;
416 }
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -0500417 png_free(png_ptr, info_ptr->pcal_params);
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -0500418 info_ptr->pcal_params = NULL;
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -0500419 }
420 info_ptr->valid &= ~PNG_INFO_pCAL;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600421}
422#endif
423
424#if defined(PNG_iCCP_SUPPORTED)
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600425/* free any iCCP entry */
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -0500426#ifdef PNG_FREE_ME_SUPPORTED
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -0500427if ((mask & PNG_FREE_ICCP) & info_ptr->free_me)
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -0500428#else
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600429if (mask & PNG_FREE_ICCP)
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -0500430#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600431{
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -0500432 png_free(png_ptr, info_ptr->iccp_name);
433 png_free(png_ptr, info_ptr->iccp_profile);
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -0500434 info_ptr->iccp_name = NULL;
435 info_ptr->iccp_profile = NULL;
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -0500436 info_ptr->valid &= ~PNG_INFO_iCCP;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600437}
438#endif
439
440#if defined(PNG_sPLT_SUPPORTED)
441/* free a given sPLT entry, or (if num == -1) all sPLT entries */
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -0500442#ifdef PNG_FREE_ME_SUPPORTED
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -0500443if ((mask & PNG_FREE_SPLT) & info_ptr->free_me)
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -0500444#else
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600445if (mask & PNG_FREE_SPLT)
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -0500446#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600447{
448 if (num != -1)
449 {
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -0500450 if(info_ptr->splt_palettes)
451 {
452 png_free(png_ptr, info_ptr->splt_palettes[num].name);
453 png_free(png_ptr, info_ptr->splt_palettes[num].entries);
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -0500454 info_ptr->splt_palettes[num].name = NULL;
455 info_ptr->splt_palettes[num].entries = NULL;
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -0500456 }
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600457 }
458 else
459 {
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600460 if(info_ptr->splt_palettes_num)
461 {
462 int i;
463 for (i = 0; i < (int)info_ptr->splt_palettes_num; i++)
464 png_free_data(png_ptr, info_ptr, PNG_FREE_SPLT, i);
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600465
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600466 png_free(png_ptr, info_ptr->splt_palettes);
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -0500467 info_ptr->splt_palettes = NULL;
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600468 info_ptr->splt_palettes_num = 0;
469 }
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -0500470 info_ptr->valid &= ~PNG_INFO_sPLT;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600471 }
472}
473#endif
474
475#if defined(PNG_UNKNOWN_CHUNKS_SUPPORTED)
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -0500476#ifdef PNG_FREE_ME_SUPPORTED
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -0500477if ((mask & PNG_FREE_UNKN) & info_ptr->free_me)
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -0500478#else
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600479if (mask & PNG_FREE_UNKN)
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -0500480#endif
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600481{
482 if (num != -1)
483 {
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -0500484 if(info_ptr->unknown_chunks)
485 {
486 png_free(png_ptr, info_ptr->unknown_chunks[num].data);
487 info_ptr->unknown_chunks[num].data = NULL;
488 }
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600489 }
490 else
491 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600492 int i;
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600493
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600494 if(info_ptr->unknown_chunks_num)
495 {
496 for (i = 0; i < (int)info_ptr->unknown_chunks_num; i++)
497 png_free_data(png_ptr, info_ptr, PNG_FREE_UNKN, i);
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600498
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600499 png_free(png_ptr, info_ptr->unknown_chunks);
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -0500500 info_ptr->unknown_chunks = NULL;
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600501 info_ptr->unknown_chunks_num = 0;
502 }
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600503 }
504}
505#endif
506
507#if defined(PNG_hIST_SUPPORTED)
508/* free any hIST entry */
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -0500509#ifdef PNG_FREE_ME_SUPPORTED
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -0500510if ((mask & PNG_FREE_HIST) & info_ptr->free_me)
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -0500511#else
512if ((mask & PNG_FREE_HIST) && (png_ptr->flags & PNG_FLAG_FREE_HIST))
513#endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600514{
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -0500515 png_free(png_ptr, info_ptr->hist);
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -0500516 info_ptr->hist = NULL;
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -0500517 info_ptr->valid &= ~PNG_INFO_hIST;
Glenn Randers-Pehrsonc1bfe682002-03-06 22:08:00 -0600518#ifndef PNG_FREE_ME_SUPPORTED
519 png_ptr->flags &= ~PNG_FLAG_FREE_HIST;
520#endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600521}
522#endif
523
524/* free any PLTE entry that was internally allocated */
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -0500525#ifdef PNG_FREE_ME_SUPPORTED
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -0500526if ((mask & PNG_FREE_PLTE) & info_ptr->free_me)
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -0500527#else
528if ((mask & PNG_FREE_PLTE) && (png_ptr->flags & PNG_FLAG_FREE_PLTE))
529#endif
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600530{
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -0500531 png_zfree(png_ptr, info_ptr->palette);
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -0500532 info_ptr->palette = NULL;
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -0500533 info_ptr->valid &= ~PNG_INFO_PLTE;
Glenn Randers-Pehrsonc1bfe682002-03-06 22:08:00 -0600534#ifndef PNG_FREE_ME_SUPPORTED
535 png_ptr->flags &= ~PNG_FLAG_FREE_PLTE;
536#endif
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -0500537 info_ptr->num_palette = 0;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600538}
539
540#if defined(PNG_INFO_IMAGE_SUPPORTED)
541/* free any image bits attached to the info structure */
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -0500542#ifdef PNG_FREE_ME_SUPPORTED
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -0500543if ((mask & PNG_FREE_ROWS) & info_ptr->free_me)
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -0500544#else
545if (mask & PNG_FREE_ROWS)
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -0500546#endif
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -0500547{
548 if(info_ptr->row_pointers)
549 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600550 int row;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600551 for (row = 0; row < (int)info_ptr->height; row++)
Glenn Randers-Pehrson4766a242000-07-17 06:17:09 -0500552 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600553 png_free(png_ptr, info_ptr->row_pointers[row]);
Glenn Randers-Pehrson4766a242000-07-17 06:17:09 -0500554 info_ptr->row_pointers[row]=NULL;
555 }
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600556 png_free(png_ptr, info_ptr->row_pointers);
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -0500557 info_ptr->row_pointers=NULL;
558 }
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -0500559 info_ptr->valid &= ~PNG_INFO_IDAT;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600560}
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600561#endif
Glenn Randers-Pehrsonfc4a1432000-05-17 17:39:34 -0500562
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -0500563#ifdef PNG_FREE_ME_SUPPORTED
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600564 if(num == -1)
565 info_ptr->free_me &= ~mask;
Glenn Randers-Pehrsonec61c232000-05-16 06:17:36 -0500566 else
567 info_ptr->free_me &= ~(mask & ~PNG_FREE_MUL);
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -0500568#endif
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600569}
Glenn Randers-Pehrson166c5a31999-12-10 09:43:02 -0600570
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600571/* This is an internal routine to free any memory that the info struct is
Andreas Dilger47a0c421997-05-16 02:46:07 -0500572 * pointing to before re-using it or freeing the struct itself. Recall
573 * that png_free() checks for NULL pointers for us.
574 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500575void /* PRIVATE */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600576png_info_destroy(png_structp png_ptr, png_infop info_ptr)
577{
Andreas Dilger47a0c421997-05-16 02:46:07 -0500578 png_debug(1, "in png_info_destroy\n");
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600579
580 png_free_data(png_ptr, info_ptr, PNG_FREE_ALL, -1);
Glenn Randers-Pehrsond56aca72000-11-23 11:51:42 -0600581
Glenn Randers-Pehrson6942d532000-05-01 09:31:54 -0500582#if defined(PNG_UNKNOWN_CHUNKS_SUPPORTED)
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600583 if (png_ptr->num_chunk_list)
584 {
585 png_free(png_ptr, png_ptr->chunk_list);
Glenn Randers-Pehrson3f549252001-10-27 07:35:13 -0500586 png_ptr->chunk_list=NULL;
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600587 png_ptr->num_chunk_list=0;
588 }
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600589#endif
Glenn Randers-Pehrsona77ef622000-02-18 13:48:52 -0600590
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500591 png_info_init_3(&info_ptr, png_sizeof(png_info));
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500592}
Guy Schalnat0d580581995-07-20 02:43:20 -0500593
Guy Schalnate5a37791996-06-05 15:50:50 -0500594/* This function returns a pointer to the io_ptr associated with the user
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600595 * functions. The application should free any memory associated with this
596 * pointer before png_write_destroy() or png_read_destroy() are called.
597 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500598png_voidp PNGAPI
Guy Schalnate5a37791996-06-05 15:50:50 -0500599png_get_io_ptr(png_structp png_ptr)
600{
Glenn Randers-Pehrsonb2120021998-01-31 20:07:59 -0600601 return (png_ptr->io_ptr);
Guy Schalnate5a37791996-06-05 15:50:50 -0500602}
Andreas Dilger47a0c421997-05-16 02:46:07 -0500603
604#if !defined(PNG_NO_STDIO)
605/* Initialize the default input/output functions for the PNG file. If you
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600606 * use your own read or write routines, you can call either png_set_read_fn()
Glenn Randers-Pehrson38e6e772000-04-09 19:06:13 -0500607 * or png_set_write_fn() instead of png_init_io(). If you have defined
608 * PNG_NO_STDIO, you must use a function of your own because "FILE *" isn't
609 * necessarily available.
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600610 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500611void PNGAPI
Glenn Randers-Pehrson316f97a2000-07-08 13:19:41 -0500612png_init_io(png_structp png_ptr, png_FILE_p fp)
Guy Schalnate5a37791996-06-05 15:50:50 -0500613{
Andreas Dilger47a0c421997-05-16 02:46:07 -0500614 png_debug(1, "in png_init_io\n");
Guy Schalnate5a37791996-06-05 15:50:50 -0500615 png_ptr->io_ptr = (png_voidp)fp;
616}
Andreas Dilger47a0c421997-05-16 02:46:07 -0500617#endif
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500618
619#if defined(PNG_TIME_RFC1123_SUPPORTED)
620/* Convert the supplied time into an RFC 1123 string suitable for use in
621 * a "Creation Time" or other text-based time string.
622 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500623png_charp PNGAPI
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500624png_convert_to_rfc1123(png_structp png_ptr, png_timep ptime)
625{
626 static PNG_CONST char short_months[12][4] =
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -0600627 {"Jan", "Feb", "Mar", "Apr", "May", "Jun",
628 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"};
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500629
630 if (png_ptr->time_buffer == NULL)
631 {
632 png_ptr->time_buffer = (png_charp)png_malloc(png_ptr, (png_uint_32)(29*
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500633 png_sizeof(char)));
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500634 }
635
Glenn Randers-Pehrson316f97a2000-07-08 13:19:41 -0500636#if defined(_WIN32_WCE)
Glenn Randers-Pehrson82ae3832001-04-20 10:32:10 -0500637 {
638 wchar_t time_buf[29];
639 wsprintf(time_buf, TEXT("%d %S %d %02d:%02d:%02d +0000"),
640 ptime->day % 32, short_months[(ptime->month - 1) % 12],
641 ptime->year, ptime->hour % 24, ptime->minute % 60,
642 ptime->second % 61);
643 WideCharToMultiByte(CP_ACP, 0, time_buf, -1, png_ptr->time_buffer, 29,
644 NULL, NULL);
645 }
Glenn Randers-Pehrson316f97a2000-07-08 13:19:41 -0500646#else
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500647#ifdef USE_FAR_KEYWORD
Glenn Randers-Pehrson82ae3832001-04-20 10:32:10 -0500648 {
649 char near_time_buf[29];
650 sprintf(near_time_buf, "%d %s %d %02d:%02d:%02d +0000",
651 ptime->day % 32, short_months[(ptime->month - 1) % 12],
652 ptime->year, ptime->hour % 24, ptime->minute % 60,
653 ptime->second % 61);
654 png_memcpy(png_ptr->time_buffer, near_time_buf,
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500655 29*png_sizeof(char));
Glenn Randers-Pehrson82ae3832001-04-20 10:32:10 -0500656 }
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500657#else
658 sprintf(png_ptr->time_buffer, "%d %s %d %02d:%02d:%02d +0000",
Glenn Randers-Pehrsone1eff582001-04-14 20:15:41 -0500659 ptime->day % 32, short_months[(ptime->month - 1) % 12],
660 ptime->year, ptime->hour % 24, ptime->minute % 60,
661 ptime->second % 61);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500662#endif
Glenn Randers-Pehrson316f97a2000-07-08 13:19:41 -0500663#endif /* _WIN32_WCE */
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500664 return ((png_charp)png_ptr->time_buffer);
665}
666#endif /* PNG_TIME_RFC1123_SUPPORTED */
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -0600667
Glenn Randers-Pehrson81fdf8a2000-04-07 10:34:56 -0500668#if 0
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600669/* Signature string for a PNG file. */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500670png_bytep PNGAPI
Glenn Randers-Pehrson81fdf8a2000-04-07 10:34:56 -0500671png_sig_bytes(void)
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600672{
Glenn Randers-Pehrson81fdf8a2000-04-07 10:34:56 -0500673 return ((png_bytep)"\211\120\116\107\015\012\032\012");
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600674}
Glenn Randers-Pehrson81fdf8a2000-04-07 10:34:56 -0500675#endif
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600676
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500677png_charp PNGAPI
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -0600678png_get_copyright(png_structp png_ptr)
679{
Glenn Randers-Pehrson5b5dcf82004-07-17 22:45:44 -0500680 if (&png_ptr != NULL) /* silence compiler warning about unused png_ptr */
Glenn Randers-Pehrson37f116a2004-08-15 07:15:39 -0500681 return ((png_charp) "\n libpng version 1.2.6 - August 15, 2004\n\
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500682 Copyright (c) 1998-2004 Glenn Randers-Pehrson\n\
Glenn Randers-Pehrson73d57cb2002-03-25 18:49:08 -0600683 Copyright (c) 1996-1997 Andreas Dilger\n\
684 Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc.\n");
Glenn Randers-Pehrson4766a242000-07-17 06:17:09 -0500685 return ((png_charp) "");
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -0600686}
Glenn Randers-Pehrsonbcfd15d1999-10-01 14:22:25 -0500687
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600688/* The following return the library version as a short string in the
Glenn Randers-Pehrson5b5dcf82004-07-17 22:45:44 -0500689 * format 1.0.0 through 99.99.99zz. To get the version of *.h files
690 * used with your application, print out PNG_LIBPNG_VER_STRING, which
691 * is defined in png.h.
692 * Note: now there is no difference between png_get_libpng_ver() and
693 * png_get_header_ver(). Due to the version_nn_nn_nn typedef guard,
694 * it is guaranteed that png.c uses the correct version of png.h.
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600695 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500696png_charp PNGAPI
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600697png_get_libpng_ver(png_structp png_ptr)
698{
699 /* Version of *.c files used when building libpng */
Glenn Randers-Pehrson5b5dcf82004-07-17 22:45:44 -0500700 if (&png_ptr != NULL) /* silence compiler warning about unused png_ptr */
701 return ((png_charp) PNG_LIBPNG_VER_STRING);
702 return ((png_charp) "");
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600703}
704
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500705png_charp PNGAPI
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600706png_get_header_ver(png_structp png_ptr)
707{
708 /* Version of *.h files used when building libpng */
Glenn Randers-Pehrson5b5dcf82004-07-17 22:45:44 -0500709 if (&png_ptr != NULL) /* silence compiler warning about unused png_ptr */
710 return ((png_charp) PNG_LIBPNG_VER_STRING);
711 return ((png_charp) "");
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600712}
713
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500714png_charp PNGAPI
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600715png_get_header_version(png_structp png_ptr)
716{
717 /* Returns longer string containing both version and date */
Glenn Randers-Pehrson5b5dcf82004-07-17 22:45:44 -0500718 if (&png_ptr != NULL) /* silence compiler warning about unused png_ptr */
719 return ((png_charp) PNG_HEADER_VERSION_STRING);
720 return ((png_charp) "");
Glenn Randers-Pehrson5379b241999-11-27 10:22:33 -0600721}
722
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600723#ifdef PNG_HANDLE_AS_UNKNOWN_SUPPORTED
Glenn Randers-Pehrsonc1bfe682002-03-06 22:08:00 -0600724int PNGAPI
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600725png_handle_as_unknown(png_structp png_ptr, png_bytep chunk_name)
726{
727 /* check chunk_name and return "keep" value if it's on the list, else 0 */
728 int i;
729 png_bytep p;
730 if((png_ptr == NULL && chunk_name == NULL) || png_ptr->num_chunk_list<=0)
731 return 0;
732 p=png_ptr->chunk_list+png_ptr->num_chunk_list*5-5;
733 for (i = png_ptr->num_chunk_list; i; i--, p-=5)
734 if (!png_memcmp(chunk_name, p, 4))
735 return ((int)*(p+4));
736 return 0;
737}
738#endif
Glenn Randers-Pehrson228bd392000-04-23 23:14:02 -0500739
740/* This function, added to libpng-1.0.6g, is untested. */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500741int PNGAPI
Glenn Randers-Pehrson228bd392000-04-23 23:14:02 -0500742png_reset_zstream(png_structp png_ptr)
743{
744 return (inflateReset(&png_ptr->zstream));
745}
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -0500746
Glenn Randers-Pehrson5e5c1e12000-11-10 12:26:19 -0600747/* This function was added to libpng-1.0.7 */
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -0500748png_uint_32 PNGAPI
749png_access_version_number(void)
750{
751 /* Version of *.c files used when building libpng */
Glenn Randers-Pehrson5b5dcf82004-07-17 22:45:44 -0500752 return((png_uint_32) PNG_LIBPNG_VER);
Glenn Randers-Pehrson1ef65b62000-05-12 06:19:53 -0500753}
Glenn Randers-Pehrson231e6872001-01-12 15:13:06 -0600754
Glenn Randers-Pehrson1fd5fb32001-05-06 05:34:26 -0500755
Glenn Randers-Pehrson73d57cb2002-03-25 18:49:08 -0600756#if !defined(PNG_1_0_X)
Glenn Randers-Pehrson1fd5fb32001-05-06 05:34:26 -0500757#if defined(PNG_ASSEMBLER_CODE_SUPPORTED)
758 /* GRR: could add this: && defined(PNG_MMX_CODE_SUPPORTED) */
759/* this INTERNAL function was added to libpng 1.2.0 */
760void /* PRIVATE */
761png_init_mmx_flags (png_structp png_ptr)
762{
763 png_ptr->mmx_rowbytes_threshold = 0;
764 png_ptr->mmx_bitdepth_threshold = 0;
765
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500766# if (defined(PNG_USE_PNGVCRD) || defined(PNG_USE_PNGGCCRD))
Glenn Randers-Pehrson1fd5fb32001-05-06 05:34:26 -0500767
768 png_ptr->asm_flags |= PNG_ASM_FLAG_MMX_SUPPORT_COMPILED;
769
Glenn Randers-Pehrson859665d2002-08-06 18:06:11 -0500770 if (png_mmx_support() > 0) {
Glenn Randers-Pehrson1fd5fb32001-05-06 05:34:26 -0500771 png_ptr->asm_flags |= PNG_ASM_FLAG_MMX_SUPPORT_IN_CPU
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500772# ifdef PNG_HAVE_ASSEMBLER_COMBINE_ROW
Glenn Randers-Pehrson1fd5fb32001-05-06 05:34:26 -0500773 | PNG_ASM_FLAG_MMX_READ_COMBINE_ROW
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500774# endif
775# ifdef PNG_HAVE_ASSEMBLER_READ_INTERLACE
Glenn Randers-Pehrson1fd5fb32001-05-06 05:34:26 -0500776 | PNG_ASM_FLAG_MMX_READ_INTERLACE
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500777# endif
778# ifndef PNG_HAVE_ASSEMBLER_READ_FILTER_ROW
Glenn Randers-Pehrson1fd5fb32001-05-06 05:34:26 -0500779 ;
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500780# else
Glenn Randers-Pehrson1fd5fb32001-05-06 05:34:26 -0500781 | PNG_ASM_FLAG_MMX_READ_FILTER_SUB
782 | PNG_ASM_FLAG_MMX_READ_FILTER_UP
783 | PNG_ASM_FLAG_MMX_READ_FILTER_AVG
784 | PNG_ASM_FLAG_MMX_READ_FILTER_PAETH ;
785
786 png_ptr->mmx_rowbytes_threshold = PNG_MMX_ROWBYTES_THRESHOLD_DEFAULT;
787 png_ptr->mmx_bitdepth_threshold = PNG_MMX_BITDEPTH_THRESHOLD_DEFAULT;
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500788# endif
Glenn Randers-Pehrson1fd5fb32001-05-06 05:34:26 -0500789 } else {
790 png_ptr->asm_flags &= ~( PNG_ASM_FLAG_MMX_SUPPORT_IN_CPU
791 | PNG_MMX_READ_FLAGS
792 | PNG_MMX_WRITE_FLAGS );
793 }
794
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500795# else /* !((PNGVCRD || PNGGCCRD) && PNG_ASSEMBLER_CODE_SUPPORTED)) */
Glenn Randers-Pehrson1fd5fb32001-05-06 05:34:26 -0500796
797 /* clear all MMX flags; no support is compiled in */
798 png_ptr->asm_flags &= ~( PNG_MMX_FLAGS );
799
Glenn Randers-Pehrson8b6a8892001-05-18 04:54:50 -0500800# endif /* ?(PNGVCRD || PNGGCCRD) */
Glenn Randers-Pehrson1fd5fb32001-05-06 05:34:26 -0500801}
802
803#endif /* !(PNG_ASSEMBLER_CODE_SUPPORTED) */
804
Glenn Randers-Pehrsone68f5a32001-05-14 09:20:53 -0500805/* this function was added to libpng 1.2.0 */
806#if !defined(PNG_USE_PNGGCCRD) && \
807 !(defined(PNG_ASSEMBLER_CODE_SUPPORTED) && defined(PNG_USE_PNGVCRD))
Glenn Randers-Pehrson231e6872001-01-12 15:13:06 -0600808int PNGAPI
809png_mmx_support(void)
810{
811 return -1;
812}
813#endif
Glenn Randers-Pehrson73d57cb2002-03-25 18:49:08 -0600814#endif /* PNG_1_0_X */
Glenn Randers-Pehrson5fea36f2004-07-28 08:20:44 -0500815
816#ifdef PNG_SIZE_T
817/* Added at libpng version 1.2.6 */
818 PNG_EXTERN png_size_t PNGAPI png_convert_size PNGARG((size_t size));
819png_size_t PNGAPI
820png_convert_size(size_t size)
821{
822 if (size > (png_size_t)-1)
823 PNG_ABORT(); /* We haven't got access to png_ptr, so no png_error() */
824 return ((png_size_t)size);
825}
826#endif /* PNG_SIZE_T */