Add a new cache.
[xy_vsfilter.git] / src / libpng / png.c
blob7f268b993d3a465026b87a9944b09c2b684597be
2 /* png.c - location for general purpose libpng functions
4 * Last changed in libpng 1.2.37 [June 4, 2009]
5 * For conditions of distribution and use, see copyright notice in png.h
6 * Copyright (c) 1998-2009 Glenn Randers-Pehrson
7 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
8 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
9 */
11 #define PNG_INTERNAL
12 #define PNG_NO_EXTERN
13 #include "png.h"
15 /* Generate a compiler error if there is an old png.h in the search path. */
16 typedef version_1_2_37 Your_png_h_is_not_version_1_2_37;
18 /* Version information for C files. This had better match the version
19 * string defined in png.h. */
21 #ifdef PNG_USE_GLOBAL_ARRAYS
22 /* png_libpng_ver was changed to a function in version 1.0.5c */
23 PNG_CONST char png_libpng_ver[18] = PNG_LIBPNG_VER_STRING;
25 #ifdef PNG_READ_SUPPORTED
27 /* png_sig was changed to a function in version 1.0.5c */
28 /* Place to hold the signature string for a PNG file. */
29 PNG_CONST png_byte FARDATA png_sig[8] = {137, 80, 78, 71, 13, 10, 26, 10};
30 #endif /* PNG_READ_SUPPORTED */
32 /* Invoke global declarations for constant strings for known chunk types */
33 PNG_IHDR;
34 PNG_IDAT;
35 PNG_IEND;
36 PNG_PLTE;
37 PNG_bKGD;
38 PNG_cHRM;
39 PNG_gAMA;
40 PNG_hIST;
41 PNG_iCCP;
42 PNG_iTXt;
43 PNG_oFFs;
44 PNG_pCAL;
45 PNG_sCAL;
46 PNG_pHYs;
47 PNG_sBIT;
48 PNG_sPLT;
49 PNG_sRGB;
50 PNG_tEXt;
51 PNG_tIME;
52 PNG_tRNS;
53 PNG_zTXt;
55 #ifdef PNG_READ_SUPPORTED
56 /* Arrays to facilitate easy interlacing - use pass (0 - 6) as index */
58 /* Start of interlace block */
59 PNG_CONST int FARDATA png_pass_start[] = {0, 4, 0, 2, 0, 1, 0};
61 /* Offset to next interlace block */
62 PNG_CONST int FARDATA png_pass_inc[] = {8, 8, 4, 4, 2, 2, 1};
64 /* Start of interlace block in the y direction */
65 PNG_CONST int FARDATA png_pass_ystart[] = {0, 0, 4, 0, 2, 0, 1};
67 /* Offset to next interlace block in the y direction */
68 PNG_CONST int FARDATA png_pass_yinc[] = {8, 8, 8, 4, 4, 2, 2};
70 /* Height of interlace block. This is not currently used - if you need
71 * it, uncomment it here and in png.h
72 PNG_CONST int FARDATA png_pass_height[] = {8, 8, 4, 4, 2, 2, 1};
75 /* Mask to determine which pixels are valid in a pass */
76 PNG_CONST int FARDATA png_pass_mask[] = {0x80, 0x08, 0x88, 0x22, 0xaa, 0x55, 0xff};
78 /* Mask to determine which pixels to overwrite while displaying */
79 PNG_CONST int FARDATA png_pass_dsp_mask[]
80 = {0xff, 0x0f, 0xff, 0x33, 0xff, 0x55, 0xff};
82 #endif /* PNG_READ_SUPPORTED */
83 #endif /* PNG_USE_GLOBAL_ARRAYS */
85 /* 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.
91 #ifdef PNG_READ_SUPPORTED
92 void PNGAPI
93 png_set_sig_bytes(png_structp png_ptr, int num_bytes)
95 if (png_ptr == NULL)
96 return;
97 png_debug(1, "in png_set_sig_bytes");
98 if (num_bytes > 8)
99 png_error(png_ptr, "Too many bytes for PNG signature.");
101 png_ptr->sig_bytes = (png_byte)(num_bytes < 0 ? 0 : num_bytes);
104 /* Checks whether the supplied bytes match the PNG signature. We allow
105 * checking less than the full 8-byte signature so that those apps that
106 * already read the first few bytes of a file to determine the file type
107 * can simply check the remaining bytes for extra assurance. Returns
108 * an integer less than, equal to, or greater than zero if sig is found,
109 * respectively, to be less than, to match, or be greater than the correct
110 * PNG signature (this is the same behaviour as strcmp, memcmp, etc).
112 int PNGAPI
113 png_sig_cmp(png_bytep sig, png_size_t start, png_size_t num_to_check)
115 png_byte png_signature[8] = {137, 80, 78, 71, 13, 10, 26, 10};
116 if (num_to_check > 8)
117 num_to_check = 8;
118 else if (num_to_check < 1)
119 return (-1);
121 if (start > 7)
122 return (-1);
124 if (start + num_to_check > 8)
125 num_to_check = 8 - start;
127 return ((int)(png_memcmp(&sig[start], &png_signature[start], num_to_check)));
130 #if defined(PNG_1_0_X) || defined(PNG_1_2_X)
131 /* (Obsolete) function to check signature bytes. It does not allow one
132 * to check a partial signature. This function might be removed in the
133 * future - use png_sig_cmp(). Returns true (nonzero) if the file is PNG.
135 int PNGAPI
136 png_check_sig(png_bytep sig, int num)
138 return ((int)!png_sig_cmp(sig, (png_size_t)0, (png_size_t)num));
140 #endif
141 #endif /* PNG_READ_SUPPORTED */
143 #if defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED)
144 /* Function to allocate memory for zlib and clear it to 0. */
145 #ifdef PNG_1_0_X
146 voidpf PNGAPI
147 #else
148 voidpf /* private */
149 #endif
150 png_zalloc(voidpf png_ptr, uInt items, uInt size)
152 png_voidp ptr;
153 png_structp p=(png_structp)png_ptr;
154 png_uint_32 save_flags=p->flags;
155 png_uint_32 num_bytes;
157 if (png_ptr == NULL)
158 return (NULL);
159 if (items > PNG_UINT_32_MAX/size)
161 png_warning (p, "Potential overflow in png_zalloc()");
162 return (NULL);
164 num_bytes = (png_uint_32)items * size;
166 p->flags|=PNG_FLAG_MALLOC_NULL_MEM_OK;
167 ptr = (png_voidp)png_malloc((png_structp)png_ptr, num_bytes);
168 p->flags=save_flags;
170 #if defined(PNG_1_0_X) && !defined(PNG_NO_ZALLOC_ZERO)
171 if (ptr == NULL)
172 return ((voidpf)ptr);
174 if (num_bytes > (png_uint_32)0x8000L)
176 png_memset(ptr, 0, (png_size_t)0x8000L);
177 png_memset((png_bytep)ptr + (png_size_t)0x8000L, 0,
178 (png_size_t)(num_bytes - (png_uint_32)0x8000L));
180 else
182 png_memset(ptr, 0, (png_size_t)num_bytes);
184 #endif
185 return ((voidpf)ptr);
188 /* Function to free memory for zlib */
189 #ifdef PNG_1_0_X
190 void PNGAPI
191 #else
192 void /* private */
193 #endif
194 png_zfree(voidpf png_ptr, voidpf ptr)
196 png_free((png_structp)png_ptr, (png_voidp)ptr);
199 /* Reset the CRC variable to 32 bits of 1's. Care must be taken
200 * in case CRC is > 32 bits to leave the top bits 0.
202 void /* PRIVATE */
203 png_reset_crc(png_structp png_ptr)
205 png_ptr->crc = crc32(0, Z_NULL, 0);
208 /* Calculate the CRC over a section of data. We can only pass as
209 * much data to this routine as the largest single buffer size. We
210 * also check that this data will actually be used before going to the
211 * trouble of calculating it.
213 void /* PRIVATE */
214 png_calculate_crc(png_structp png_ptr, png_bytep ptr, png_size_t length)
216 int need_crc = 1;
218 if (png_ptr->chunk_name[0] & 0x20) /* ancillary */
220 if ((png_ptr->flags & PNG_FLAG_CRC_ANCILLARY_MASK) ==
221 (PNG_FLAG_CRC_ANCILLARY_USE | PNG_FLAG_CRC_ANCILLARY_NOWARN))
222 need_crc = 0;
224 else /* critical */
226 if (png_ptr->flags & PNG_FLAG_CRC_CRITICAL_IGNORE)
227 need_crc = 0;
230 if (need_crc)
231 png_ptr->crc = crc32(png_ptr->crc, ptr, (uInt)length);
234 /* Allocate the memory for an info_struct for the application. We don't
235 * really need the png_ptr, but it could potentially be useful in the
236 * future. This should be used in favour of malloc(png_sizeof(png_info))
237 * and png_info_init() so that applications that want to use a shared
238 * libpng don't have to be recompiled if png_info changes size.
240 png_infop PNGAPI
241 png_create_info_struct(png_structp png_ptr)
243 png_infop info_ptr;
245 png_debug(1, "in png_create_info_struct");
246 if (png_ptr == NULL)
247 return (NULL);
248 #ifdef PNG_USER_MEM_SUPPORTED
249 info_ptr = (png_infop)png_create_struct_2(PNG_STRUCT_INFO,
250 png_ptr->malloc_fn, png_ptr->mem_ptr);
251 #else
252 info_ptr = (png_infop)png_create_struct(PNG_STRUCT_INFO);
253 #endif
254 if (info_ptr != NULL)
255 png_info_init_3(&info_ptr, png_sizeof(png_info));
257 return (info_ptr);
260 /* This function frees the memory associated with a single info struct.
261 * Normally, one would use either png_destroy_read_struct() or
262 * png_destroy_write_struct() to free an info struct, but this may be
263 * useful for some applications.
265 void PNGAPI
266 png_destroy_info_struct(png_structp png_ptr, png_infopp info_ptr_ptr)
268 png_infop info_ptr = NULL;
269 if (png_ptr == NULL)
270 return;
272 png_debug(1, "in png_destroy_info_struct");
273 if (info_ptr_ptr != NULL)
274 info_ptr = *info_ptr_ptr;
276 if (info_ptr != NULL)
278 png_info_destroy(png_ptr, info_ptr);
280 #ifdef PNG_USER_MEM_SUPPORTED
281 png_destroy_struct_2((png_voidp)info_ptr, png_ptr->free_fn,
282 png_ptr->mem_ptr);
283 #else
284 png_destroy_struct((png_voidp)info_ptr);
285 #endif
286 *info_ptr_ptr = NULL;
290 /* Initialize the info structure. This is now an internal function (0.89)
291 * and applications using it are urged to use png_create_info_struct()
292 * instead.
294 #if defined(PNG_1_0_X) || defined(PNG_1_2_X)
295 #undef png_info_init
296 void PNGAPI
297 png_info_init(png_infop info_ptr)
299 /* We only come here via pre-1.0.12-compiled applications */
300 png_info_init_3(&info_ptr, 0);
302 #endif
304 void PNGAPI
305 png_info_init_3(png_infopp ptr_ptr, png_size_t png_info_struct_size)
307 png_infop info_ptr = *ptr_ptr;
309 if (info_ptr == NULL)
310 return;
312 png_debug(1, "in png_info_init_3");
314 if (png_sizeof(png_info) > png_info_struct_size)
316 png_destroy_struct(info_ptr);
317 info_ptr = (png_infop)png_create_struct(PNG_STRUCT_INFO);
318 *ptr_ptr = info_ptr;
321 /* Set everything to 0 */
322 png_memset(info_ptr, 0, png_sizeof(png_info));
325 #ifdef PNG_FREE_ME_SUPPORTED
326 void PNGAPI
327 png_data_freer(png_structp png_ptr, png_infop info_ptr,
328 int freer, png_uint_32 mask)
330 png_debug(1, "in png_data_freer");
331 if (png_ptr == NULL || info_ptr == NULL)
332 return;
333 if (freer == PNG_DESTROY_WILL_FREE_DATA)
334 info_ptr->free_me |= mask;
335 else if (freer == PNG_USER_WILL_FREE_DATA)
336 info_ptr->free_me &= ~mask;
337 else
338 png_warning(png_ptr,
339 "Unknown freer parameter in png_data_freer.");
341 #endif
343 void PNGAPI
344 png_free_data(png_structp png_ptr, png_infop info_ptr, png_uint_32 mask,
345 int num)
347 png_debug(1, "in png_free_data");
348 if (png_ptr == NULL || info_ptr == NULL)
349 return;
351 #if defined(PNG_TEXT_SUPPORTED)
352 /* Free text item num or (if num == -1) all text items */
353 #ifdef PNG_FREE_ME_SUPPORTED
354 if ((mask & PNG_FREE_TEXT) & info_ptr->free_me)
355 #else
356 if (mask & PNG_FREE_TEXT)
357 #endif
359 if (num != -1)
361 if (info_ptr->text && info_ptr->text[num].key)
363 png_free(png_ptr, info_ptr->text[num].key);
364 info_ptr->text[num].key = NULL;
367 else
369 int i;
370 for (i = 0; i < info_ptr->num_text; i++)
371 png_free_data(png_ptr, info_ptr, PNG_FREE_TEXT, i);
372 png_free(png_ptr, info_ptr->text);
373 info_ptr->text = NULL;
374 info_ptr->num_text=0;
377 #endif
379 #if defined(PNG_tRNS_SUPPORTED)
380 /* Free any tRNS entry */
381 #ifdef PNG_FREE_ME_SUPPORTED
382 if ((mask & PNG_FREE_TRNS) & info_ptr->free_me)
383 #else
384 if ((mask & PNG_FREE_TRNS) && (png_ptr->flags & PNG_FLAG_FREE_TRNS))
385 #endif
387 png_free(png_ptr, info_ptr->trans);
388 info_ptr->trans = NULL;
389 info_ptr->valid &= ~PNG_INFO_tRNS;
390 #ifndef PNG_FREE_ME_SUPPORTED
391 png_ptr->flags &= ~PNG_FLAG_FREE_TRNS;
392 #endif
394 #endif
396 #if defined(PNG_sCAL_SUPPORTED)
397 /* Free any sCAL entry */
398 #ifdef PNG_FREE_ME_SUPPORTED
399 if ((mask & PNG_FREE_SCAL) & info_ptr->free_me)
400 #else
401 if (mask & PNG_FREE_SCAL)
402 #endif
404 #if defined(PNG_FIXED_POINT_SUPPORTED) && !defined(PNG_FLOATING_POINT_SUPPORTED)
405 png_free(png_ptr, info_ptr->scal_s_width);
406 png_free(png_ptr, info_ptr->scal_s_height);
407 info_ptr->scal_s_width = NULL;
408 info_ptr->scal_s_height = NULL;
409 #endif
410 info_ptr->valid &= ~PNG_INFO_sCAL;
412 #endif
414 #if defined(PNG_pCAL_SUPPORTED)
415 /* Free any pCAL entry */
416 #ifdef PNG_FREE_ME_SUPPORTED
417 if ((mask & PNG_FREE_PCAL) & info_ptr->free_me)
418 #else
419 if (mask & PNG_FREE_PCAL)
420 #endif
422 png_free(png_ptr, info_ptr->pcal_purpose);
423 png_free(png_ptr, info_ptr->pcal_units);
424 info_ptr->pcal_purpose = NULL;
425 info_ptr->pcal_units = NULL;
426 if (info_ptr->pcal_params != NULL)
428 int i;
429 for (i = 0; i < (int)info_ptr->pcal_nparams; i++)
431 png_free(png_ptr, info_ptr->pcal_params[i]);
432 info_ptr->pcal_params[i]=NULL;
434 png_free(png_ptr, info_ptr->pcal_params);
435 info_ptr->pcal_params = NULL;
437 info_ptr->valid &= ~PNG_INFO_pCAL;
439 #endif
441 #if defined(PNG_iCCP_SUPPORTED)
442 /* Free any iCCP entry */
443 #ifdef PNG_FREE_ME_SUPPORTED
444 if ((mask & PNG_FREE_ICCP) & info_ptr->free_me)
445 #else
446 if (mask & PNG_FREE_ICCP)
447 #endif
449 png_free(png_ptr, info_ptr->iccp_name);
450 png_free(png_ptr, info_ptr->iccp_profile);
451 info_ptr->iccp_name = NULL;
452 info_ptr->iccp_profile = NULL;
453 info_ptr->valid &= ~PNG_INFO_iCCP;
455 #endif
457 #if defined(PNG_sPLT_SUPPORTED)
458 /* Free a given sPLT entry, or (if num == -1) all sPLT entries */
459 #ifdef PNG_FREE_ME_SUPPORTED
460 if ((mask & PNG_FREE_SPLT) & info_ptr->free_me)
461 #else
462 if (mask & PNG_FREE_SPLT)
463 #endif
465 if (num != -1)
467 if (info_ptr->splt_palettes)
469 png_free(png_ptr, info_ptr->splt_palettes[num].name);
470 png_free(png_ptr, info_ptr->splt_palettes[num].entries);
471 info_ptr->splt_palettes[num].name = NULL;
472 info_ptr->splt_palettes[num].entries = NULL;
475 else
477 if (info_ptr->splt_palettes_num)
479 int i;
480 for (i = 0; i < (int)info_ptr->splt_palettes_num; i++)
481 png_free_data(png_ptr, info_ptr, PNG_FREE_SPLT, i);
483 png_free(png_ptr, info_ptr->splt_palettes);
484 info_ptr->splt_palettes = NULL;
485 info_ptr->splt_palettes_num = 0;
487 info_ptr->valid &= ~PNG_INFO_sPLT;
490 #endif
492 #if defined(PNG_UNKNOWN_CHUNKS_SUPPORTED)
493 if (png_ptr->unknown_chunk.data)
495 png_free(png_ptr, png_ptr->unknown_chunk.data);
496 png_ptr->unknown_chunk.data = NULL;
499 #ifdef PNG_FREE_ME_SUPPORTED
500 if ((mask & PNG_FREE_UNKN) & info_ptr->free_me)
501 #else
502 if (mask & PNG_FREE_UNKN)
503 #endif
505 if (num != -1)
507 if (info_ptr->unknown_chunks)
509 png_free(png_ptr, info_ptr->unknown_chunks[num].data);
510 info_ptr->unknown_chunks[num].data = NULL;
513 else
515 int i;
517 if (info_ptr->unknown_chunks_num)
519 for (i = 0; i < (int)info_ptr->unknown_chunks_num; i++)
520 png_free_data(png_ptr, info_ptr, PNG_FREE_UNKN, i);
522 png_free(png_ptr, info_ptr->unknown_chunks);
523 info_ptr->unknown_chunks = NULL;
524 info_ptr->unknown_chunks_num = 0;
528 #endif
530 #if defined(PNG_hIST_SUPPORTED)
531 /* Free any hIST entry */
532 #ifdef PNG_FREE_ME_SUPPORTED
533 if ((mask & PNG_FREE_HIST) & info_ptr->free_me)
534 #else
535 if ((mask & PNG_FREE_HIST) && (png_ptr->flags & PNG_FLAG_FREE_HIST))
536 #endif
538 png_free(png_ptr, info_ptr->hist);
539 info_ptr->hist = NULL;
540 info_ptr->valid &= ~PNG_INFO_hIST;
541 #ifndef PNG_FREE_ME_SUPPORTED
542 png_ptr->flags &= ~PNG_FLAG_FREE_HIST;
543 #endif
545 #endif
547 /* Free any PLTE entry that was internally allocated */
548 #ifdef PNG_FREE_ME_SUPPORTED
549 if ((mask & PNG_FREE_PLTE) & info_ptr->free_me)
550 #else
551 if ((mask & PNG_FREE_PLTE) && (png_ptr->flags & PNG_FLAG_FREE_PLTE))
552 #endif
554 png_zfree(png_ptr, info_ptr->palette);
555 info_ptr->palette = NULL;
556 info_ptr->valid &= ~PNG_INFO_PLTE;
557 #ifndef PNG_FREE_ME_SUPPORTED
558 png_ptr->flags &= ~PNG_FLAG_FREE_PLTE;
559 #endif
560 info_ptr->num_palette = 0;
563 #if defined(PNG_INFO_IMAGE_SUPPORTED)
564 /* Free any image bits attached to the info structure */
565 #ifdef PNG_FREE_ME_SUPPORTED
566 if ((mask & PNG_FREE_ROWS) & info_ptr->free_me)
567 #else
568 if (mask & PNG_FREE_ROWS)
569 #endif
571 if (info_ptr->row_pointers)
573 int row;
574 for (row = 0; row < (int)info_ptr->height; row++)
576 png_free(png_ptr, info_ptr->row_pointers[row]);
577 info_ptr->row_pointers[row]=NULL;
579 png_free(png_ptr, info_ptr->row_pointers);
580 info_ptr->row_pointers=NULL;
582 info_ptr->valid &= ~PNG_INFO_IDAT;
584 #endif
586 #ifdef PNG_FREE_ME_SUPPORTED
587 if (num == -1)
588 info_ptr->free_me &= ~mask;
589 else
590 info_ptr->free_me &= ~(mask & ~PNG_FREE_MUL);
591 #endif
594 /* This is an internal routine to free any memory that the info struct is
595 * pointing to before re-using it or freeing the struct itself. Recall
596 * that png_free() checks for NULL pointers for us.
598 void /* PRIVATE */
599 png_info_destroy(png_structp png_ptr, png_infop info_ptr)
601 png_debug(1, "in png_info_destroy");
603 png_free_data(png_ptr, info_ptr, PNG_FREE_ALL, -1);
605 #if defined(PNG_UNKNOWN_CHUNKS_SUPPORTED)
606 if (png_ptr->num_chunk_list)
608 png_free(png_ptr, png_ptr->chunk_list);
609 png_ptr->chunk_list=NULL;
610 png_ptr->num_chunk_list = 0;
612 #endif
614 png_info_init_3(&info_ptr, png_sizeof(png_info));
616 #endif /* defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED) */
618 /* This function returns a pointer to the io_ptr associated with the user
619 * functions. The application should free any memory associated with this
620 * pointer before png_write_destroy() or png_read_destroy() are called.
622 png_voidp PNGAPI
623 png_get_io_ptr(png_structp png_ptr)
625 if (png_ptr == NULL)
626 return (NULL);
627 return (png_ptr->io_ptr);
630 #if defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED)
631 #if !defined(PNG_NO_STDIO)
632 /* Initialize the default input/output functions for the PNG file. If you
633 * use your own read or write routines, you can call either png_set_read_fn()
634 * or png_set_write_fn() instead of png_init_io(). If you have defined
635 * PNG_NO_STDIO, you must use a function of your own because "FILE *" isn't
636 * necessarily available.
638 void PNGAPI
639 png_init_io(png_structp png_ptr, png_FILE_p fp)
641 png_debug(1, "in png_init_io");
642 if (png_ptr == NULL)
643 return;
644 png_ptr->io_ptr = (png_voidp)fp;
646 #endif
648 #if defined(PNG_TIME_RFC1123_SUPPORTED)
649 /* Convert the supplied time into an RFC 1123 string suitable for use in
650 * a "Creation Time" or other text-based time string.
652 png_charp PNGAPI
653 png_convert_to_rfc1123(png_structp png_ptr, png_timep ptime)
655 static PNG_CONST char short_months[12][4] =
656 {"Jan", "Feb", "Mar", "Apr", "May", "Jun",
657 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"};
659 if (png_ptr == NULL)
660 return (NULL);
661 if (png_ptr->time_buffer == NULL)
663 png_ptr->time_buffer = (png_charp)png_malloc(png_ptr, (png_uint_32)(29*
664 png_sizeof(char)));
667 #if defined(_WIN32_WCE)
669 wchar_t time_buf[29];
670 wsprintf(time_buf, TEXT("%d %S %d %02d:%02d:%02d +0000"),
671 ptime->day % 32, short_months[(ptime->month - 1) % 12],
672 ptime->year, ptime->hour % 24, ptime->minute % 60,
673 ptime->second % 61);
674 WideCharToMultiByte(CP_ACP, 0, time_buf, -1, png_ptr->time_buffer, 29,
675 NULL, NULL);
677 #else
678 #ifdef USE_FAR_KEYWORD
680 char near_time_buf[29];
681 png_snprintf6(near_time_buf, 29, "%d %s %d %02d:%02d:%02d +0000",
682 ptime->day % 32, short_months[(ptime->month - 1) % 12],
683 ptime->year, ptime->hour % 24, ptime->minute % 60,
684 ptime->second % 61);
685 png_memcpy(png_ptr->time_buffer, near_time_buf,
686 29*png_sizeof(char));
688 #else
689 png_snprintf6(png_ptr->time_buffer, 29, "%d %s %d %02d:%02d:%02d +0000",
690 ptime->day % 32, short_months[(ptime->month - 1) % 12],
691 ptime->year, ptime->hour % 24, ptime->minute % 60,
692 ptime->second % 61);
693 #endif
694 #endif /* _WIN32_WCE */
695 return ((png_charp)png_ptr->time_buffer);
697 #endif /* PNG_TIME_RFC1123_SUPPORTED */
699 #endif /* defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED) */
701 png_charp PNGAPI
702 png_get_copyright(png_structp png_ptr)
704 png_ptr = png_ptr; /* Silence compiler warning about unused png_ptr */
705 return ((png_charp) "\n libpng version 1.2.37 - June 4, 2009\n\
706 Copyright (c) 1998-2009 Glenn Randers-Pehrson\n\
707 Copyright (c) 1996-1997 Andreas Dilger\n\
708 Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc.\n");
711 /* The following return the library version as a short string in the
712 * format 1.0.0 through 99.99.99zz. To get the version of *.h files
713 * used with your application, print out PNG_LIBPNG_VER_STRING, which
714 * is defined in png.h.
715 * Note: now there is no difference between png_get_libpng_ver() and
716 * png_get_header_ver(). Due to the version_nn_nn_nn typedef guard,
717 * it is guaranteed that png.c uses the correct version of png.h.
719 png_charp PNGAPI
720 png_get_libpng_ver(png_structp png_ptr)
722 /* Version of *.c files used when building libpng */
723 png_ptr = png_ptr; /* Silence compiler warning about unused png_ptr */
724 return ((png_charp) PNG_LIBPNG_VER_STRING);
727 png_charp PNGAPI
728 png_get_header_ver(png_structp png_ptr)
730 /* Version of *.h files used when building libpng */
731 png_ptr = png_ptr; /* Silence compiler warning about unused png_ptr */
732 return ((png_charp) PNG_LIBPNG_VER_STRING);
735 png_charp PNGAPI
736 png_get_header_version(png_structp png_ptr)
738 /* Returns longer string containing both version and date */
739 png_ptr = png_ptr; /* Silence compiler warning about unused png_ptr */
740 return ((png_charp) PNG_HEADER_VERSION_STRING
741 #ifndef PNG_READ_SUPPORTED
742 " (NO READ SUPPORT)"
743 #endif
744 "\n");
747 #if defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED)
748 #ifdef PNG_HANDLE_AS_UNKNOWN_SUPPORTED
749 int PNGAPI
750 png_handle_as_unknown(png_structp png_ptr, png_bytep chunk_name)
752 /* Check chunk_name and return "keep" value if it's on the list, else 0 */
753 int i;
754 png_bytep p;
755 if (png_ptr == NULL || chunk_name == NULL || png_ptr->num_chunk_list<=0)
756 return 0;
757 p = png_ptr->chunk_list + png_ptr->num_chunk_list*5 - 5;
758 for (i = png_ptr->num_chunk_list; i; i--, p -= 5)
759 if (!png_memcmp(chunk_name, p, 4))
760 return ((int)*(p + 4));
761 return 0;
763 #endif
765 /* This function, added to libpng-1.0.6g, is untested. */
766 int PNGAPI
767 png_reset_zstream(png_structp png_ptr)
769 if (png_ptr == NULL)
770 return Z_STREAM_ERROR;
771 return (inflateReset(&png_ptr->zstream));
773 #endif /* defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED) */
775 /* This function was added to libpng-1.0.7 */
776 png_uint_32 PNGAPI
777 png_access_version_number(void)
779 /* Version of *.c files used when building libpng */
780 return((png_uint_32) PNG_LIBPNG_VER);
784 #if defined(PNG_READ_SUPPORTED) && defined(PNG_ASSEMBLER_CODE_SUPPORTED)
785 #if !defined(PNG_1_0_X)
786 /* This function was added to libpng 1.2.0 */
787 int PNGAPI
788 png_mmx_support(void)
790 /* Obsolete, to be removed from libpng-1.4.0 */
791 return -1;
793 #endif /* PNG_1_0_X */
794 #endif /* PNG_READ_SUPPORTED && PNG_ASSEMBLER_CODE_SUPPORTED */
796 #if defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED)
797 #ifdef PNG_SIZE_T
798 /* Added at libpng version 1.2.6 */
799 PNG_EXTERN png_size_t PNGAPI png_convert_size PNGARG((size_t size));
800 png_size_t PNGAPI
801 png_convert_size(size_t size)
803 if (size > (png_size_t)-1)
804 PNG_ABORT(); /* We haven't got access to png_ptr, so no png_error() */
805 return ((png_size_t)size);
807 #endif /* PNG_SIZE_T */
809 /* Added at libpng version 1.2.34 and 1.4.0 (moved from pngset.c) */
810 #if defined(PNG_cHRM_SUPPORTED)
811 #if !defined(PNG_NO_CHECK_cHRM)
814 * Multiply two 32-bit numbers, V1 and V2, using 32-bit
815 * arithmetic, to produce a 64 bit result in the HI/LO words.
817 * A B
818 * x C D
819 * ------
820 * AD || BD
821 * AC || CB || 0
823 * where A and B are the high and low 16-bit words of V1,
824 * C and D are the 16-bit words of V2, AD is the product of
825 * A and D, and X || Y is (X << 16) + Y.
828 void png_64bit_product (long v1, long v2, unsigned long *hi_product,
829 unsigned long *lo_product)
831 int a, b, c, d;
832 long lo, hi, x, y;
834 a = (v1 >> 16) & 0xffff;
835 b = v1 & 0xffff;
836 c = (v2 >> 16) & 0xffff;
837 d = v2 & 0xffff;
839 lo = b * d; /* BD */
840 x = a * d + c * b; /* AD + CB */
841 y = ((lo >> 16) & 0xffff) + x;
843 lo = (lo & 0xffff) | ((y & 0xffff) << 16);
844 hi = (y >> 16) & 0xffff;
846 hi += a * c; /* AC */
848 *hi_product = (unsigned long)hi;
849 *lo_product = (unsigned long)lo;
852 int /* private */
853 png_check_cHRM_fixed(png_structp png_ptr,
854 png_fixed_point white_x, png_fixed_point white_y, png_fixed_point red_x,
855 png_fixed_point red_y, png_fixed_point green_x, png_fixed_point green_y,
856 png_fixed_point blue_x, png_fixed_point blue_y)
858 int ret = 1;
859 unsigned long xy_hi,xy_lo,yx_hi,yx_lo;
861 png_debug(1, "in function png_check_cHRM_fixed");
862 if (png_ptr == NULL)
863 return 0;
865 if (white_x < 0 || white_y <= 0 ||
866 red_x < 0 || red_y < 0 ||
867 green_x < 0 || green_y < 0 ||
868 blue_x < 0 || blue_y < 0)
870 png_warning(png_ptr,
871 "Ignoring attempt to set negative chromaticity value");
872 ret = 0;
874 if (white_x > (png_fixed_point) PNG_UINT_31_MAX ||
875 white_y > (png_fixed_point) PNG_UINT_31_MAX ||
876 red_x > (png_fixed_point) PNG_UINT_31_MAX ||
877 red_y > (png_fixed_point) PNG_UINT_31_MAX ||
878 green_x > (png_fixed_point) PNG_UINT_31_MAX ||
879 green_y > (png_fixed_point) PNG_UINT_31_MAX ||
880 blue_x > (png_fixed_point) PNG_UINT_31_MAX ||
881 blue_y > (png_fixed_point) PNG_UINT_31_MAX )
883 png_warning(png_ptr,
884 "Ignoring attempt to set chromaticity value exceeding 21474.83");
885 ret = 0;
887 if (white_x > 100000L - white_y)
889 png_warning(png_ptr, "Invalid cHRM white point");
890 ret = 0;
892 if (red_x > 100000L - red_y)
894 png_warning(png_ptr, "Invalid cHRM red point");
895 ret = 0;
897 if (green_x > 100000L - green_y)
899 png_warning(png_ptr, "Invalid cHRM green point");
900 ret = 0;
902 if (blue_x > 100000L - blue_y)
904 png_warning(png_ptr, "Invalid cHRM blue point");
905 ret = 0;
908 png_64bit_product(green_x - red_x, blue_y - red_y, &xy_hi, &xy_lo);
909 png_64bit_product(green_y - red_y, blue_x - red_x, &yx_hi, &yx_lo);
911 if (xy_hi == yx_hi && xy_lo == yx_lo)
913 png_warning(png_ptr,
914 "Ignoring attempt to set cHRM RGB triangle with zero area");
915 ret = 0;
918 return ret;
920 #endif /* NO_PNG_CHECK_cHRM */
921 #endif /* PNG_cHRM_SUPPORTED */
922 #endif /* defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED) */