blob: 1cec3768f5a5a9698380f1d5621c52c357bd2ec7 [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-Pehrsonf8b008c1999-09-18 10:54:36 -05004 * libpng version 1.0.4 - September 18, 1999
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06005 * Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.
6 * Copyright (c) 1996, 1997 Andreas Dilger
Glenn Randers-Pehrson87544ac1999-01-13 22:06:39 -06007 * Copyright (c) 1998, 1999 Glenn Randers-Pehrson
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -06008 *
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
Andreas Dilger47a0c421997-05-16 02:46:07 -050015/* Version information for C files. This had better match the version
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060016 * string defined in png.h.
17 */
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -060018
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -050019char png_libpng_ver[12] = "1.0.4";
Guy Schalnat51f0eb41995-09-26 05:22:39 -050020
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -060021/* Place to hold the signature string for a PNG file. */
Guy Schalnat6d764711995-12-19 03:22:19 -060022png_byte FARDATA png_sig[8] = {137, 80, 78, 71, 13, 10, 26, 10};
Guy Schalnat0d580581995-07-20 02:43:20 -050023
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060024/* Constant strings for known chunk types. If you need to add a chunk,
25 * add a string holding the name here. If you want to make the code
26 * portable to EBCDIC machines, use ASCII numbers, not characters.
27 */
Andreas Dilger47a0c421997-05-16 02:46:07 -050028png_byte FARDATA png_IHDR[5] = { 73, 72, 68, 82, '\0'};
29png_byte FARDATA png_IDAT[5] = { 73, 68, 65, 84, '\0'};
30png_byte FARDATA png_IEND[5] = { 73, 69, 78, 68, '\0'};
31png_byte FARDATA png_PLTE[5] = { 80, 76, 84, 69, '\0'};
32png_byte FARDATA png_bKGD[5] = { 98, 75, 71, 68, '\0'};
33png_byte FARDATA png_cHRM[5] = { 99, 72, 82, 77, '\0'};
34png_byte FARDATA png_gAMA[5] = {103, 65, 77, 65, '\0'};
35png_byte FARDATA png_hIST[5] = {104, 73, 83, 84, '\0'};
36png_byte FARDATA png_oFFs[5] = {111, 70, 70, 115, '\0'};
37png_byte FARDATA png_pCAL[5] = {112, 67, 65, 76, '\0'};
38png_byte FARDATA png_pHYs[5] = {112, 72, 89, 115, '\0'};
39png_byte FARDATA png_sBIT[5] = {115, 66, 73, 84, '\0'};
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060040png_byte FARDATA png_sRGB[5] = {115, 82, 71, 66, '\0'};
Andreas Dilger47a0c421997-05-16 02:46:07 -050041png_byte FARDATA png_tEXt[5] = {116, 69, 88, 116, '\0'};
42png_byte FARDATA png_tIME[5] = {116, 73, 77, 69, '\0'};
43png_byte FARDATA png_tRNS[5] = {116, 82, 78, 83, '\0'};
44png_byte FARDATA png_zTXt[5] = {122, 84, 88, 116, '\0'};
Guy Schalnat0d580581995-07-20 02:43:20 -050045
46/* arrays to facilitate easy interlacing - use pass (0 - 6) as index */
47
48/* start of interlace block */
Guy Schalnat6d764711995-12-19 03:22:19 -060049int FARDATA png_pass_start[] = {0, 4, 0, 2, 0, 1, 0};
Guy Schalnat0d580581995-07-20 02:43:20 -050050
51/* offset to next interlace block */
Guy Schalnat6d764711995-12-19 03:22:19 -060052int FARDATA png_pass_inc[] = {8, 8, 4, 4, 2, 2, 1};
Guy Schalnat0d580581995-07-20 02:43:20 -050053
54/* start of interlace block in the y direction */
Guy Schalnat6d764711995-12-19 03:22:19 -060055int FARDATA png_pass_ystart[] = {0, 0, 4, 0, 2, 0, 1};
Guy Schalnat0d580581995-07-20 02:43:20 -050056
57/* offset to next interlace block in the y direction */
Guy Schalnat6d764711995-12-19 03:22:19 -060058int FARDATA png_pass_yinc[] = {8, 8, 8, 4, 4, 2, 2};
Guy Schalnat0d580581995-07-20 02:43:20 -050059
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060060/* Width of interlace block. This is not currently used - if you need
61 * it, uncomment it here and in png.h
Guy Schalnat6d764711995-12-19 03:22:19 -060062int FARDATA png_pass_width[] = {8, 4, 4, 2, 2, 1, 1};
Guy Schalnat0d580581995-07-20 02:43:20 -050063*/
64
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060065/* Height of interlace block. This is not currently used - if you need
66 * it, uncomment it here and in png.h
Guy Schalnat6d764711995-12-19 03:22:19 -060067int FARDATA png_pass_height[] = {8, 8, 4, 4, 2, 2, 1};
Guy Schalnat0d580581995-07-20 02:43:20 -050068*/
69
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060070/* Mask to determine which pixels are valid in a pass */
Guy Schalnat6d764711995-12-19 03:22:19 -060071int FARDATA png_pass_mask[] = {0x80, 0x08, 0x88, 0x22, 0xaa, 0x55, 0xff};
Guy Schalnat0d580581995-07-20 02:43:20 -050072
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060073/* Mask to determine which pixels to overwrite while displaying */
Guy Schalnat6d764711995-12-19 03:22:19 -060074int FARDATA png_pass_dsp_mask[] = {0xff, 0x0f, 0xff, 0x33, 0xff, 0x55, 0xff};
Guy Schalnat0d580581995-07-20 02:43:20 -050075
76
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060077/* Tells libpng that we have already handled the first "num_bytes" bytes
78 * of the PNG file signature. If the PNG data is embedded into another
79 * stream we can set num_bytes = 8 so that libpng will not attempt to read
80 * or write any of the magic bytes before it starts on the IHDR.
81 */
82void
83png_set_sig_bytes(png_structp png_ptr, int num_bytes)
84{
Andreas Dilger47a0c421997-05-16 02:46:07 -050085 png_debug(1, "in png_set_sig_bytes\n");
Andreas Dilger02ad0ef1997-01-17 01:34:35 -060086 if (num_bytes > 8)
87 png_error(png_ptr, "Too many bytes for PNG signature.");
88
89 png_ptr->sig_bytes = num_bytes < 0 ? 0 : num_bytes;
90}
91
92/* Checks whether the supplied bytes match the PNG signature. We allow
93 * checking less than the full 8-byte signature so that those apps that
94 * already read the first few bytes of a file to determine the file type
95 * can simply check the remaining bytes for extra assurance. Returns
96 * an integer less than, equal to, or greater than zero if sig is found,
97 * respectively, to be less than, to match, or be greater than the correct
98 * PNG signature (this is the same behaviour as strcmp, memcmp, etc).
99 */
100int
Andreas Dilger47a0c421997-05-16 02:46:07 -0500101png_sig_cmp(png_bytep sig, png_size_t start, png_size_t num_to_check)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600102{
103 if (num_to_check > 8)
104 num_to_check = 8;
105 else if (num_to_check < 1)
Glenn Randers-Pehrsonb2120021998-01-31 20:07:59 -0600106 return (0);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600107
Andreas Dilger47a0c421997-05-16 02:46:07 -0500108 if (start > 7)
Glenn Randers-Pehrsonb2120021998-01-31 20:07:59 -0600109 return (0);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600110
111 if (start + num_to_check > 8)
112 num_to_check = 8 - start;
113
Glenn Randers-Pehrsonb2120021998-01-31 20:07:59 -0600114 return ((int)(png_memcmp(&sig[start], &png_sig[start], num_to_check)));
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600115}
116
117/* (Obsolete) function to check signature bytes. It does not allow one
Glenn Randers-Pehrsonc9442291999-01-06 21:50:16 -0600118 * to check a partial signature. This function might be removed in the
119 * future - use png_sig_cmp(). Returns true (nonzero) if the file is a PNG.
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600120 */
Guy Schalnat0d580581995-07-20 02:43:20 -0500121int
Guy Schalnat6d764711995-12-19 03:22:19 -0600122png_check_sig(png_bytep sig, int num)
Guy Schalnat0d580581995-07-20 02:43:20 -0500123{
Glenn Randers-Pehrsonb2120021998-01-31 20:07:59 -0600124 return ((int)!png_sig_cmp(sig, (png_size_t)0, (png_size_t)num));
Guy Schalnat0d580581995-07-20 02:43:20 -0500125}
126
127/* Function to allocate memory for zlib. */
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500128voidpf
129png_zalloc(voidpf png_ptr, uInt items, uInt size)
Guy Schalnat0d580581995-07-20 02:43:20 -0500130{
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500131 png_uint_32 num_bytes = (png_uint_32)items * size;
132 png_voidp ptr = (png_voidp)png_malloc((png_structp)png_ptr, num_bytes);
Guy Schalnat6d764711995-12-19 03:22:19 -0600133
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500134 if (num_bytes > (png_uint_32)0x8000L)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600135 {
136 png_memset(ptr, 0, (png_size_t)0x8000L);
137 png_memset((png_bytep)ptr + (png_size_t)0x8000L, 0,
138 (png_size_t)(num_bytes - (png_uint_32)0x8000L));
139 }
140 else
141 {
142 png_memset(ptr, 0, (png_size_t)num_bytes);
143 }
Glenn Randers-Pehrsonb2120021998-01-31 20:07:59 -0600144 return ((voidpf)ptr);
Guy Schalnat0d580581995-07-20 02:43:20 -0500145}
146
147/* function to free memory for zlib */
148void
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500149png_zfree(voidpf png_ptr, voidpf ptr)
Guy Schalnat0d580581995-07-20 02:43:20 -0500150{
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600151 png_free((png_structp)png_ptr, (png_voidp)ptr);
Guy Schalnat0d580581995-07-20 02:43:20 -0500152}
153
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600154/* Reset the CRC variable to 32 bits of 1's. Care must be taken
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600155 * in case CRC is > 32 bits to leave the top bits 0.
156 */
Guy Schalnat0d580581995-07-20 02:43:20 -0500157void
Guy Schalnat6d764711995-12-19 03:22:19 -0600158png_reset_crc(png_structp png_ptr)
Guy Schalnat0d580581995-07-20 02:43:20 -0500159{
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600160 png_ptr->crc = crc32(0, Z_NULL, 0);
Guy Schalnat0d580581995-07-20 02:43:20 -0500161}
162
Andreas Dilger47a0c421997-05-16 02:46:07 -0500163/* Calculate the CRC over a section of data. We can only pass as
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600164 * much data to this routine as the largest single buffer size. We
165 * also check that this data will actually be used before going to the
166 * trouble of calculating it.
167 */
Guy Schalnat0d580581995-07-20 02:43:20 -0500168void
Andreas Dilger47a0c421997-05-16 02:46:07 -0500169png_calculate_crc(png_structp png_ptr, png_bytep ptr, png_size_t length)
Guy Schalnat0d580581995-07-20 02:43:20 -0500170{
Andreas Dilger47a0c421997-05-16 02:46:07 -0500171 int need_crc = 1;
172
173 if (png_ptr->chunk_name[0] & 0x20) /* ancillary */
174 {
175 if ((png_ptr->flags & PNG_FLAG_CRC_ANCILLARY_MASK) ==
176 (PNG_FLAG_CRC_ANCILLARY_USE | PNG_FLAG_CRC_ANCILLARY_NOWARN))
177 need_crc = 0;
178 }
179 else /* critical */
180 {
181 if (png_ptr->flags & PNG_FLAG_CRC_CRITICAL_IGNORE)
182 need_crc = 0;
183 }
184
185 if (need_crc)
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -0600186 png_ptr->crc = crc32(png_ptr->crc, ptr, (uInt)length);
Guy Schalnat0d580581995-07-20 02:43:20 -0500187}
Guy Schalnate5a37791996-06-05 15:50:50 -0500188
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600189/* Allocate the memory for an info_struct for the application. We don't
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600190 * really need the png_ptr, but it could potentially be useful in the
191 * future. This should be used in favour of malloc(sizeof(png_info))
192 * and png_info_init() so that applications that want to use a shared
193 * libpng don't have to be recompiled if png_info changes size.
194 */
Guy Schalnate5a37791996-06-05 15:50:50 -0500195png_infop
196png_create_info_struct(png_structp png_ptr)
197{
198 png_infop info_ptr;
199
Andreas Dilger47a0c421997-05-16 02:46:07 -0500200 png_debug(1, "in png_create_info_struct\n");
Glenn Randers-Pehrsona357b991998-02-08 20:56:40 -0600201 if(png_ptr == NULL) return (NULL);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500202#ifdef PNG_USER_MEM_SUPPORTED
203 if ((info_ptr = (png_infop)png_create_struct_2(PNG_STRUCT_INFO,
204 png_ptr->malloc_fn)) != NULL)
205#else
Guy Schalnate5a37791996-06-05 15:50:50 -0500206 if ((info_ptr = (png_infop)png_create_struct(PNG_STRUCT_INFO)) != NULL)
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500207#endif
Guy Schalnate5a37791996-06-05 15:50:50 -0500208 {
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600209 png_info_init(info_ptr);
Guy Schalnate5a37791996-06-05 15:50:50 -0500210 }
211
Glenn Randers-Pehrsonb2120021998-01-31 20:07:59 -0600212 return (info_ptr);
Guy Schalnate5a37791996-06-05 15:50:50 -0500213}
214
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600215/* This function frees the memory associated with a single info struct.
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600216 * Normally, one would use either png_destroy_read_struct() or
217 * png_destroy_write_struct() to free an info struct, but this may be
218 * useful for some applications.
219 */
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500220void
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600221png_destroy_info_struct(png_structp png_ptr, png_infopp info_ptr_ptr)
222{
223 png_infop info_ptr = NULL;
224
Andreas Dilger47a0c421997-05-16 02:46:07 -0500225 png_debug(1, "in png_destroy_info_struct\n");
226 if (info_ptr_ptr != NULL)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600227 info_ptr = *info_ptr_ptr;
228
Andreas Dilger47a0c421997-05-16 02:46:07 -0500229 if (info_ptr != NULL)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600230 {
231 png_info_destroy(png_ptr, info_ptr);
232
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500233#ifdef PNG_USER_MEM_SUPPORTED
234 png_destroy_struct_2((png_voidp)info_ptr, png_ptr->free_fn);
235#else
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600236 png_destroy_struct((png_voidp)info_ptr);
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500237#endif
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600238 *info_ptr_ptr = (png_infop)NULL;
239 }
240}
241
242/* Initialize the info structure. This is now an internal function (0.89)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600243 * and applications using it are urged to use png_create_info_struct()
244 * instead.
245 */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600246void
247png_info_init(png_infop info_ptr)
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500248{
Andreas Dilger47a0c421997-05-16 02:46:07 -0500249 png_debug(1, "in png_info_init\n");
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500250 /* set everything to 0 */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600251 png_memset(info_ptr, 0, sizeof (png_info));
252}
253
254/* This is an internal routine to free any memory that the info struct is
Andreas Dilger47a0c421997-05-16 02:46:07 -0500255 * pointing to before re-using it or freeing the struct itself. Recall
256 * that png_free() checks for NULL pointers for us.
257 */
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600258void
259png_info_destroy(png_structp png_ptr, png_infop info_ptr)
260{
261#if defined(PNG_READ_tEXt_SUPPORTED) || defined(PNG_READ_zTXt_SUPPORTED)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500262 png_debug(1, "in png_info_destroy\n");
263 if (info_ptr->text != NULL)
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600264 {
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500265 int i;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500266 for (i = 0; i < info_ptr->num_text; i++)
267 {
268 png_free(png_ptr, info_ptr->text[i].key);
269 }
270 png_free(png_ptr, info_ptr->text);
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600271 }
Andreas Dilger47a0c421997-05-16 02:46:07 -0500272#endif
273#if defined(PNG_READ_pCAL_SUPPORTED)
274 png_free(png_ptr, info_ptr->pcal_purpose);
275 png_free(png_ptr, info_ptr->pcal_units);
276 if (info_ptr->pcal_params != NULL)
277 {
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500278 int i;
Glenn Randers-Pehrson0f881d61998-02-07 10:20:57 -0600279 for (i = 0; i < (int)info_ptr->pcal_nparams; i++)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500280 {
281 png_free(png_ptr, info_ptr->pcal_params[i]);
282 }
283 png_free(png_ptr, info_ptr->pcal_params);
284 }
Andreas Dilger02ad0ef1997-01-17 01:34:35 -0600285#endif
286
287 png_info_init(info_ptr);
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500288}
Guy Schalnat0d580581995-07-20 02:43:20 -0500289
Guy Schalnate5a37791996-06-05 15:50:50 -0500290/* This function returns a pointer to the io_ptr associated with the user
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600291 * functions. The application should free any memory associated with this
292 * pointer before png_write_destroy() or png_read_destroy() are called.
293 */
Guy Schalnate5a37791996-06-05 15:50:50 -0500294png_voidp
295png_get_io_ptr(png_structp png_ptr)
296{
Glenn Randers-Pehrsonb2120021998-01-31 20:07:59 -0600297 return (png_ptr->io_ptr);
Guy Schalnate5a37791996-06-05 15:50:50 -0500298}
Andreas Dilger47a0c421997-05-16 02:46:07 -0500299
300#if !defined(PNG_NO_STDIO)
301/* Initialize the default input/output functions for the PNG file. If you
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600302 * use your own read or write routines, you can call either png_set_read_fn()
303 * or png_set_write_fn() instead of png_init_io().
304 */
Guy Schalnate5a37791996-06-05 15:50:50 -0500305void
306png_init_io(png_structp png_ptr, FILE *fp)
307{
Andreas Dilger47a0c421997-05-16 02:46:07 -0500308 png_debug(1, "in png_init_io\n");
Guy Schalnate5a37791996-06-05 15:50:50 -0500309 png_ptr->io_ptr = (png_voidp)fp;
310}
Andreas Dilger47a0c421997-05-16 02:46:07 -0500311#endif
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500312
313#if defined(PNG_TIME_RFC1123_SUPPORTED)
314/* Convert the supplied time into an RFC 1123 string suitable for use in
315 * a "Creation Time" or other text-based time string.
316 */
317png_charp
318png_convert_to_rfc1123(png_structp png_ptr, png_timep ptime)
319{
320 static PNG_CONST char short_months[12][4] =
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -0600321 {"Jan", "Feb", "Mar", "Apr", "May", "Jun",
322 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"};
Glenn Randers-Pehrsonf7d1a171998-06-06 15:31:35 -0500323
324 if (png_ptr->time_buffer == NULL)
325 {
326 png_ptr->time_buffer = (png_charp)png_malloc(png_ptr, (png_uint_32)(29*
327 sizeof(char)));
328 }
329
330#ifdef USE_FAR_KEYWORD
331 {
332 char near_time_buf[29];
333 sprintf(near_time_buf, "%d %s %d %02d:%02d:%02d +0000",
334 ptime->day % 32, short_months[(ptime->month - 1) % 12],
335 ptime->year, ptime->hour % 24, ptime->minute % 60,
336 ptime->second % 61);
337 png_memcpy(png_ptr->time_buffer, near_time_buf,
338 29*sizeof(char));
339 }
340#else
341 sprintf(png_ptr->time_buffer, "%d %s %d %02d:%02d:%02d +0000",
342 ptime->day % 32, short_months[(ptime->month - 1) % 12],
343 ptime->year, ptime->hour % 24, ptime->minute % 60,
344 ptime->second % 61);
345#endif
346 return ((png_charp)png_ptr->time_buffer);
347}
348#endif /* PNG_TIME_RFC1123_SUPPORTED */
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -0600349
350png_charp
351png_get_copyright(png_structp png_ptr)
352{
Glenn Randers-Pehrsonc9442291999-01-06 21:50:16 -0600353 if(png_ptr == NULL)
354 /* silence compiler warning about unused png_ptr */ ;
Glenn Randers-Pehrsonf8b008c1999-09-18 10:54:36 -0500355 return("\n libpng version 1.0.4 - September 18, 1999\n\
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -0600356 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.\n\
357 Copyright (c) 1996, 1997 Andreas Dilger\n\
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500358 Copyright (c) 1998, 1999 Glenn Randers-Pehrson\n");
Glenn Randers-Pehrson5c6aeb21998-12-29 11:47:59 -0600359}