2 /* pngrutil.c - utilities to read a PNG file
4 * Last changed in libpng 1.5.1 [February 3, 2011]
5 * Copyright (c) 1998-2011 Glenn Randers-Pehrson
6 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
7 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
9 * This code is released under the libpng license.
10 * For conditions of distribution and use, see the disclaimer
11 * and license in png.h
13 * This file contains routines that are only called from within
14 * libpng itself during the course of reading an image.
19 #ifdef PNG_READ_SUPPORTED
21 #define png_strtod(p,a,b) strtod(a,b)
24 png_get_uint_31(png_structp png_ptr
, png_const_bytep buf
)
26 png_uint_32 uval
= png_get_uint_32(buf
);
28 if (uval
> PNG_UINT_31_MAX
)
29 png_error(png_ptr
, "PNG unsigned integer out of range");
34 #if defined(PNG_READ_gAMA_SUPPORTED) || defined(PNG_READ_cHRM_SUPPORTED)
35 /* The following is a variation on the above for use with the fixed
36 * point values used for gAMA and cHRM. Instead of png_error it
37 * issues a warning and returns (-1) - an invalid value because both
38 * gAMA and cHRM use *unsigned* integers for fixed point values.
40 #define PNG_FIXED_ERROR (-1)
42 static png_fixed_point
/* PRIVATE */
43 png_get_fixed_point(png_structp png_ptr
, png_const_bytep buf
)
45 png_uint_32 uval
= png_get_uint_32(buf
);
47 if (uval
<= PNG_UINT_31_MAX
)
48 return (png_fixed_point
)uval
; /* known to be in range */
50 /* The caller can turn off the warning by passing NULL. */
52 png_warning(png_ptr
, "PNG fixed point integer out of range");
54 return PNG_FIXED_ERROR
;
58 #ifdef PNG_READ_INT_FUNCTIONS_SUPPORTED
59 /* NOTE: the read macros will obscure these definitions, so that if
60 * PNG_USE_READ_MACROS is set the library will not use them internally,
61 * but the APIs will still be available externally.
63 * The parentheses around "PNGAPI function_name" in the following three
64 * functions are necessary because they allow the macros to co-exist with
65 * these (unused but exported) functions.
68 /* Grab an unsigned 32-bit integer from a buffer in big-endian format. */
70 png_get_uint_32
)(png_const_bytep buf
)
73 ((png_uint_32
)(*(buf
)) << 24) +
74 ((png_uint_32
)(*(buf
+ 1)) << 16) +
75 ((png_uint_32
)(*(buf
+ 2)) << 8) +
76 ((png_uint_32
)(*(buf
+ 3)) ) ;
81 /* Grab a signed 32-bit integer from a buffer in big-endian format. The
82 * data is stored in the PNG file in two's complement format and there
83 * is no guarantee that a 'png_int_32' is exactly 32 bits, therefore
84 * the following code does a two's complement to native conversion.
87 png_get_int_32
)(png_const_bytep buf
)
89 png_uint_32 uval
= png_get_uint_32(buf
);
90 if ((uval
& 0x80000000L
) == 0) /* non-negative */
93 uval
= (uval
^ 0xffffffffL
) + 1; /* 2's complement: -x = ~x+1 */
94 return -(png_int_32
)uval
;
97 /* Grab an unsigned 16-bit integer from a buffer in big-endian format. */
99 png_get_uint_16
)(png_const_bytep buf
)
101 /* ANSI-C requires an int value to accomodate at least 16 bits so this
102 * works and allows the compiler not to worry about possible narrowing
103 * on 32 bit systems. (Pre-ANSI systems did not make integers smaller
104 * than 16 bits either.)
107 ((unsigned int)(*buf
) << 8) +
108 ((unsigned int)(*(buf
+ 1)));
110 return (png_uint_16
)val
;
113 #endif /* PNG_READ_INT_FUNCTIONS_SUPPORTED */
115 /* Read and check the PNG file signature */
117 png_read_sig(png_structp png_ptr
, png_infop info_ptr
)
119 png_size_t num_checked
, num_to_check
;
121 /* Exit if the user application does not expect a signature. */
122 if (png_ptr
->sig_bytes
>= 8)
125 num_checked
= png_ptr
->sig_bytes
;
126 num_to_check
= 8 - num_checked
;
128 #ifdef PNG_IO_STATE_SUPPORTED
129 png_ptr
->io_state
= PNG_IO_READING
| PNG_IO_SIGNATURE
;
132 /* The signature must be serialized in a single I/O call. */
133 png_read_data(png_ptr
, &(info_ptr
->signature
[num_checked
]), num_to_check
);
134 png_ptr
->sig_bytes
= 8;
136 if (png_sig_cmp(info_ptr
->signature
, num_checked
, num_to_check
))
138 if (num_checked
< 4 &&
139 png_sig_cmp(info_ptr
->signature
, num_checked
, num_to_check
- 4))
140 png_error(png_ptr
, "Not a PNG file");
142 png_error(png_ptr
, "PNG file corrupted by ASCII conversion");
145 png_ptr
->mode
|= PNG_HAVE_PNG_SIGNATURE
;
148 /* Read the chunk header (length + type name).
149 * Put the type name into png_ptr->chunk_name, and return the length.
151 png_uint_32
/* PRIVATE */
152 png_read_chunk_header(png_structp png_ptr
)
157 #ifdef PNG_IO_STATE_SUPPORTED
158 png_ptr
->io_state
= PNG_IO_READING
| PNG_IO_CHUNK_HDR
;
161 /* Read the length and the chunk name.
162 * This must be performed in a single I/O call.
164 png_read_data(png_ptr
, buf
, 8);
165 length
= png_get_uint_31(png_ptr
, buf
);
167 /* Put the chunk name into png_ptr->chunk_name. */
168 png_memcpy(png_ptr
->chunk_name
, buf
+ 4, 4);
170 png_debug2(0, "Reading %s chunk, length = %u",
171 png_ptr
->chunk_name
, length
);
173 /* Reset the crc and run it over the chunk name. */
174 png_reset_crc(png_ptr
);
175 png_calculate_crc(png_ptr
, png_ptr
->chunk_name
, 4);
177 /* Check to see if chunk name is valid. */
178 png_check_chunk_name(png_ptr
, png_ptr
->chunk_name
);
180 #ifdef PNG_IO_STATE_SUPPORTED
181 png_ptr
->io_state
= PNG_IO_READING
| PNG_IO_CHUNK_DATA
;
187 /* Read data, and (optionally) run it through the CRC. */
189 png_crc_read(png_structp png_ptr
, png_bytep buf
, png_size_t length
)
194 png_read_data(png_ptr
, buf
, length
);
195 png_calculate_crc(png_ptr
, buf
, length
);
198 /* Optionally skip data and then check the CRC. Depending on whether we
199 * are reading a ancillary or critical chunk, and how the program has set
200 * things up, we may calculate the CRC on the data and print a message.
201 * Returns '1' if there was a CRC error, '0' otherwise.
204 png_crc_finish(png_structp png_ptr
, png_uint_32 skip
)
207 png_size_t istop
= png_ptr
->zbuf_size
;
209 for (i
= (png_size_t
)skip
; i
> istop
; i
-= istop
)
211 png_crc_read(png_ptr
, png_ptr
->zbuf
, png_ptr
->zbuf_size
);
216 png_crc_read(png_ptr
, png_ptr
->zbuf
, i
);
219 if (png_crc_error(png_ptr
))
221 if (((png_ptr
->chunk_name
[0] & 0x20) && /* Ancillary */
222 !(png_ptr
->flags
& PNG_FLAG_CRC_ANCILLARY_NOWARN
)) ||
223 (!(png_ptr
->chunk_name
[0] & 0x20) && /* Critical */
224 (png_ptr
->flags
& PNG_FLAG_CRC_CRITICAL_USE
)))
226 png_chunk_warning(png_ptr
, "CRC error");
231 png_chunk_benign_error(png_ptr
, "CRC error");
241 /* Compare the CRC stored in the PNG file with that calculated by libpng from
242 * the data it has read thus far.
245 png_crc_error(png_structp png_ptr
)
247 png_byte crc_bytes
[4];
251 if (png_ptr
->chunk_name
[0] & 0x20) /* ancillary */
253 if ((png_ptr
->flags
& PNG_FLAG_CRC_ANCILLARY_MASK
) ==
254 (PNG_FLAG_CRC_ANCILLARY_USE
| PNG_FLAG_CRC_ANCILLARY_NOWARN
))
260 if (png_ptr
->flags
& PNG_FLAG_CRC_CRITICAL_IGNORE
)
264 #ifdef PNG_IO_STATE_SUPPORTED
265 png_ptr
->io_state
= PNG_IO_READING
| PNG_IO_CHUNK_CRC
;
268 /* The chunk CRC must be serialized in a single I/O call. */
269 png_read_data(png_ptr
, crc_bytes
, 4);
273 crc
= png_get_uint_32(crc_bytes
);
274 return ((int)(crc
!= png_ptr
->crc
));
281 #if defined(PNG_READ_zTXt_SUPPORTED) || defined(PNG_READ_iTXt_SUPPORTED) || \
282 defined(PNG_READ_iCCP_SUPPORTED)
284 png_inflate(png_structp png_ptr
, png_bytep data
, png_size_t size
,
285 png_bytep output
, png_size_t output_size
)
287 png_size_t count
= 0;
289 /* zlib can't necessarily handle more than 65535 bytes at once (i.e. it can't
290 * even necessarily handle 65536 bytes) because the type uInt is "16 bits or
291 * more". Consequently it is necessary to chunk the input to zlib. This
292 * code uses ZLIB_IO_MAX, from pngpriv.h, as the maximum (the maximum value
293 * that can be stored in a uInt.) It is possible to set ZLIB_IO_MAX to a
294 * lower value in pngpriv.h and this may sometimes have a performance
295 * advantage, because it forces access of the input data to be separated from
296 * at least some of the use by some period of time.
298 png_ptr
->zstream
.next_in
= data
;
299 /* avail_in is set below from 'size' */
300 png_ptr
->zstream
.avail_in
= 0;
306 /* The setting of 'avail_in' used to be outside the loop, by setting it
307 * inside it is possible to chunk the input to zlib and simply rely on
308 * zlib to advance the 'next_in' pointer. This allows arbitrary amounts o
309 * data to be passed through zlib at the unavoidable cost of requiring a
310 * window save (memcpy of up to 32768 output bytes) every ZLIB_IO_MAX
313 if (png_ptr
->zstream
.avail_in
== 0 && size
> 0)
315 if (size
<= ZLIB_IO_MAX
)
317 /* The value is less than ZLIB_IO_MAX so the cast is safe: */
318 png_ptr
->zstream
.avail_in
= (uInt
)size
;
324 png_ptr
->zstream
.avail_in
= ZLIB_IO_MAX
;
329 /* Reset the output buffer each time round - we empty it
330 * after every inflate call.
332 png_ptr
->zstream
.next_out
= png_ptr
->zbuf
;
333 png_ptr
->zstream
.avail_out
= png_ptr
->zbuf_size
;
335 ret
= inflate(&png_ptr
->zstream
, Z_NO_FLUSH
);
336 avail
= png_ptr
->zbuf_size
- png_ptr
->zstream
.avail_out
;
338 /* First copy/count any new output - but only if we didn't
341 if ((ret
== Z_OK
|| ret
== Z_STREAM_END
) && avail
> 0)
343 png_size_t space
= avail
; /* > 0, see above */
345 if (output
!= 0 && output_size
> count
)
347 png_size_t copy
= output_size
- count
;
352 png_memcpy(output
+ count
, png_ptr
->zbuf
, copy
);
360 /* Termination conditions - always reset the zstream, it
361 * must be left in inflateInit state.
363 png_ptr
->zstream
.avail_in
= 0;
364 inflateReset(&png_ptr
->zstream
);
366 if (ret
== Z_STREAM_END
)
367 return count
; /* NOTE: may be zero. */
369 /* Now handle the error codes - the API always returns 0
370 * and the error message is dumped into the uncompressed
371 * buffer if available.
375 #ifdef PNG_CONSOLE_IO_SUPPORTED
378 if (png_ptr
->zstream
.msg
!= 0)
379 msg
= png_ptr
->zstream
.msg
;
383 #ifdef PNG_CONSOLE_IO_SUPPORTED
387 msg
= "Buffer error in compressed datastream in %s chunk";
391 msg
= "Data error in compressed datastream in %s chunk";
395 msg
= "Incomplete compressed datastream in %s chunk";
399 png_snprintf(umsg
, sizeof umsg
, msg
, png_ptr
->chunk_name
);
402 msg
= "Damaged compressed datastream in chunk other than IDAT";
406 png_warning(png_ptr
, msg
);
409 /* 0 means an error - notice that this code simply ignores
410 * zero length compressed chunks as a result.
417 * Decompress trailing data in a chunk. The assumption is that chunkdata
418 * points at an allocated area holding the contents of a chunk with a
419 * trailing compressed part. What we get back is an allocated area
420 * holding the original prefix part and an uncompressed version of the
421 * trailing part (the malloc area passed in is freed).
424 png_decompress_chunk(png_structp png_ptr
, int comp_type
,
425 png_size_t chunklength
,
426 png_size_t prefix_size
, png_size_t
*newlength
)
428 /* The caller should guarantee this */
429 if (prefix_size
> chunklength
)
431 /* The recovery is to delete the chunk. */
432 png_warning(png_ptr
, "invalid chunklength");
433 prefix_size
= 0; /* To delete everything */
436 else if (comp_type
== PNG_COMPRESSION_TYPE_BASE
)
438 png_size_t expanded_size
= png_inflate(png_ptr
,
439 (png_bytep
)(png_ptr
->chunkdata
+ prefix_size
),
440 chunklength
- prefix_size
,
444 /* Now check the limits on this chunk - if the limit fails the
445 * compressed data will be removed, the prefix will remain.
447 #ifdef PNG_SET_CHUNK_MALLOC_LIMIT_SUPPORTED
448 if (png_ptr
->user_chunk_malloc_max
&&
449 (prefix_size
+ expanded_size
>= png_ptr
->user_chunk_malloc_max
- 1))
451 # ifdef PNG_USER_CHUNK_MALLOC_MAX
452 if ((PNG_USER_CHUNK_MALLOC_MAX
> 0) &&
453 prefix_size
+ expanded_size
>= PNG_USER_CHUNK_MALLOC_MAX
- 1)
456 png_warning(png_ptr
, "Exceeded size limit while expanding chunk");
458 /* If the size is zero either there was an error and a message
459 * has already been output (warning) or the size really is zero
460 * and we have nothing to do - the code will exit through the
463 #if defined(PNG_SET_CHUNK_MALLOC_LIMIT_SUPPORTED) || \
464 defined(PNG_USER_CHUNK_MALLOC_MAX)
465 else if (expanded_size
> 0)
467 if (expanded_size
> 0)
470 /* Success (maybe) - really uncompress the chunk. */
471 png_size_t new_size
= 0;
472 png_charp text
= png_malloc_warn(png_ptr
,
473 prefix_size
+ expanded_size
+ 1);
477 png_memcpy(text
, png_ptr
->chunkdata
, prefix_size
);
478 new_size
= png_inflate(png_ptr
,
479 (png_bytep
)(png_ptr
->chunkdata
+ prefix_size
),
480 chunklength
- prefix_size
,
481 (png_bytep
)(text
+ prefix_size
), expanded_size
);
482 text
[prefix_size
+ expanded_size
] = 0; /* just in case */
484 if (new_size
== expanded_size
)
486 png_free(png_ptr
, png_ptr
->chunkdata
);
487 png_ptr
->chunkdata
= text
;
488 *newlength
= prefix_size
+ expanded_size
;
489 return; /* The success return! */
492 png_warning(png_ptr
, "png_inflate logic error");
493 png_free(png_ptr
, text
);
497 png_warning(png_ptr
, "Not enough memory to decompress chunk");
501 else /* if (comp_type != PNG_COMPRESSION_TYPE_BASE) */
503 #ifdef PNG_STDIO_SUPPORTED
506 png_snprintf(umsg
, sizeof umsg
,
507 "Unknown zTXt compression type %d", comp_type
);
508 png_warning(png_ptr
, umsg
);
510 png_warning(png_ptr
, "Unknown zTXt compression type");
513 /* The recovery is to simply drop the data. */
516 /* Generic error return - leave the prefix, delete the compressed
517 * data, reallocate the chunkdata to remove the potentially large
518 * amount of compressed data.
521 png_charp text
= png_malloc_warn(png_ptr
, prefix_size
+ 1);
526 png_memcpy(text
, png_ptr
->chunkdata
, prefix_size
);
528 png_free(png_ptr
, png_ptr
->chunkdata
);
529 png_ptr
->chunkdata
= text
;
531 /* This is an extra zero in the 'uncompressed' part. */
532 *(png_ptr
->chunkdata
+ prefix_size
) = 0x00;
534 /* Ignore a malloc error here - it is safe. */
537 *newlength
= prefix_size
;
541 /* Read and check the IDHR chunk */
543 png_handle_IHDR(png_structp png_ptr
, png_infop info_ptr
, png_uint_32 length
)
546 png_uint_32 width
, height
;
547 int bit_depth
, color_type
, compression_type
, filter_type
;
550 png_debug(1, "in png_handle_IHDR");
552 if (png_ptr
->mode
& PNG_HAVE_IHDR
)
553 png_error(png_ptr
, "Out of place IHDR");
555 /* Check the length */
557 png_error(png_ptr
, "Invalid IHDR chunk");
559 png_ptr
->mode
|= PNG_HAVE_IHDR
;
561 png_crc_read(png_ptr
, buf
, 13);
562 png_crc_finish(png_ptr
, 0);
564 width
= png_get_uint_31(png_ptr
, buf
);
565 height
= png_get_uint_31(png_ptr
, buf
+ 4);
568 compression_type
= buf
[10];
569 filter_type
= buf
[11];
570 interlace_type
= buf
[12];
572 /* Set internal variables */
573 png_ptr
->width
= width
;
574 png_ptr
->height
= height
;
575 png_ptr
->bit_depth
= (png_byte
)bit_depth
;
576 png_ptr
->interlaced
= (png_byte
)interlace_type
;
577 png_ptr
->color_type
= (png_byte
)color_type
;
578 #ifdef PNG_MNG_FEATURES_SUPPORTED
579 png_ptr
->filter_type
= (png_byte
)filter_type
;
581 png_ptr
->compression_type
= (png_byte
)compression_type
;
583 /* Find number of channels */
584 switch (png_ptr
->color_type
)
586 default: /* invalid, png_set_IHDR calls png_error */
587 case PNG_COLOR_TYPE_GRAY
:
588 case PNG_COLOR_TYPE_PALETTE
:
589 png_ptr
->channels
= 1;
592 case PNG_COLOR_TYPE_RGB
:
593 png_ptr
->channels
= 3;
596 case PNG_COLOR_TYPE_GRAY_ALPHA
:
597 png_ptr
->channels
= 2;
600 case PNG_COLOR_TYPE_RGB_ALPHA
:
601 png_ptr
->channels
= 4;
605 /* Set up other useful info */
606 png_ptr
->pixel_depth
= (png_byte
)(png_ptr
->bit_depth
*
608 png_ptr
->rowbytes
= PNG_ROWBYTES(png_ptr
->pixel_depth
, png_ptr
->width
);
609 png_debug1(3, "bit_depth = %d", png_ptr
->bit_depth
);
610 png_debug1(3, "channels = %d", png_ptr
->channels
);
611 png_debug1(3, "rowbytes = %lu", (unsigned long)png_ptr
->rowbytes
);
612 png_set_IHDR(png_ptr
, info_ptr
, width
, height
, bit_depth
,
613 color_type
, interlace_type
, compression_type
, filter_type
);
616 /* Read and check the palette */
618 png_handle_PLTE(png_structp png_ptr
, png_infop info_ptr
, png_uint_32 length
)
620 png_color palette
[PNG_MAX_PALETTE_LENGTH
];
622 #ifdef PNG_POINTER_INDEXING_SUPPORTED
626 png_debug(1, "in png_handle_PLTE");
628 if (!(png_ptr
->mode
& PNG_HAVE_IHDR
))
629 png_error(png_ptr
, "Missing IHDR before PLTE");
631 else if (png_ptr
->mode
& PNG_HAVE_IDAT
)
633 png_warning(png_ptr
, "Invalid PLTE after IDAT");
634 png_crc_finish(png_ptr
, length
);
638 else if (png_ptr
->mode
& PNG_HAVE_PLTE
)
639 png_error(png_ptr
, "Duplicate PLTE chunk");
641 png_ptr
->mode
|= PNG_HAVE_PLTE
;
643 if (!(png_ptr
->color_type
&PNG_COLOR_MASK_COLOR
))
646 "Ignoring PLTE chunk in grayscale PNG");
647 png_crc_finish(png_ptr
, length
);
651 #ifndef PNG_READ_OPT_PLTE_SUPPORTED
652 if (png_ptr
->color_type
!= PNG_COLOR_TYPE_PALETTE
)
654 png_crc_finish(png_ptr
, length
);
659 if (length
> 3*PNG_MAX_PALETTE_LENGTH
|| length
% 3)
661 if (png_ptr
->color_type
!= PNG_COLOR_TYPE_PALETTE
)
663 png_warning(png_ptr
, "Invalid palette chunk");
664 png_crc_finish(png_ptr
, length
);
670 png_error(png_ptr
, "Invalid palette chunk");
674 num
= (int)length
/ 3;
676 #ifdef PNG_POINTER_INDEXING_SUPPORTED
677 for (i
= 0, pal_ptr
= palette
; i
< num
; i
++, pal_ptr
++)
681 png_crc_read(png_ptr
, buf
, 3);
682 pal_ptr
->red
= buf
[0];
683 pal_ptr
->green
= buf
[1];
684 pal_ptr
->blue
= buf
[2];
687 for (i
= 0; i
< num
; i
++)
691 png_crc_read(png_ptr
, buf
, 3);
692 /* Don't depend upon png_color being any order */
693 palette
[i
].red
= buf
[0];
694 palette
[i
].green
= buf
[1];
695 palette
[i
].blue
= buf
[2];
699 /* If we actually need the PLTE chunk (ie for a paletted image), we do
700 * whatever the normal CRC configuration tells us. However, if we
701 * have an RGB image, the PLTE can be considered ancillary, so
702 * we will act as though it is.
704 #ifndef PNG_READ_OPT_PLTE_SUPPORTED
705 if (png_ptr
->color_type
== PNG_COLOR_TYPE_PALETTE
)
708 png_crc_finish(png_ptr
, 0);
711 #ifndef PNG_READ_OPT_PLTE_SUPPORTED
712 else if (png_crc_error(png_ptr
)) /* Only if we have a CRC error */
714 /* If we don't want to use the data from an ancillary chunk,
715 * we have two options: an error abort, or a warning and we
716 * ignore the data in this chunk (which should be OK, since
717 * it's considered ancillary for a RGB or RGBA image).
719 if (!(png_ptr
->flags
& PNG_FLAG_CRC_ANCILLARY_USE
))
721 if (png_ptr
->flags
& PNG_FLAG_CRC_ANCILLARY_NOWARN
)
723 png_chunk_benign_error(png_ptr
, "CRC error");
728 png_chunk_warning(png_ptr
, "CRC error");
733 /* Otherwise, we (optionally) emit a warning and use the chunk. */
734 else if (!(png_ptr
->flags
& PNG_FLAG_CRC_ANCILLARY_NOWARN
))
736 png_chunk_warning(png_ptr
, "CRC error");
741 png_set_PLTE(png_ptr
, info_ptr
, palette
, num
);
743 #ifdef PNG_READ_tRNS_SUPPORTED
744 if (png_ptr
->color_type
== PNG_COLOR_TYPE_PALETTE
)
746 if (info_ptr
!= NULL
&& (info_ptr
->valid
& PNG_INFO_tRNS
))
748 if (png_ptr
->num_trans
> (png_uint_16
)num
)
750 png_warning(png_ptr
, "Truncating incorrect tRNS chunk length");
751 png_ptr
->num_trans
= (png_uint_16
)num
;
754 if (info_ptr
->num_trans
> (png_uint_16
)num
)
756 png_warning(png_ptr
, "Truncating incorrect info tRNS chunk length");
757 info_ptr
->num_trans
= (png_uint_16
)num
;
766 png_handle_IEND(png_structp png_ptr
, png_infop info_ptr
, png_uint_32 length
)
768 png_debug(1, "in png_handle_IEND");
770 if (!(png_ptr
->mode
& PNG_HAVE_IHDR
) || !(png_ptr
->mode
& PNG_HAVE_IDAT
))
772 png_error(png_ptr
, "No image in file");
775 png_ptr
->mode
|= (PNG_AFTER_IDAT
| PNG_HAVE_IEND
);
779 png_warning(png_ptr
, "Incorrect IEND chunk length");
782 png_crc_finish(png_ptr
, length
);
784 PNG_UNUSED(info_ptr
) /* Quiet compiler warnings about unused info_ptr */
787 #ifdef PNG_READ_gAMA_SUPPORTED
789 png_handle_gAMA(png_structp png_ptr
, png_infop info_ptr
, png_uint_32 length
)
791 png_fixed_point igamma
;
794 png_debug(1, "in png_handle_gAMA");
796 if (!(png_ptr
->mode
& PNG_HAVE_IHDR
))
797 png_error(png_ptr
, "Missing IHDR before gAMA");
799 else if (png_ptr
->mode
& PNG_HAVE_IDAT
)
801 png_warning(png_ptr
, "Invalid gAMA after IDAT");
802 png_crc_finish(png_ptr
, length
);
806 else if (png_ptr
->mode
& PNG_HAVE_PLTE
)
807 /* Should be an error, but we can cope with it */
808 png_warning(png_ptr
, "Out of place gAMA chunk");
810 if (info_ptr
!= NULL
&& (info_ptr
->valid
& PNG_INFO_gAMA
)
811 #ifdef PNG_READ_sRGB_SUPPORTED
812 && !(info_ptr
->valid
& PNG_INFO_sRGB
)
816 png_warning(png_ptr
, "Duplicate gAMA chunk");
817 png_crc_finish(png_ptr
, length
);
823 png_warning(png_ptr
, "Incorrect gAMA chunk length");
824 png_crc_finish(png_ptr
, length
);
828 png_crc_read(png_ptr
, buf
, 4);
830 if (png_crc_finish(png_ptr
, 0))
833 igamma
= png_get_fixed_point(NULL
, buf
);
835 /* Check for zero gamma or an error. */
839 "Ignoring gAMA chunk with out of range gamma");
844 # ifdef PNG_READ_sRGB_SUPPORTED
845 if (info_ptr
!= NULL
&& (info_ptr
->valid
& PNG_INFO_sRGB
))
847 if (PNG_OUT_OF_RANGE(igamma
, 45500L, 500))
850 "Ignoring incorrect gAMA value when sRGB is also present");
852 # ifdef PNG_CONSOLE_IO_SUPPORTED
853 fprintf(stderr
, "gamma = (%d/100000)", (int)igamma
);
858 # endif /* PNG_READ_sRGB_SUPPORTED */
860 # ifdef PNG_READ_GAMMA_SUPPORTED
861 /* Gamma correction on read is supported. */
862 png_ptr
->gamma
= igamma
;
864 /* And set the 'info' structure members. */
865 png_set_gAMA_fixed(png_ptr
, info_ptr
, igamma
);
869 #ifdef PNG_READ_sBIT_SUPPORTED
871 png_handle_sBIT(png_structp png_ptr
, png_infop info_ptr
, png_uint_32 length
)
876 png_debug(1, "in png_handle_sBIT");
878 buf
[0] = buf
[1] = buf
[2] = buf
[3] = 0;
880 if (!(png_ptr
->mode
& PNG_HAVE_IHDR
))
881 png_error(png_ptr
, "Missing IHDR before sBIT");
883 else if (png_ptr
->mode
& PNG_HAVE_IDAT
)
885 png_warning(png_ptr
, "Invalid sBIT after IDAT");
886 png_crc_finish(png_ptr
, length
);
890 else if (png_ptr
->mode
& PNG_HAVE_PLTE
)
892 /* Should be an error, but we can cope with it */
893 png_warning(png_ptr
, "Out of place sBIT chunk");
896 if (info_ptr
!= NULL
&& (info_ptr
->valid
& PNG_INFO_sBIT
))
898 png_warning(png_ptr
, "Duplicate sBIT chunk");
899 png_crc_finish(png_ptr
, length
);
903 if (png_ptr
->color_type
== PNG_COLOR_TYPE_PALETTE
)
907 truelen
= (png_size_t
)png_ptr
->channels
;
909 if (length
!= truelen
|| length
> 4)
911 png_warning(png_ptr
, "Incorrect sBIT chunk length");
912 png_crc_finish(png_ptr
, length
);
916 png_crc_read(png_ptr
, buf
, truelen
);
918 if (png_crc_finish(png_ptr
, 0))
921 if (png_ptr
->color_type
& PNG_COLOR_MASK_COLOR
)
923 png_ptr
->sig_bit
.red
= buf
[0];
924 png_ptr
->sig_bit
.green
= buf
[1];
925 png_ptr
->sig_bit
.blue
= buf
[2];
926 png_ptr
->sig_bit
.alpha
= buf
[3];
931 png_ptr
->sig_bit
.gray
= buf
[0];
932 png_ptr
->sig_bit
.red
= buf
[0];
933 png_ptr
->sig_bit
.green
= buf
[0];
934 png_ptr
->sig_bit
.blue
= buf
[0];
935 png_ptr
->sig_bit
.alpha
= buf
[1];
938 png_set_sBIT(png_ptr
, info_ptr
, &(png_ptr
->sig_bit
));
942 #ifdef PNG_READ_cHRM_SUPPORTED
944 png_handle_cHRM(png_structp png_ptr
, png_infop info_ptr
, png_uint_32 length
)
947 png_fixed_point x_white
, y_white
, x_red
, y_red
, x_green
, y_green
, x_blue
,
950 png_debug(1, "in png_handle_cHRM");
952 if (!(png_ptr
->mode
& PNG_HAVE_IHDR
))
953 png_error(png_ptr
, "Missing IHDR before cHRM");
955 else if (png_ptr
->mode
& PNG_HAVE_IDAT
)
957 png_warning(png_ptr
, "Invalid cHRM after IDAT");
958 png_crc_finish(png_ptr
, length
);
962 else if (png_ptr
->mode
& PNG_HAVE_PLTE
)
963 /* Should be an error, but we can cope with it */
964 png_warning(png_ptr
, "Missing PLTE before cHRM");
966 if (info_ptr
!= NULL
&& (info_ptr
->valid
& PNG_INFO_cHRM
)
967 # ifdef PNG_READ_sRGB_SUPPORTED
968 && !(info_ptr
->valid
& PNG_INFO_sRGB
)
972 png_warning(png_ptr
, "Duplicate cHRM chunk");
973 png_crc_finish(png_ptr
, length
);
979 png_warning(png_ptr
, "Incorrect cHRM chunk length");
980 png_crc_finish(png_ptr
, length
);
984 png_crc_read(png_ptr
, buf
, 32);
986 if (png_crc_finish(png_ptr
, 0))
989 x_white
= png_get_fixed_point(NULL
, buf
);
990 y_white
= png_get_fixed_point(NULL
, buf
+ 4);
991 x_red
= png_get_fixed_point(NULL
, buf
+ 8);
992 y_red
= png_get_fixed_point(NULL
, buf
+ 12);
993 x_green
= png_get_fixed_point(NULL
, buf
+ 16);
994 y_green
= png_get_fixed_point(NULL
, buf
+ 20);
995 x_blue
= png_get_fixed_point(NULL
, buf
+ 24);
996 y_blue
= png_get_fixed_point(NULL
, buf
+ 28);
998 if (x_white
== PNG_FIXED_ERROR
||
999 y_white
== PNG_FIXED_ERROR
||
1000 x_red
== PNG_FIXED_ERROR
||
1001 y_red
== PNG_FIXED_ERROR
||
1002 x_green
== PNG_FIXED_ERROR
||
1003 y_green
== PNG_FIXED_ERROR
||
1004 x_blue
== PNG_FIXED_ERROR
||
1005 y_blue
== PNG_FIXED_ERROR
)
1007 png_warning(png_ptr
, "Ignoring cHRM chunk with negative chromaticities");
1011 #ifdef PNG_READ_sRGB_SUPPORTED
1012 if ((info_ptr
!= NULL
) && (info_ptr
->valid
& PNG_INFO_sRGB
))
1014 if (PNG_OUT_OF_RANGE(x_white
, 31270, 1000) ||
1015 PNG_OUT_OF_RANGE(y_white
, 32900, 1000) ||
1016 PNG_OUT_OF_RANGE(x_red
, 64000L, 1000) ||
1017 PNG_OUT_OF_RANGE(y_red
, 33000, 1000) ||
1018 PNG_OUT_OF_RANGE(x_green
, 30000, 1000) ||
1019 PNG_OUT_OF_RANGE(y_green
, 60000L, 1000) ||
1020 PNG_OUT_OF_RANGE(x_blue
, 15000, 1000) ||
1021 PNG_OUT_OF_RANGE(y_blue
, 6000, 1000))
1023 png_warning(png_ptr
,
1024 "Ignoring incorrect cHRM value when sRGB is also present");
1026 #ifdef PNG_CONSOLE_IO_SUPPORTED
1027 fprintf(stderr
, "wx=%d, wy=%d, rx=%d, ry=%d\n",
1028 x_white
, y_white
, x_red
, y_red
);
1030 fprintf(stderr
, "gx=%d, gy=%d, bx=%d, by=%d\n",
1031 x_green
, y_green
, x_blue
, y_blue
);
1032 #endif /* PNG_CONSOLE_IO_SUPPORTED */
1036 #endif /* PNG_READ_sRGB_SUPPORTED */
1038 png_set_cHRM_fixed(png_ptr
, info_ptr
, x_white
, y_white
, x_red
, y_red
,
1039 x_green
, y_green
, x_blue
, y_blue
);
1043 #ifdef PNG_READ_sRGB_SUPPORTED
1045 png_handle_sRGB(png_structp png_ptr
, png_infop info_ptr
, png_uint_32 length
)
1050 png_debug(1, "in png_handle_sRGB");
1052 if (!(png_ptr
->mode
& PNG_HAVE_IHDR
))
1053 png_error(png_ptr
, "Missing IHDR before sRGB");
1055 else if (png_ptr
->mode
& PNG_HAVE_IDAT
)
1057 png_warning(png_ptr
, "Invalid sRGB after IDAT");
1058 png_crc_finish(png_ptr
, length
);
1062 else if (png_ptr
->mode
& PNG_HAVE_PLTE
)
1063 /* Should be an error, but we can cope with it */
1064 png_warning(png_ptr
, "Out of place sRGB chunk");
1066 if (info_ptr
!= NULL
&& (info_ptr
->valid
& PNG_INFO_sRGB
))
1068 png_warning(png_ptr
, "Duplicate sRGB chunk");
1069 png_crc_finish(png_ptr
, length
);
1075 png_warning(png_ptr
, "Incorrect sRGB chunk length");
1076 png_crc_finish(png_ptr
, length
);
1080 png_crc_read(png_ptr
, buf
, 1);
1082 if (png_crc_finish(png_ptr
, 0))
1087 /* Check for bad intent */
1088 if (intent
>= PNG_sRGB_INTENT_LAST
)
1090 png_warning(png_ptr
, "Unknown sRGB intent");
1094 #if defined(PNG_READ_gAMA_SUPPORTED) && defined(PNG_READ_GAMMA_SUPPORTED)
1095 if (info_ptr
!= NULL
&& (info_ptr
->valid
& PNG_INFO_gAMA
))
1097 if (PNG_OUT_OF_RANGE(info_ptr
->gamma
, 45500L, 500))
1099 png_warning(png_ptr
,
1100 "Ignoring incorrect gAMA value when sRGB is also present");
1101 #ifdef PNG_CONSOLE_IO_SUPPORTED
1102 fprintf(stderr
, "incorrect gamma=(%d/100000)\n", info_ptr
->gamma
);
1106 #endif /* PNG_READ_gAMA_SUPPORTED */
1108 #ifdef PNG_READ_cHRM_SUPPORTED
1109 if (info_ptr
!= NULL
&& (info_ptr
->valid
& PNG_INFO_cHRM
))
1110 if (PNG_OUT_OF_RANGE(info_ptr
->x_white
, 31270, 1000) ||
1111 PNG_OUT_OF_RANGE(info_ptr
->y_white
, 32900, 1000) ||
1112 PNG_OUT_OF_RANGE(info_ptr
->x_red
, 64000L, 1000) ||
1113 PNG_OUT_OF_RANGE(info_ptr
->y_red
, 33000, 1000) ||
1114 PNG_OUT_OF_RANGE(info_ptr
->x_green
, 30000, 1000) ||
1115 PNG_OUT_OF_RANGE(info_ptr
->y_green
, 60000L, 1000) ||
1116 PNG_OUT_OF_RANGE(info_ptr
->x_blue
, 15000, 1000) ||
1117 PNG_OUT_OF_RANGE(info_ptr
->y_blue
, 6000, 1000))
1119 png_warning(png_ptr
,
1120 "Ignoring incorrect cHRM value when sRGB is also present");
1122 #endif /* PNG_READ_cHRM_SUPPORTED */
1124 png_set_sRGB_gAMA_and_cHRM(png_ptr
, info_ptr
, intent
);
1126 #endif /* PNG_READ_sRGB_SUPPORTED */
1128 #ifdef PNG_READ_iCCP_SUPPORTED
1130 png_handle_iCCP(png_structp png_ptr
, png_infop info_ptr
, png_uint_32 length
)
1131 /* Note: this does not properly handle chunks that are > 64K under DOS */
1133 png_byte compression_type
;
1136 png_uint_32 skip
= 0;
1137 png_uint_32 profile_size
;
1138 png_alloc_size_t profile_length
;
1139 png_size_t slength
, prefix_length
, data_length
;
1141 png_debug(1, "in png_handle_iCCP");
1143 if (!(png_ptr
->mode
& PNG_HAVE_IHDR
))
1144 png_error(png_ptr
, "Missing IHDR before iCCP");
1146 else if (png_ptr
->mode
& PNG_HAVE_IDAT
)
1148 png_warning(png_ptr
, "Invalid iCCP after IDAT");
1149 png_crc_finish(png_ptr
, length
);
1153 else if (png_ptr
->mode
& PNG_HAVE_PLTE
)
1154 /* Should be an error, but we can cope with it */
1155 png_warning(png_ptr
, "Out of place iCCP chunk");
1157 if (info_ptr
!= NULL
&& (info_ptr
->valid
& PNG_INFO_iCCP
))
1159 png_warning(png_ptr
, "Duplicate iCCP chunk");
1160 png_crc_finish(png_ptr
, length
);
1164 #ifdef PNG_MAX_MALLOC_64K
1165 if (length
> (png_uint_32
)65535L)
1167 png_warning(png_ptr
, "iCCP chunk too large to fit in memory");
1168 skip
= length
- (png_uint_32
)65535L;
1169 length
= (png_uint_32
)65535L;
1173 png_free(png_ptr
, png_ptr
->chunkdata
);
1174 png_ptr
->chunkdata
= (png_charp
)png_malloc(png_ptr
, length
+ 1);
1175 slength
= (png_size_t
)length
;
1176 png_crc_read(png_ptr
, (png_bytep
)png_ptr
->chunkdata
, slength
);
1178 if (png_crc_finish(png_ptr
, skip
))
1180 png_free(png_ptr
, png_ptr
->chunkdata
);
1181 png_ptr
->chunkdata
= NULL
;
1185 png_ptr
->chunkdata
[slength
] = 0x00;
1187 for (profile
= png_ptr
->chunkdata
; *profile
; profile
++)
1188 /* Empty loop to find end of name */ ;
1192 /* There should be at least one zero (the compression type byte)
1193 * following the separator, and we should be on it
1195 if (profile
>= png_ptr
->chunkdata
+ slength
- 1)
1197 png_free(png_ptr
, png_ptr
->chunkdata
);
1198 png_ptr
->chunkdata
= NULL
;
1199 png_warning(png_ptr
, "Malformed iCCP chunk");
1203 /* Compression_type should always be zero */
1204 compression_type
= *profile
++;
1206 if (compression_type
)
1208 png_warning(png_ptr
, "Ignoring nonzero compression type in iCCP chunk");
1209 compression_type
= 0x00; /* Reset it to zero (libpng-1.0.6 through 1.0.8
1213 prefix_length
= profile
- png_ptr
->chunkdata
;
1214 png_decompress_chunk(png_ptr
, compression_type
,
1215 slength
, prefix_length
, &data_length
);
1217 profile_length
= data_length
- prefix_length
;
1219 if (prefix_length
> data_length
|| profile_length
< 4)
1221 png_free(png_ptr
, png_ptr
->chunkdata
);
1222 png_ptr
->chunkdata
= NULL
;
1223 png_warning(png_ptr
, "Profile size field missing from iCCP chunk");
1227 /* Check the profile_size recorded in the first 32 bits of the ICC profile */
1228 pC
= (png_bytep
)(png_ptr
->chunkdata
+ prefix_length
);
1229 profile_size
= ((*(pC
)) << 24) |
1230 ((*(pC
+ 1)) << 16) |
1231 ((*(pC
+ 2)) << 8) |
1234 /* NOTE: the following guarantees that 'profile_length' fits into 32 bits,
1235 * because profile_size is a 32 bit value.
1237 if (profile_size
< profile_length
)
1238 profile_length
= profile_size
;
1240 /* And the following guarantees that profile_size == profile_length. */
1241 if (profile_size
> profile_length
)
1243 png_free(png_ptr
, png_ptr
->chunkdata
);
1244 png_ptr
->chunkdata
= NULL
;
1245 #ifdef PNG_STDIO_SUPPORTED
1249 png_snprintf2(umsg
, 80,
1250 "Ignoring iCCP chunk with declared size = %u "
1251 "and actual length = %u",
1252 (unsigned int) profile_size
,
1253 (unsigned int) profile_length
);
1254 png_warning(png_ptr
, umsg
);
1257 png_warning(png_ptr
,
1258 "Ignoring iCCP chunk with uncompressed size mismatch");
1263 png_set_iCCP(png_ptr
, info_ptr
, png_ptr
->chunkdata
,
1264 compression_type
, (png_bytep
)png_ptr
->chunkdata
+ prefix_length
,
1266 png_free(png_ptr
, png_ptr
->chunkdata
);
1267 png_ptr
->chunkdata
= NULL
;
1269 #endif /* PNG_READ_iCCP_SUPPORTED */
1271 #ifdef PNG_READ_sPLT_SUPPORTED
1273 png_handle_sPLT(png_structp png_ptr
, png_infop info_ptr
, png_uint_32 length
)
1274 /* Note: this does not properly handle chunks that are > 64K under DOS */
1276 png_bytep entry_start
;
1277 png_sPLT_t new_palette
;
1278 #ifdef PNG_POINTER_INDEXING_SUPPORTED
1281 png_uint_32 data_length
;
1283 png_uint_32 skip
= 0;
1288 png_debug(1, "in png_handle_sPLT");
1290 #ifdef PNG_USER_LIMITS_SUPPORTED
1292 if (png_ptr
->user_chunk_cache_max
!= 0)
1294 if (png_ptr
->user_chunk_cache_max
== 1)
1296 png_crc_finish(png_ptr
, length
);
1300 if (--png_ptr
->user_chunk_cache_max
== 1)
1302 png_warning(png_ptr
, "No space in chunk cache for sPLT");
1303 png_crc_finish(png_ptr
, length
);
1309 if (!(png_ptr
->mode
& PNG_HAVE_IHDR
))
1310 png_error(png_ptr
, "Missing IHDR before sPLT");
1312 else if (png_ptr
->mode
& PNG_HAVE_IDAT
)
1314 png_warning(png_ptr
, "Invalid sPLT after IDAT");
1315 png_crc_finish(png_ptr
, length
);
1319 #ifdef PNG_MAX_MALLOC_64K
1320 if (length
> (png_uint_32
)65535L)
1322 png_warning(png_ptr
, "sPLT chunk too large to fit in memory");
1323 skip
= length
- (png_uint_32
)65535L;
1324 length
= (png_uint_32
)65535L;
1328 png_free(png_ptr
, png_ptr
->chunkdata
);
1329 png_ptr
->chunkdata
= (png_charp
)png_malloc(png_ptr
, length
+ 1);
1331 /* WARNING: this may break if size_t is less than 32 bits; it is assumed
1332 * that the PNG_MAX_MALLOC_64K test is enabled in this case, but this is a
1333 * potential breakage point if the types in pngconf.h aren't exactly right.
1335 slength
= (png_size_t
)length
;
1336 png_crc_read(png_ptr
, (png_bytep
)png_ptr
->chunkdata
, slength
);
1338 if (png_crc_finish(png_ptr
, skip
))
1340 png_free(png_ptr
, png_ptr
->chunkdata
);
1341 png_ptr
->chunkdata
= NULL
;
1345 png_ptr
->chunkdata
[slength
] = 0x00;
1347 for (entry_start
= (png_bytep
)png_ptr
->chunkdata
; *entry_start
;
1349 /* Empty loop to find end of name */ ;
1353 /* A sample depth should follow the separator, and we should be on it */
1354 if (entry_start
> (png_bytep
)png_ptr
->chunkdata
+ slength
- 2)
1356 png_free(png_ptr
, png_ptr
->chunkdata
);
1357 png_ptr
->chunkdata
= NULL
;
1358 png_warning(png_ptr
, "malformed sPLT chunk");
1362 new_palette
.depth
= *entry_start
++;
1363 entry_size
= (new_palette
.depth
== 8 ? 6 : 10);
1364 /* This must fit in a png_uint_32 because it is derived from the original
1365 * chunk data length (and use 'length', not 'slength' here for clarity -
1366 * they are guaranteed to be the same, see the tests above.)
1368 data_length
= length
- (png_uint_32
)(entry_start
-
1369 (png_bytep
)png_ptr
->chunkdata
);
1371 /* Integrity-check the data length */
1372 if (data_length
% entry_size
)
1374 png_free(png_ptr
, png_ptr
->chunkdata
);
1375 png_ptr
->chunkdata
= NULL
;
1376 png_warning(png_ptr
, "sPLT chunk has bad length");
1380 dl
= (png_int_32
)(data_length
/ entry_size
);
1381 max_dl
= PNG_SIZE_MAX
/ png_sizeof(png_sPLT_entry
);
1385 png_warning(png_ptr
, "sPLT chunk too long");
1389 new_palette
.nentries
= (png_int_32
)(data_length
/ entry_size
);
1391 new_palette
.entries
= (png_sPLT_entryp
)png_malloc_warn(
1392 png_ptr
, new_palette
.nentries
* png_sizeof(png_sPLT_entry
));
1394 if (new_palette
.entries
== NULL
)
1396 png_warning(png_ptr
, "sPLT chunk requires too much memory");
1400 #ifdef PNG_POINTER_INDEXING_SUPPORTED
1401 for (i
= 0; i
< new_palette
.nentries
; i
++)
1403 pp
= new_palette
.entries
+ i
;
1405 if (new_palette
.depth
== 8)
1407 pp
->red
= *entry_start
++;
1408 pp
->green
= *entry_start
++;
1409 pp
->blue
= *entry_start
++;
1410 pp
->alpha
= *entry_start
++;
1415 pp
->red
= png_get_uint_16(entry_start
); entry_start
+= 2;
1416 pp
->green
= png_get_uint_16(entry_start
); entry_start
+= 2;
1417 pp
->blue
= png_get_uint_16(entry_start
); entry_start
+= 2;
1418 pp
->alpha
= png_get_uint_16(entry_start
); entry_start
+= 2;
1421 pp
->frequency
= png_get_uint_16(entry_start
); entry_start
+= 2;
1424 pp
= new_palette
.entries
;
1426 for (i
= 0; i
< new_palette
.nentries
; i
++)
1429 if (new_palette
.depth
== 8)
1431 pp
[i
].red
= *entry_start
++;
1432 pp
[i
].green
= *entry_start
++;
1433 pp
[i
].blue
= *entry_start
++;
1434 pp
[i
].alpha
= *entry_start
++;
1439 pp
[i
].red
= png_get_uint_16(entry_start
); entry_start
+= 2;
1440 pp
[i
].green
= png_get_uint_16(entry_start
); entry_start
+= 2;
1441 pp
[i
].blue
= png_get_uint_16(entry_start
); entry_start
+= 2;
1442 pp
[i
].alpha
= png_get_uint_16(entry_start
); entry_start
+= 2;
1445 pp
->frequency
= png_get_uint_16(entry_start
); entry_start
+= 2;
1449 /* Discard all chunk data except the name and stash that */
1450 new_palette
.name
= png_ptr
->chunkdata
;
1452 png_set_sPLT(png_ptr
, info_ptr
, &new_palette
, 1);
1454 png_free(png_ptr
, png_ptr
->chunkdata
);
1455 png_ptr
->chunkdata
= NULL
;
1456 png_free(png_ptr
, new_palette
.entries
);
1458 #endif /* PNG_READ_sPLT_SUPPORTED */
1460 #ifdef PNG_READ_tRNS_SUPPORTED
1462 png_handle_tRNS(png_structp png_ptr
, png_infop info_ptr
, png_uint_32 length
)
1464 png_byte readbuf
[PNG_MAX_PALETTE_LENGTH
];
1466 png_debug(1, "in png_handle_tRNS");
1468 if (!(png_ptr
->mode
& PNG_HAVE_IHDR
))
1469 png_error(png_ptr
, "Missing IHDR before tRNS");
1471 else if (png_ptr
->mode
& PNG_HAVE_IDAT
)
1473 png_warning(png_ptr
, "Invalid tRNS after IDAT");
1474 png_crc_finish(png_ptr
, length
);
1478 else if (info_ptr
!= NULL
&& (info_ptr
->valid
& PNG_INFO_tRNS
))
1480 png_warning(png_ptr
, "Duplicate tRNS chunk");
1481 png_crc_finish(png_ptr
, length
);
1485 if (png_ptr
->color_type
== PNG_COLOR_TYPE_GRAY
)
1491 png_warning(png_ptr
, "Incorrect tRNS chunk length");
1492 png_crc_finish(png_ptr
, length
);
1496 png_crc_read(png_ptr
, buf
, 2);
1497 png_ptr
->num_trans
= 1;
1498 png_ptr
->trans_color
.gray
= png_get_uint_16(buf
);
1501 else if (png_ptr
->color_type
== PNG_COLOR_TYPE_RGB
)
1507 png_warning(png_ptr
, "Incorrect tRNS chunk length");
1508 png_crc_finish(png_ptr
, length
);
1512 png_crc_read(png_ptr
, buf
, (png_size_t
)length
);
1513 png_ptr
->num_trans
= 1;
1514 png_ptr
->trans_color
.red
= png_get_uint_16(buf
);
1515 png_ptr
->trans_color
.green
= png_get_uint_16(buf
+ 2);
1516 png_ptr
->trans_color
.blue
= png_get_uint_16(buf
+ 4);
1519 else if (png_ptr
->color_type
== PNG_COLOR_TYPE_PALETTE
)
1521 if (!(png_ptr
->mode
& PNG_HAVE_PLTE
))
1523 /* Should be an error, but we can cope with it. */
1524 png_warning(png_ptr
, "Missing PLTE before tRNS");
1527 if (length
> (png_uint_32
)png_ptr
->num_palette
||
1528 length
> PNG_MAX_PALETTE_LENGTH
)
1530 png_warning(png_ptr
, "Incorrect tRNS chunk length");
1531 png_crc_finish(png_ptr
, length
);
1537 png_warning(png_ptr
, "Zero length tRNS chunk");
1538 png_crc_finish(png_ptr
, length
);
1542 png_crc_read(png_ptr
, readbuf
, (png_size_t
)length
);
1543 png_ptr
->num_trans
= (png_uint_16
)length
;
1548 png_warning(png_ptr
, "tRNS chunk not allowed with alpha channel");
1549 png_crc_finish(png_ptr
, length
);
1553 if (png_crc_finish(png_ptr
, 0))
1555 png_ptr
->num_trans
= 0;
1559 png_set_tRNS(png_ptr
, info_ptr
, readbuf
, png_ptr
->num_trans
,
1560 &(png_ptr
->trans_color
));
1564 #ifdef PNG_READ_bKGD_SUPPORTED
1566 png_handle_bKGD(png_structp png_ptr
, png_infop info_ptr
, png_uint_32 length
)
1571 png_debug(1, "in png_handle_bKGD");
1573 if (!(png_ptr
->mode
& PNG_HAVE_IHDR
))
1574 png_error(png_ptr
, "Missing IHDR before bKGD");
1576 else if (png_ptr
->mode
& PNG_HAVE_IDAT
)
1578 png_warning(png_ptr
, "Invalid bKGD after IDAT");
1579 png_crc_finish(png_ptr
, length
);
1583 else if (png_ptr
->color_type
== PNG_COLOR_TYPE_PALETTE
&&
1584 !(png_ptr
->mode
& PNG_HAVE_PLTE
))
1586 png_warning(png_ptr
, "Missing PLTE before bKGD");
1587 png_crc_finish(png_ptr
, length
);
1591 else if (info_ptr
!= NULL
&& (info_ptr
->valid
& PNG_INFO_bKGD
))
1593 png_warning(png_ptr
, "Duplicate bKGD chunk");
1594 png_crc_finish(png_ptr
, length
);
1598 if (png_ptr
->color_type
== PNG_COLOR_TYPE_PALETTE
)
1601 else if (png_ptr
->color_type
& PNG_COLOR_MASK_COLOR
)
1607 if (length
!= truelen
)
1609 png_warning(png_ptr
, "Incorrect bKGD chunk length");
1610 png_crc_finish(png_ptr
, length
);
1614 png_crc_read(png_ptr
, buf
, truelen
);
1616 if (png_crc_finish(png_ptr
, 0))
1619 /* We convert the index value into RGB components so that we can allow
1620 * arbitrary RGB values for background when we have transparency, and
1621 * so it is easy to determine the RGB values of the background color
1622 * from the info_ptr struct.
1624 if (png_ptr
->color_type
== PNG_COLOR_TYPE_PALETTE
)
1626 png_ptr
->background
.index
= buf
[0];
1628 if (info_ptr
&& info_ptr
->num_palette
)
1630 if (buf
[0] >= info_ptr
->num_palette
)
1632 png_warning(png_ptr
, "Incorrect bKGD chunk index value");
1636 png_ptr
->background
.red
=
1637 (png_uint_16
)png_ptr
->palette
[buf
[0]].red
;
1639 png_ptr
->background
.green
=
1640 (png_uint_16
)png_ptr
->palette
[buf
[0]].green
;
1642 png_ptr
->background
.blue
=
1643 (png_uint_16
)png_ptr
->palette
[buf
[0]].blue
;
1647 else if (!(png_ptr
->color_type
& PNG_COLOR_MASK_COLOR
)) /* GRAY */
1649 png_ptr
->background
.red
=
1650 png_ptr
->background
.green
=
1651 png_ptr
->background
.blue
=
1652 png_ptr
->background
.gray
= png_get_uint_16(buf
);
1657 png_ptr
->background
.red
= png_get_uint_16(buf
);
1658 png_ptr
->background
.green
= png_get_uint_16(buf
+ 2);
1659 png_ptr
->background
.blue
= png_get_uint_16(buf
+ 4);
1662 png_set_bKGD(png_ptr
, info_ptr
, &(png_ptr
->background
));
1666 #ifdef PNG_READ_hIST_SUPPORTED
1668 png_handle_hIST(png_structp png_ptr
, png_infop info_ptr
, png_uint_32 length
)
1670 unsigned int num
, i
;
1671 png_uint_16 readbuf
[PNG_MAX_PALETTE_LENGTH
];
1673 png_debug(1, "in png_handle_hIST");
1675 if (!(png_ptr
->mode
& PNG_HAVE_IHDR
))
1676 png_error(png_ptr
, "Missing IHDR before hIST");
1678 else if (png_ptr
->mode
& PNG_HAVE_IDAT
)
1680 png_warning(png_ptr
, "Invalid hIST after IDAT");
1681 png_crc_finish(png_ptr
, length
);
1685 else if (!(png_ptr
->mode
& PNG_HAVE_PLTE
))
1687 png_warning(png_ptr
, "Missing PLTE before hIST");
1688 png_crc_finish(png_ptr
, length
);
1692 else if (info_ptr
!= NULL
&& (info_ptr
->valid
& PNG_INFO_hIST
))
1694 png_warning(png_ptr
, "Duplicate hIST chunk");
1695 png_crc_finish(png_ptr
, length
);
1701 if (num
!= (unsigned int)png_ptr
->num_palette
|| num
>
1702 (unsigned int)PNG_MAX_PALETTE_LENGTH
)
1704 png_warning(png_ptr
, "Incorrect hIST chunk length");
1705 png_crc_finish(png_ptr
, length
);
1709 for (i
= 0; i
< num
; i
++)
1713 png_crc_read(png_ptr
, buf
, 2);
1714 readbuf
[i
] = png_get_uint_16(buf
);
1717 if (png_crc_finish(png_ptr
, 0))
1720 png_set_hIST(png_ptr
, info_ptr
, readbuf
);
1724 #ifdef PNG_READ_pHYs_SUPPORTED
1726 png_handle_pHYs(png_structp png_ptr
, png_infop info_ptr
, png_uint_32 length
)
1729 png_uint_32 res_x
, res_y
;
1732 png_debug(1, "in png_handle_pHYs");
1734 if (!(png_ptr
->mode
& PNG_HAVE_IHDR
))
1735 png_error(png_ptr
, "Missing IHDR before pHYs");
1737 else if (png_ptr
->mode
& PNG_HAVE_IDAT
)
1739 png_warning(png_ptr
, "Invalid pHYs after IDAT");
1740 png_crc_finish(png_ptr
, length
);
1744 else if (info_ptr
!= NULL
&& (info_ptr
->valid
& PNG_INFO_pHYs
))
1746 png_warning(png_ptr
, "Duplicate pHYs chunk");
1747 png_crc_finish(png_ptr
, length
);
1753 png_warning(png_ptr
, "Incorrect pHYs chunk length");
1754 png_crc_finish(png_ptr
, length
);
1758 png_crc_read(png_ptr
, buf
, 9);
1760 if (png_crc_finish(png_ptr
, 0))
1763 res_x
= png_get_uint_32(buf
);
1764 res_y
= png_get_uint_32(buf
+ 4);
1766 png_set_pHYs(png_ptr
, info_ptr
, res_x
, res_y
, unit_type
);
1770 #ifdef PNG_READ_oFFs_SUPPORTED
1772 png_handle_oFFs(png_structp png_ptr
, png_infop info_ptr
, png_uint_32 length
)
1775 png_int_32 offset_x
, offset_y
;
1778 png_debug(1, "in png_handle_oFFs");
1780 if (!(png_ptr
->mode
& PNG_HAVE_IHDR
))
1781 png_error(png_ptr
, "Missing IHDR before oFFs");
1783 else if (png_ptr
->mode
& PNG_HAVE_IDAT
)
1785 png_warning(png_ptr
, "Invalid oFFs after IDAT");
1786 png_crc_finish(png_ptr
, length
);
1790 else if (info_ptr
!= NULL
&& (info_ptr
->valid
& PNG_INFO_oFFs
))
1792 png_warning(png_ptr
, "Duplicate oFFs chunk");
1793 png_crc_finish(png_ptr
, length
);
1799 png_warning(png_ptr
, "Incorrect oFFs chunk length");
1800 png_crc_finish(png_ptr
, length
);
1804 png_crc_read(png_ptr
, buf
, 9);
1806 if (png_crc_finish(png_ptr
, 0))
1809 offset_x
= png_get_int_32(buf
);
1810 offset_y
= png_get_int_32(buf
+ 4);
1812 png_set_oFFs(png_ptr
, info_ptr
, offset_x
, offset_y
, unit_type
);
1816 #ifdef PNG_READ_pCAL_SUPPORTED
1817 /* Read the pCAL chunk (described in the PNG Extensions document) */
1819 png_handle_pCAL(png_structp png_ptr
, png_infop info_ptr
, png_uint_32 length
)
1822 png_byte type
, nparams
;
1823 png_charp buf
, units
, endptr
;
1828 png_debug(1, "in png_handle_pCAL");
1830 if (!(png_ptr
->mode
& PNG_HAVE_IHDR
))
1831 png_error(png_ptr
, "Missing IHDR before pCAL");
1833 else if (png_ptr
->mode
& PNG_HAVE_IDAT
)
1835 png_warning(png_ptr
, "Invalid pCAL after IDAT");
1836 png_crc_finish(png_ptr
, length
);
1840 else if (info_ptr
!= NULL
&& (info_ptr
->valid
& PNG_INFO_pCAL
))
1842 png_warning(png_ptr
, "Duplicate pCAL chunk");
1843 png_crc_finish(png_ptr
, length
);
1847 png_debug1(2, "Allocating and reading pCAL chunk data (%u bytes)",
1849 png_free(png_ptr
, png_ptr
->chunkdata
);
1850 png_ptr
->chunkdata
= (png_charp
)png_malloc_warn(png_ptr
, length
+ 1);
1852 if (png_ptr
->chunkdata
== NULL
)
1854 png_warning(png_ptr
, "No memory for pCAL purpose");
1858 slength
= (png_size_t
)length
;
1859 png_crc_read(png_ptr
, (png_bytep
)png_ptr
->chunkdata
, slength
);
1861 if (png_crc_finish(png_ptr
, 0))
1863 png_free(png_ptr
, png_ptr
->chunkdata
);
1864 png_ptr
->chunkdata
= NULL
;
1868 png_ptr
->chunkdata
[slength
] = 0x00; /* Null terminate the last string */
1870 png_debug(3, "Finding end of pCAL purpose string");
1871 for (buf
= png_ptr
->chunkdata
; *buf
; buf
++)
1874 endptr
= png_ptr
->chunkdata
+ slength
;
1876 /* We need to have at least 12 bytes after the purpose string
1877 * in order to get the parameter information.
1879 if (endptr
<= buf
+ 12)
1881 png_warning(png_ptr
, "Invalid pCAL data");
1882 png_free(png_ptr
, png_ptr
->chunkdata
);
1883 png_ptr
->chunkdata
= NULL
;
1887 png_debug(3, "Reading pCAL X0, X1, type, nparams, and units");
1888 X0
= png_get_int_32((png_bytep
)buf
+1);
1889 X1
= png_get_int_32((png_bytep
)buf
+5);
1894 png_debug(3, "Checking pCAL equation type and number of parameters");
1895 /* Check that we have the right number of parameters for known
1898 if ((type
== PNG_EQUATION_LINEAR
&& nparams
!= 2) ||
1899 (type
== PNG_EQUATION_BASE_E
&& nparams
!= 3) ||
1900 (type
== PNG_EQUATION_ARBITRARY
&& nparams
!= 3) ||
1901 (type
== PNG_EQUATION_HYPERBOLIC
&& nparams
!= 4))
1903 png_warning(png_ptr
, "Invalid pCAL parameters for equation type");
1904 png_free(png_ptr
, png_ptr
->chunkdata
);
1905 png_ptr
->chunkdata
= NULL
;
1909 else if (type
>= PNG_EQUATION_LAST
)
1911 png_warning(png_ptr
, "Unrecognized equation type for pCAL chunk");
1914 for (buf
= units
; *buf
; buf
++)
1915 /* Empty loop to move past the units string. */ ;
1917 png_debug(3, "Allocating pCAL parameters array");
1919 params
= (png_charpp
)png_malloc_warn(png_ptr
,
1920 (png_size_t
)(nparams
* png_sizeof(png_charp
)));
1924 png_free(png_ptr
, png_ptr
->chunkdata
);
1925 png_ptr
->chunkdata
= NULL
;
1926 png_warning(png_ptr
, "No memory for pCAL params");
1930 /* Get pointers to the start of each parameter string. */
1931 for (i
= 0; i
< (int)nparams
; i
++)
1933 buf
++; /* Skip the null string terminator from previous parameter. */
1935 png_debug1(3, "Reading pCAL parameter %d", i
);
1937 for (params
[i
] = buf
; buf
<= endptr
&& *buf
!= 0x00; buf
++)
1938 /* Empty loop to move past each parameter string */ ;
1940 /* Make sure we haven't run out of data yet */
1943 png_warning(png_ptr
, "Invalid pCAL data");
1944 png_free(png_ptr
, png_ptr
->chunkdata
);
1945 png_ptr
->chunkdata
= NULL
;
1946 png_free(png_ptr
, params
);
1951 png_set_pCAL(png_ptr
, info_ptr
, png_ptr
->chunkdata
, X0
, X1
, type
, nparams
,
1954 png_free(png_ptr
, png_ptr
->chunkdata
);
1955 png_ptr
->chunkdata
= NULL
;
1956 png_free(png_ptr
, params
);
1960 #ifdef PNG_READ_sCAL_SUPPORTED
1961 /* Read the sCAL chunk */
1963 png_handle_sCAL(png_structp png_ptr
, png_infop info_ptr
, png_uint_32 length
)
1965 png_size_t slength
, i
;
1968 png_debug(1, "in png_handle_sCAL");
1970 if (!(png_ptr
->mode
& PNG_HAVE_IHDR
))
1971 png_error(png_ptr
, "Missing IHDR before sCAL");
1973 else if (png_ptr
->mode
& PNG_HAVE_IDAT
)
1975 png_warning(png_ptr
, "Invalid sCAL after IDAT");
1976 png_crc_finish(png_ptr
, length
);
1980 else if (info_ptr
!= NULL
&& (info_ptr
->valid
& PNG_INFO_sCAL
))
1982 png_warning(png_ptr
, "Duplicate sCAL chunk");
1983 png_crc_finish(png_ptr
, length
);
1987 png_debug1(2, "Allocating and reading sCAL chunk data (%u bytes)",
1990 png_ptr
->chunkdata
= (png_charp
)png_malloc_warn(png_ptr
, length
+ 1);
1992 if (png_ptr
->chunkdata
== NULL
)
1994 png_warning(png_ptr
, "Out of memory while processing sCAL chunk");
1995 png_crc_finish(png_ptr
, length
);
1999 slength
= (png_size_t
)length
;
2000 png_crc_read(png_ptr
, (png_bytep
)png_ptr
->chunkdata
, slength
);
2001 png_ptr
->chunkdata
[slength
] = 0x00; /* Null terminate the last string */
2003 if (png_crc_finish(png_ptr
, 0))
2005 png_free(png_ptr
, png_ptr
->chunkdata
);
2006 png_ptr
->chunkdata
= NULL
;
2010 /* Validate the unit. */
2011 if (png_ptr
->chunkdata
[0] != 1 && png_ptr
->chunkdata
[0] != 2)
2013 png_warning(png_ptr
, "Invalid sCAL ignored: invalid unit");
2014 png_free(png_ptr
, png_ptr
->chunkdata
);
2015 png_ptr
->chunkdata
= NULL
;
2019 /* Validate the ASCII numbers, need two ASCII numbers separated by
2020 * a '\0' and they need to fit exactly in the chunk data.
2025 if (png_ptr
->chunkdata
[1] == 45 /* negative width */ ||
2026 !png_check_fp_number(png_ptr
->chunkdata
, slength
, &state
, &i
) ||
2027 i
>= slength
|| png_ptr
->chunkdata
[i
++] != 0)
2028 png_warning(png_ptr
, "Invalid sCAL chunk ignored: bad width format");
2032 png_size_t heighti
= i
;
2034 if (png_ptr
->chunkdata
[i
] == 45 /* negative height */ ||
2035 !png_check_fp_number(png_ptr
->chunkdata
, slength
, &state
, &i
) ||
2037 png_warning(png_ptr
, "Invalid sCAL chunk ignored: bad height format");
2040 /* This is the (only) success case. */
2041 png_set_sCAL_s(png_ptr
, info_ptr
, png_ptr
->chunkdata
[0],
2042 png_ptr
->chunkdata
+1, png_ptr
->chunkdata
+heighti
);
2045 /* Clean up - just free the temporarily allocated buffer. */
2046 png_free(png_ptr
, png_ptr
->chunkdata
);
2047 png_ptr
->chunkdata
= NULL
;
2051 #ifdef PNG_READ_tIME_SUPPORTED
2053 png_handle_tIME(png_structp png_ptr
, png_infop info_ptr
, png_uint_32 length
)
2058 png_debug(1, "in png_handle_tIME");
2060 if (!(png_ptr
->mode
& PNG_HAVE_IHDR
))
2061 png_error(png_ptr
, "Out of place tIME chunk");
2063 else if (info_ptr
!= NULL
&& (info_ptr
->valid
& PNG_INFO_tIME
))
2065 png_warning(png_ptr
, "Duplicate tIME chunk");
2066 png_crc_finish(png_ptr
, length
);
2070 if (png_ptr
->mode
& PNG_HAVE_IDAT
)
2071 png_ptr
->mode
|= PNG_AFTER_IDAT
;
2075 png_warning(png_ptr
, "Incorrect tIME chunk length");
2076 png_crc_finish(png_ptr
, length
);
2080 png_crc_read(png_ptr
, buf
, 7);
2082 if (png_crc_finish(png_ptr
, 0))
2085 mod_time
.second
= buf
[6];
2086 mod_time
.minute
= buf
[5];
2087 mod_time
.hour
= buf
[4];
2088 mod_time
.day
= buf
[3];
2089 mod_time
.month
= buf
[2];
2090 mod_time
.year
= png_get_uint_16(buf
);
2092 png_set_tIME(png_ptr
, info_ptr
, &mod_time
);
2096 #ifdef PNG_READ_tEXt_SUPPORTED
2097 /* Note: this does not properly handle chunks that are > 64K under DOS */
2099 png_handle_tEXt(png_structp png_ptr
, png_infop info_ptr
, png_uint_32 length
)
2104 png_uint_32 skip
= 0;
2108 png_debug(1, "in png_handle_tEXt");
2110 #ifdef PNG_USER_LIMITS_SUPPORTED
2111 if (png_ptr
->user_chunk_cache_max
!= 0)
2113 if (png_ptr
->user_chunk_cache_max
== 1)
2115 png_crc_finish(png_ptr
, length
);
2119 if (--png_ptr
->user_chunk_cache_max
== 1)
2121 png_warning(png_ptr
, "No space in chunk cache for tEXt");
2122 png_crc_finish(png_ptr
, length
);
2128 if (!(png_ptr
->mode
& PNG_HAVE_IHDR
))
2129 png_error(png_ptr
, "Missing IHDR before tEXt");
2131 if (png_ptr
->mode
& PNG_HAVE_IDAT
)
2132 png_ptr
->mode
|= PNG_AFTER_IDAT
;
2134 #ifdef PNG_MAX_MALLOC_64K
2135 if (length
> (png_uint_32
)65535L)
2137 png_warning(png_ptr
, "tEXt chunk too large to fit in memory");
2138 skip
= length
- (png_uint_32
)65535L;
2139 length
= (png_uint_32
)65535L;
2143 png_free(png_ptr
, png_ptr
->chunkdata
);
2145 png_ptr
->chunkdata
= (png_charp
)png_malloc_warn(png_ptr
, length
+ 1);
2147 if (png_ptr
->chunkdata
== NULL
)
2149 png_warning(png_ptr
, "No memory to process text chunk");
2153 slength
= (png_size_t
)length
;
2154 png_crc_read(png_ptr
, (png_bytep
)png_ptr
->chunkdata
, slength
);
2156 if (png_crc_finish(png_ptr
, skip
))
2158 png_free(png_ptr
, png_ptr
->chunkdata
);
2159 png_ptr
->chunkdata
= NULL
;
2163 key
= png_ptr
->chunkdata
;
2165 key
[slength
] = 0x00;
2167 for (text
= key
; *text
; text
++)
2168 /* Empty loop to find end of key */ ;
2170 if (text
!= key
+ slength
)
2173 text_ptr
= (png_textp
)png_malloc_warn(png_ptr
,
2174 png_sizeof(png_text
));
2176 if (text_ptr
== NULL
)
2178 png_warning(png_ptr
, "Not enough memory to process text chunk");
2179 png_free(png_ptr
, png_ptr
->chunkdata
);
2180 png_ptr
->chunkdata
= NULL
;
2184 text_ptr
->compression
= PNG_TEXT_COMPRESSION_NONE
;
2185 text_ptr
->key
= key
;
2186 text_ptr
->lang
= NULL
;
2187 text_ptr
->lang_key
= NULL
;
2188 text_ptr
->itxt_length
= 0;
2189 text_ptr
->text
= text
;
2190 text_ptr
->text_length
= png_strlen(text
);
2192 ret
= png_set_text_2(png_ptr
, info_ptr
, text_ptr
, 1);
2194 png_free(png_ptr
, png_ptr
->chunkdata
);
2195 png_ptr
->chunkdata
= NULL
;
2196 png_free(png_ptr
, text_ptr
);
2199 png_warning(png_ptr
, "Insufficient memory to process text chunk");
2203 #ifdef PNG_READ_zTXt_SUPPORTED
2204 /* Note: this does not correctly handle chunks that are > 64K under DOS */
2206 png_handle_zTXt(png_structp png_ptr
, png_infop info_ptr
, png_uint_32 length
)
2212 png_size_t slength
, prefix_len
, data_len
;
2214 png_debug(1, "in png_handle_zTXt");
2216 #ifdef PNG_USER_LIMITS_SUPPORTED
2217 if (png_ptr
->user_chunk_cache_max
!= 0)
2219 if (png_ptr
->user_chunk_cache_max
== 1)
2221 png_crc_finish(png_ptr
, length
);
2225 if (--png_ptr
->user_chunk_cache_max
== 1)
2227 png_warning(png_ptr
, "No space in chunk cache for zTXt");
2228 png_crc_finish(png_ptr
, length
);
2234 if (!(png_ptr
->mode
& PNG_HAVE_IHDR
))
2235 png_error(png_ptr
, "Missing IHDR before zTXt");
2237 if (png_ptr
->mode
& PNG_HAVE_IDAT
)
2238 png_ptr
->mode
|= PNG_AFTER_IDAT
;
2240 #ifdef PNG_MAX_MALLOC_64K
2241 /* We will no doubt have problems with chunks even half this size, but
2242 * there is no hard and fast rule to tell us where to stop.
2244 if (length
> (png_uint_32
)65535L)
2246 png_warning(png_ptr
, "zTXt chunk too large to fit in memory");
2247 png_crc_finish(png_ptr
, length
);
2252 png_free(png_ptr
, png_ptr
->chunkdata
);
2253 png_ptr
->chunkdata
= (png_charp
)png_malloc_warn(png_ptr
, length
+ 1);
2255 if (png_ptr
->chunkdata
== NULL
)
2257 png_warning(png_ptr
, "Out of memory processing zTXt chunk");
2261 slength
= (png_size_t
)length
;
2262 png_crc_read(png_ptr
, (png_bytep
)png_ptr
->chunkdata
, slength
);
2264 if (png_crc_finish(png_ptr
, 0))
2266 png_free(png_ptr
, png_ptr
->chunkdata
);
2267 png_ptr
->chunkdata
= NULL
;
2271 png_ptr
->chunkdata
[slength
] = 0x00;
2273 for (text
= png_ptr
->chunkdata
; *text
; text
++)
2276 /* zTXt must have some text after the chunkdataword */
2277 if (text
>= png_ptr
->chunkdata
+ slength
- 2)
2279 png_warning(png_ptr
, "Truncated zTXt chunk");
2280 png_free(png_ptr
, png_ptr
->chunkdata
);
2281 png_ptr
->chunkdata
= NULL
;
2287 comp_type
= *(++text
);
2289 if (comp_type
!= PNG_TEXT_COMPRESSION_zTXt
)
2291 png_warning(png_ptr
, "Unknown compression type in zTXt chunk");
2292 comp_type
= PNG_TEXT_COMPRESSION_zTXt
;
2295 text
++; /* Skip the compression_method byte */
2298 prefix_len
= text
- png_ptr
->chunkdata
;
2300 png_decompress_chunk(png_ptr
, comp_type
,
2301 (png_size_t
)length
, prefix_len
, &data_len
);
2303 text_ptr
= (png_textp
)png_malloc_warn(png_ptr
,
2304 png_sizeof(png_text
));
2306 if (text_ptr
== NULL
)
2308 png_warning(png_ptr
, "Not enough memory to process zTXt chunk");
2309 png_free(png_ptr
, png_ptr
->chunkdata
);
2310 png_ptr
->chunkdata
= NULL
;
2314 text_ptr
->compression
= comp_type
;
2315 text_ptr
->key
= png_ptr
->chunkdata
;
2316 text_ptr
->lang
= NULL
;
2317 text_ptr
->lang_key
= NULL
;
2318 text_ptr
->itxt_length
= 0;
2319 text_ptr
->text
= png_ptr
->chunkdata
+ prefix_len
;
2320 text_ptr
->text_length
= data_len
;
2322 ret
= png_set_text_2(png_ptr
, info_ptr
, text_ptr
, 1);
2324 png_free(png_ptr
, text_ptr
);
2325 png_free(png_ptr
, png_ptr
->chunkdata
);
2326 png_ptr
->chunkdata
= NULL
;
2329 png_error(png_ptr
, "Insufficient memory to store zTXt chunk");
2333 #ifdef PNG_READ_iTXt_SUPPORTED
2334 /* Note: this does not correctly handle chunks that are > 64K under DOS */
2336 png_handle_iTXt(png_structp png_ptr
, png_infop info_ptr
, png_uint_32 length
)
2339 png_charp key
, lang
, text
, lang_key
;
2343 png_size_t slength
, prefix_len
, data_len
;
2345 png_debug(1, "in png_handle_iTXt");
2347 #ifdef PNG_USER_LIMITS_SUPPORTED
2348 if (png_ptr
->user_chunk_cache_max
!= 0)
2350 if (png_ptr
->user_chunk_cache_max
== 1)
2352 png_crc_finish(png_ptr
, length
);
2356 if (--png_ptr
->user_chunk_cache_max
== 1)
2358 png_warning(png_ptr
, "No space in chunk cache for iTXt");
2359 png_crc_finish(png_ptr
, length
);
2365 if (!(png_ptr
->mode
& PNG_HAVE_IHDR
))
2366 png_error(png_ptr
, "Missing IHDR before iTXt");
2368 if (png_ptr
->mode
& PNG_HAVE_IDAT
)
2369 png_ptr
->mode
|= PNG_AFTER_IDAT
;
2371 #ifdef PNG_MAX_MALLOC_64K
2372 /* We will no doubt have problems with chunks even half this size, but
2373 * there is no hard and fast rule to tell us where to stop.
2375 if (length
> (png_uint_32
)65535L)
2377 png_warning(png_ptr
, "iTXt chunk too large to fit in memory");
2378 png_crc_finish(png_ptr
, length
);
2383 png_free(png_ptr
, png_ptr
->chunkdata
);
2384 png_ptr
->chunkdata
= (png_charp
)png_malloc_warn(png_ptr
, length
+ 1);
2386 if (png_ptr
->chunkdata
== NULL
)
2388 png_warning(png_ptr
, "No memory to process iTXt chunk");
2392 slength
= (png_size_t
)length
;
2393 png_crc_read(png_ptr
, (png_bytep
)png_ptr
->chunkdata
, slength
);
2395 if (png_crc_finish(png_ptr
, 0))
2397 png_free(png_ptr
, png_ptr
->chunkdata
);
2398 png_ptr
->chunkdata
= NULL
;
2402 png_ptr
->chunkdata
[slength
] = 0x00;
2404 for (lang
= png_ptr
->chunkdata
; *lang
; lang
++)
2407 lang
++; /* Skip NUL separator */
2409 /* iTXt must have a language tag (possibly empty), two compression bytes,
2410 * translated keyword (possibly empty), and possibly some text after the
2414 if (lang
>= png_ptr
->chunkdata
+ slength
- 3)
2416 png_warning(png_ptr
, "Truncated iTXt chunk");
2417 png_free(png_ptr
, png_ptr
->chunkdata
);
2418 png_ptr
->chunkdata
= NULL
;
2424 comp_flag
= *lang
++;
2425 comp_type
= *lang
++;
2428 for (lang_key
= lang
; *lang_key
; lang_key
++)
2431 lang_key
++; /* Skip NUL separator */
2433 if (lang_key
>= png_ptr
->chunkdata
+ slength
)
2435 png_warning(png_ptr
, "Truncated iTXt chunk");
2436 png_free(png_ptr
, png_ptr
->chunkdata
);
2437 png_ptr
->chunkdata
= NULL
;
2441 for (text
= lang_key
; *text
; text
++)
2444 text
++; /* Skip NUL separator */
2446 if (text
>= png_ptr
->chunkdata
+ slength
)
2448 png_warning(png_ptr
, "Malformed iTXt chunk");
2449 png_free(png_ptr
, png_ptr
->chunkdata
);
2450 png_ptr
->chunkdata
= NULL
;
2454 prefix_len
= text
- png_ptr
->chunkdata
;
2456 key
=png_ptr
->chunkdata
;
2459 png_decompress_chunk(png_ptr
, comp_type
,
2460 (size_t)length
, prefix_len
, &data_len
);
2463 data_len
= png_strlen(png_ptr
->chunkdata
+ prefix_len
);
2465 text_ptr
= (png_textp
)png_malloc_warn(png_ptr
,
2466 png_sizeof(png_text
));
2468 if (text_ptr
== NULL
)
2470 png_warning(png_ptr
, "Not enough memory to process iTXt chunk");
2471 png_free(png_ptr
, png_ptr
->chunkdata
);
2472 png_ptr
->chunkdata
= NULL
;
2476 text_ptr
->compression
= (int)comp_flag
+ 1;
2477 text_ptr
->lang_key
= png_ptr
->chunkdata
+ (lang_key
- key
);
2478 text_ptr
->lang
= png_ptr
->chunkdata
+ (lang
- key
);
2479 text_ptr
->itxt_length
= data_len
;
2480 text_ptr
->text_length
= 0;
2481 text_ptr
->key
= png_ptr
->chunkdata
;
2482 text_ptr
->text
= png_ptr
->chunkdata
+ prefix_len
;
2484 ret
= png_set_text_2(png_ptr
, info_ptr
, text_ptr
, 1);
2486 png_free(png_ptr
, text_ptr
);
2487 png_free(png_ptr
, png_ptr
->chunkdata
);
2488 png_ptr
->chunkdata
= NULL
;
2491 png_error(png_ptr
, "Insufficient memory to store iTXt chunk");
2495 /* This function is called when we haven't found a handler for a
2496 * chunk. If there isn't a problem with the chunk itself (ie bad
2497 * chunk name, CRC, or a critical chunk), the chunk is silently ignored
2498 * -- unless the PNG_FLAG_UNKNOWN_CHUNKS_SUPPORTED flag is on in which
2499 * case it will be saved away to be written out later.
2502 png_handle_unknown(png_structp png_ptr
, png_infop info_ptr
, png_uint_32 length
)
2504 png_uint_32 skip
= 0;
2506 png_debug(1, "in png_handle_unknown");
2508 #ifdef PNG_USER_LIMITS_SUPPORTED
2509 if (png_ptr
->user_chunk_cache_max
!= 0)
2511 if (png_ptr
->user_chunk_cache_max
== 1)
2513 png_crc_finish(png_ptr
, length
);
2517 if (--png_ptr
->user_chunk_cache_max
== 1)
2519 png_warning(png_ptr
, "No space in chunk cache for unknown chunk");
2520 png_crc_finish(png_ptr
, length
);
2526 if (png_ptr
->mode
& PNG_HAVE_IDAT
)
2530 if (png_memcmp(png_ptr
->chunk_name
, png_IDAT
, 4)) /* Not an IDAT */
2531 png_ptr
->mode
|= PNG_AFTER_IDAT
;
2534 if (!(png_ptr
->chunk_name
[0] & 0x20))
2536 #ifdef PNG_HANDLE_AS_UNKNOWN_SUPPORTED
2537 if (png_handle_as_unknown(png_ptr
, png_ptr
->chunk_name
) !=
2538 PNG_HANDLE_CHUNK_ALWAYS
2539 #ifdef PNG_READ_USER_CHUNKS_SUPPORTED
2540 && png_ptr
->read_user_chunk_fn
== NULL
2544 png_chunk_error(png_ptr
, "unknown critical chunk");
2547 #ifdef PNG_READ_UNKNOWN_CHUNKS_SUPPORTED
2548 if ((png_ptr
->flags
& PNG_FLAG_KEEP_UNKNOWN_CHUNKS
)
2549 #ifdef PNG_READ_USER_CHUNKS_SUPPORTED
2550 || (png_ptr
->read_user_chunk_fn
!= NULL
)
2554 #ifdef PNG_MAX_MALLOC_64K
2555 if (length
> (png_uint_32
)65535L)
2557 png_warning(png_ptr
, "unknown chunk too large to fit in memory");
2558 skip
= length
- (png_uint_32
)65535L;
2559 length
= (png_uint_32
)65535L;
2563 png_memcpy((png_charp
)png_ptr
->unknown_chunk
.name
,
2564 (png_charp
)png_ptr
->chunk_name
,
2565 png_sizeof(png_ptr
->unknown_chunk
.name
));
2567 png_ptr
->unknown_chunk
.name
[png_sizeof(png_ptr
->unknown_chunk
.name
)-1]
2570 png_ptr
->unknown_chunk
.size
= (png_size_t
)length
;
2573 png_ptr
->unknown_chunk
.data
= NULL
;
2577 png_ptr
->unknown_chunk
.data
= (png_bytep
)png_malloc(png_ptr
, length
);
2578 png_crc_read(png_ptr
, (png_bytep
)png_ptr
->unknown_chunk
.data
, length
);
2581 #ifdef PNG_READ_USER_CHUNKS_SUPPORTED
2582 if (png_ptr
->read_user_chunk_fn
!= NULL
)
2584 /* Callback to user unknown chunk handler */
2587 ret
= (*(png_ptr
->read_user_chunk_fn
))
2588 (png_ptr
, &png_ptr
->unknown_chunk
);
2591 png_chunk_error(png_ptr
, "error in user chunk");
2595 if (!(png_ptr
->chunk_name
[0] & 0x20))
2597 #ifdef PNG_HANDLE_AS_UNKNOWN_SUPPORTED
2598 if (png_handle_as_unknown(png_ptr
, png_ptr
->chunk_name
) !=
2599 PNG_HANDLE_CHUNK_ALWAYS
)
2601 png_chunk_error(png_ptr
, "unknown critical chunk");
2604 png_set_unknown_chunks(png_ptr
, info_ptr
,
2605 &png_ptr
->unknown_chunk
, 1);
2611 png_set_unknown_chunks(png_ptr
, info_ptr
, &png_ptr
->unknown_chunk
, 1);
2613 png_free(png_ptr
, png_ptr
->unknown_chunk
.data
);
2614 png_ptr
->unknown_chunk
.data
= NULL
;
2621 png_crc_finish(png_ptr
, skip
);
2623 #ifndef PNG_READ_USER_CHUNKS_SUPPORTED
2624 PNG_UNUSED(info_ptr
) /* Quiet compiler warnings about unused info_ptr */
2628 /* This function is called to verify that a chunk name is valid.
2629 * This function can't have the "critical chunk check" incorporated
2630 * into it, since in the future we will need to be able to call user
2631 * functions to handle unknown critical chunks after we check that
2632 * the chunk name itself is valid.
2635 #define isnonalpha(c) ((c) < 65 || (c) > 122 || ((c) > 90 && (c) < 97))
2638 png_check_chunk_name(png_structp png_ptr
, png_const_bytep chunk_name
)
2640 png_debug(1, "in png_check_chunk_name");
2641 if (isnonalpha(chunk_name
[0]) || isnonalpha(chunk_name
[1]) ||
2642 isnonalpha(chunk_name
[2]) || isnonalpha(chunk_name
[3]))
2644 png_chunk_error(png_ptr
, "invalid chunk type");
2648 /* Combines the row recently read in with the existing pixels in the
2649 * row. This routine takes care of alpha and transparency if requested.
2650 * This routine also handles the two methods of progressive display
2651 * of interlaced images, depending on the mask value.
2652 * The mask value describes which pixels are to be combined with
2653 * the row. The pattern always repeats every 8 pixels, so just 8
2654 * bits are needed. A one indicates the pixel is to be combined,
2655 * a zero indicates the pixel is to be skipped. This is in addition
2656 * to any alpha or transparency value associated with the pixel. If
2657 * you want all pixels to be combined, pass 0xff (255) in mask.
2661 png_combine_row(png_structp png_ptr
, png_bytep row
, int mask
)
2663 png_debug(1, "in png_combine_row");
2667 png_memcpy(row
, png_ptr
->row_buf
+ 1,
2668 PNG_ROWBYTES(png_ptr
->row_info
.pixel_depth
, png_ptr
->width
));
2673 switch (png_ptr
->row_info
.pixel_depth
)
2677 png_bytep sp
= png_ptr
->row_buf
+ 1;
2679 int s_inc
, s_start
, s_end
;
2683 png_uint_32 row_width
= png_ptr
->width
;
2685 #ifdef PNG_READ_PACKSWAP_SUPPORTED
2686 if (png_ptr
->transformations
& PNG_PACKSWAP
)
2703 for (i
= 0; i
< row_width
; i
++)
2709 value
= (*sp
>> shift
) & 0x01;
2710 *dp
&= (png_byte
)((0x7f7f >> (7 - shift
)) & 0xff);
2711 *dp
|= (png_byte
)(value
<< shift
);
2735 png_bytep sp
= png_ptr
->row_buf
+ 1;
2737 int s_start
, s_end
, s_inc
;
2741 png_uint_32 row_width
= png_ptr
->width
;
2744 #ifdef PNG_READ_PACKSWAP_SUPPORTED
2745 if (png_ptr
->transformations
& PNG_PACKSWAP
)
2762 for (i
= 0; i
< row_width
; i
++)
2766 value
= (*sp
>> shift
) & 0x03;
2767 *dp
&= (png_byte
)((0x3f3f >> (6 - shift
)) & 0xff);
2768 *dp
|= (png_byte
)(value
<< shift
);
2792 png_bytep sp
= png_ptr
->row_buf
+ 1;
2794 int s_start
, s_end
, s_inc
;
2798 png_uint_32 row_width
= png_ptr
->width
;
2801 #ifdef PNG_READ_PACKSWAP_SUPPORTED
2802 if (png_ptr
->transformations
& PNG_PACKSWAP
)
2818 for (i
= 0; i
< row_width
; i
++)
2822 value
= (*sp
>> shift
) & 0xf;
2823 *dp
&= (png_byte
)((0xf0f >> (4 - shift
)) & 0xff);
2824 *dp
|= (png_byte
)(value
<< shift
);
2848 png_bytep sp
= png_ptr
->row_buf
+ 1;
2850 png_size_t pixel_bytes
= (png_ptr
->row_info
.pixel_depth
>> 3);
2852 png_uint_32 row_width
= png_ptr
->width
;
2855 for (i
= 0; i
< row_width
; i
++)
2859 png_memcpy(dp
, sp
, pixel_bytes
);
2877 #ifdef PNG_READ_INTERLACING_SUPPORTED
2879 png_do_read_interlace(png_structp png_ptr
)
2881 png_row_infop row_info
= &(png_ptr
->row_info
);
2882 png_bytep row
= png_ptr
->row_buf
+ 1;
2883 int pass
= png_ptr
->pass
;
2884 png_uint_32 transformations
= png_ptr
->transformations
;
2885 /* Arrays to facilitate easy interlacing - use pass (0 - 6) as index */
2886 /* Offset to next interlace block */
2887 PNG_CONST
int png_pass_inc
[7] = {8, 8, 4, 4, 2, 2, 1};
2889 png_debug(1, "in png_do_read_interlace");
2890 if (row
!= NULL
&& row_info
!= NULL
)
2892 png_uint_32 final_width
;
2894 final_width
= row_info
->width
* png_pass_inc
[pass
];
2896 switch (row_info
->pixel_depth
)
2900 png_bytep sp
= row
+ (png_size_t
)((row_info
->width
- 1) >> 3);
2901 png_bytep dp
= row
+ (png_size_t
)((final_width
- 1) >> 3);
2903 int s_start
, s_end
, s_inc
;
2904 int jstop
= png_pass_inc
[pass
];
2909 #ifdef PNG_READ_PACKSWAP_SUPPORTED
2910 if (transformations
& PNG_PACKSWAP
)
2912 sshift
= (int)((row_info
->width
+ 7) & 0x07);
2913 dshift
= (int)((final_width
+ 7) & 0x07);
2922 sshift
= 7 - (int)((row_info
->width
+ 7) & 0x07);
2923 dshift
= 7 - (int)((final_width
+ 7) & 0x07);
2929 for (i
= 0; i
< row_info
->width
; i
++)
2931 v
= (png_byte
)((*sp
>> sshift
) & 0x01);
2932 for (j
= 0; j
< jstop
; j
++)
2934 *dp
&= (png_byte
)((0x7f7f >> (7 - dshift
)) & 0xff);
2935 *dp
|= (png_byte
)(v
<< dshift
);
2937 if (dshift
== s_end
)
2947 if (sshift
== s_end
)
2961 png_bytep sp
= row
+ (png_uint_32
)((row_info
->width
- 1) >> 2);
2962 png_bytep dp
= row
+ (png_uint_32
)((final_width
- 1) >> 2);
2964 int s_start
, s_end
, s_inc
;
2965 int jstop
= png_pass_inc
[pass
];
2968 #ifdef PNG_READ_PACKSWAP_SUPPORTED
2969 if (transformations
& PNG_PACKSWAP
)
2971 sshift
= (int)(((row_info
->width
+ 3) & 0x03) << 1);
2972 dshift
= (int)(((final_width
+ 3) & 0x03) << 1);
2981 sshift
= (int)((3 - ((row_info
->width
+ 3) & 0x03)) << 1);
2982 dshift
= (int)((3 - ((final_width
+ 3) & 0x03)) << 1);
2988 for (i
= 0; i
< row_info
->width
; i
++)
2993 v
= (png_byte
)((*sp
>> sshift
) & 0x03);
2994 for (j
= 0; j
< jstop
; j
++)
2996 *dp
&= (png_byte
)((0x3f3f >> (6 - dshift
)) & 0xff);
2997 *dp
|= (png_byte
)(v
<< dshift
);
2999 if (dshift
== s_end
)
3009 if (sshift
== s_end
)
3023 png_bytep sp
= row
+ (png_size_t
)((row_info
->width
- 1) >> 1);
3024 png_bytep dp
= row
+ (png_size_t
)((final_width
- 1) >> 1);
3026 int s_start
, s_end
, s_inc
;
3028 int jstop
= png_pass_inc
[pass
];
3030 #ifdef PNG_READ_PACKSWAP_SUPPORTED
3031 if (transformations
& PNG_PACKSWAP
)
3033 sshift
= (int)(((row_info
->width
+ 1) & 0x01) << 2);
3034 dshift
= (int)(((final_width
+ 1) & 0x01) << 2);
3043 sshift
= (int)((1 - ((row_info
->width
+ 1) & 0x01)) << 2);
3044 dshift
= (int)((1 - ((final_width
+ 1) & 0x01)) << 2);
3050 for (i
= 0; i
< row_info
->width
; i
++)
3052 png_byte v
= (png_byte
)((*sp
>> sshift
) & 0xf);
3055 for (j
= 0; j
< jstop
; j
++)
3057 *dp
&= (png_byte
)((0xf0f >> (4 - dshift
)) & 0xff);
3058 *dp
|= (png_byte
)(v
<< dshift
);
3060 if (dshift
== s_end
)
3070 if (sshift
== s_end
)
3083 png_size_t pixel_bytes
= (row_info
->pixel_depth
>> 3);
3085 png_bytep sp
= row
+ (png_size_t
)(row_info
->width
- 1)
3088 png_bytep dp
= row
+ (png_size_t
)(final_width
- 1) * pixel_bytes
;
3090 int jstop
= png_pass_inc
[pass
];
3093 for (i
= 0; i
< row_info
->width
; i
++)
3098 png_memcpy(v
, sp
, pixel_bytes
);
3100 for (j
= 0; j
< jstop
; j
++)
3102 png_memcpy(dp
, v
, pixel_bytes
);
3111 row_info
->width
= final_width
;
3112 row_info
->rowbytes
= PNG_ROWBYTES(row_info
->pixel_depth
, final_width
);
3114 #ifndef PNG_READ_PACKSWAP_SUPPORTED
3115 PNG_UNUSED(transformations
) /* Silence compiler warning */
3118 #endif /* PNG_READ_INTERLACING_SUPPORTED */
3121 png_read_filter_row(png_structp png_ptr
, png_row_infop row_info
, png_bytep row
,
3122 png_const_bytep prev_row
, int filter
)
3124 png_debug(1, "in png_read_filter_row");
3125 png_debug2(2, "row = %u, filter = %d", png_ptr
->row_number
, filter
);
3128 case PNG_FILTER_VALUE_NONE
:
3131 case PNG_FILTER_VALUE_SUB
:
3134 png_size_t istop
= row_info
->rowbytes
;
3135 unsigned int bpp
= (row_info
->pixel_depth
+ 7) >> 3;
3136 png_bytep rp
= row
+ bpp
;
3139 for (i
= bpp
; i
< istop
; i
++)
3141 *rp
= (png_byte
)(((int)(*rp
) + (int)(*lp
++)) & 0xff);
3146 case PNG_FILTER_VALUE_UP
:
3149 png_size_t istop
= row_info
->rowbytes
;
3151 png_const_bytep pp
= prev_row
;
3153 for (i
= 0; i
< istop
; i
++)
3155 *rp
= (png_byte
)(((int)(*rp
) + (int)(*pp
++)) & 0xff);
3160 case PNG_FILTER_VALUE_AVG
:
3164 png_const_bytep pp
= prev_row
;
3166 unsigned int bpp
= (row_info
->pixel_depth
+ 7) >> 3;
3167 png_size_t istop
= row_info
->rowbytes
- bpp
;
3169 for (i
= 0; i
< bpp
; i
++)
3171 *rp
= (png_byte
)(((int)(*rp
) +
3172 ((int)(*pp
++) / 2 )) & 0xff);
3177 for (i
= 0; i
< istop
; i
++)
3179 *rp
= (png_byte
)(((int)(*rp
) +
3180 (int)(*pp
++ + *lp
++) / 2 ) & 0xff);
3186 case PNG_FILTER_VALUE_PAETH
:
3190 png_const_bytep pp
= prev_row
;
3192 png_const_bytep cp
= prev_row
;
3193 unsigned int bpp
= (row_info
->pixel_depth
+ 7) >> 3;
3194 png_size_t istop
=row_info
->rowbytes
- bpp
;
3196 for (i
= 0; i
< bpp
; i
++)
3198 *rp
= (png_byte
)(((int)(*rp
) + (int)(*pp
++)) & 0xff);
3202 for (i
= 0; i
< istop
; i
++) /* Use leftover rp,pp */
3204 int a
, b
, c
, pa
, pb
, pc
, p
;
3218 pa
= p
< 0 ? -p
: p
;
3219 pb
= pc
< 0 ? -pc
: pc
;
3220 pc
= (p
+ pc
) < 0 ? -(p
+ pc
) : p
+ pc
;
3224 if (pa <= pb && pa <= pc)
3234 p
= (pa
<= pb
&& pa
<= pc
) ? a
: (pb
<= pc
) ? b
: c
;
3236 *rp
= (png_byte
)(((int)(*rp
) + p
) & 0xff);
3242 png_error(png_ptr
, "Ignoring bad adaptive filter type");
3248 #ifdef PNG_SEQUENTIAL_READ_SUPPORTED
3250 png_read_finish_row(png_structp png_ptr
)
3252 #ifdef PNG_READ_INTERLACING_SUPPORTED
3253 /* Arrays to facilitate easy interlacing - use pass (0 - 6) as index */
3255 /* Start of interlace block */
3256 PNG_CONST
int png_pass_start
[7] = {0, 4, 0, 2, 0, 1, 0};
3258 /* Offset to next interlace block */
3259 PNG_CONST
int png_pass_inc
[7] = {8, 8, 4, 4, 2, 2, 1};
3261 /* Start of interlace block in the y direction */
3262 PNG_CONST
int png_pass_ystart
[7] = {0, 0, 4, 0, 2, 0, 1};
3264 /* Offset to next interlace block in the y direction */
3265 PNG_CONST
int png_pass_yinc
[7] = {8, 8, 8, 4, 4, 2, 2};
3266 #endif /* PNG_READ_INTERLACING_SUPPORTED */
3268 png_debug(1, "in png_read_finish_row");
3269 png_ptr
->row_number
++;
3270 if (png_ptr
->row_number
< png_ptr
->num_rows
)
3273 #ifdef PNG_READ_INTERLACING_SUPPORTED
3274 if (png_ptr
->interlaced
)
3276 png_ptr
->row_number
= 0;
3278 png_memset(png_ptr
->prev_row
, 0, png_ptr
->rowbytes
+ 1);
3284 if (png_ptr
->pass
>= 7)
3287 png_ptr
->iwidth
= (png_ptr
->width
+
3288 png_pass_inc
[png_ptr
->pass
] - 1 -
3289 png_pass_start
[png_ptr
->pass
]) /
3290 png_pass_inc
[png_ptr
->pass
];
3292 if (!(png_ptr
->transformations
& PNG_INTERLACE
))
3294 png_ptr
->num_rows
= (png_ptr
->height
+
3295 png_pass_yinc
[png_ptr
->pass
] - 1 -
3296 png_pass_ystart
[png_ptr
->pass
]) /
3297 png_pass_yinc
[png_ptr
->pass
];
3300 else /* if (png_ptr->transformations & PNG_INTERLACE) */
3301 break; /* libpng deinterlacing sees every row */
3303 } while (png_ptr
->num_rows
== 0 || png_ptr
->iwidth
== 0);
3305 if (png_ptr
->pass
< 7)
3308 #endif /* PNG_READ_INTERLACING_SUPPORTED */
3310 if (!(png_ptr
->flags
& PNG_FLAG_ZLIB_FINISHED
))
3316 png_ptr
->zstream
.next_out
= (Byte
*)&extra
;
3317 png_ptr
->zstream
.avail_out
= (uInt
)1;
3321 if (!(png_ptr
->zstream
.avail_in
))
3323 while (!png_ptr
->idat_size
)
3325 png_crc_finish(png_ptr
, 0);
3326 png_ptr
->idat_size
= png_read_chunk_header(png_ptr
);
3327 if (png_memcmp(png_ptr
->chunk_name
, png_IDAT
, 4))
3328 png_error(png_ptr
, "Not enough image data");
3331 png_ptr
->zstream
.avail_in
= (uInt
)png_ptr
->zbuf_size
;
3332 png_ptr
->zstream
.next_in
= png_ptr
->zbuf
;
3334 if (png_ptr
->zbuf_size
> png_ptr
->idat_size
)
3335 png_ptr
->zstream
.avail_in
= (uInt
)png_ptr
->idat_size
;
3337 png_crc_read(png_ptr
, png_ptr
->zbuf
, png_ptr
->zstream
.avail_in
);
3338 png_ptr
->idat_size
-= png_ptr
->zstream
.avail_in
;
3341 ret
= inflate(&png_ptr
->zstream
, Z_PARTIAL_FLUSH
);
3343 if (ret
== Z_STREAM_END
)
3345 if (!(png_ptr
->zstream
.avail_out
) || png_ptr
->zstream
.avail_in
||
3347 png_warning(png_ptr
, "Extra compressed data");
3349 png_ptr
->mode
|= PNG_AFTER_IDAT
;
3350 png_ptr
->flags
|= PNG_FLAG_ZLIB_FINISHED
;
3355 png_error(png_ptr
, png_ptr
->zstream
.msg
? png_ptr
->zstream
.msg
:
3356 "Decompression Error");
3358 if (!(png_ptr
->zstream
.avail_out
))
3360 png_warning(png_ptr
, "Extra compressed data");
3361 png_ptr
->mode
|= PNG_AFTER_IDAT
;
3362 png_ptr
->flags
|= PNG_FLAG_ZLIB_FINISHED
;
3367 png_ptr
->zstream
.avail_out
= 0;
3370 if (png_ptr
->idat_size
|| png_ptr
->zstream
.avail_in
)
3371 png_warning(png_ptr
, "Extra compression data");
3373 inflateReset(&png_ptr
->zstream
);
3375 png_ptr
->mode
|= PNG_AFTER_IDAT
;
3377 #endif /* PNG_SEQUENTIAL_READ_SUPPORTED */
3380 png_read_start_row(png_structp png_ptr
)
3382 #ifdef PNG_READ_INTERLACING_SUPPORTED
3383 /* Arrays to facilitate easy interlacing - use pass (0 - 6) as index */
3385 /* Start of interlace block */
3386 PNG_CONST
int png_pass_start
[7] = {0, 4, 0, 2, 0, 1, 0};
3388 /* Offset to next interlace block */
3389 PNG_CONST
int png_pass_inc
[7] = {8, 8, 4, 4, 2, 2, 1};
3391 /* Start of interlace block in the y direction */
3392 PNG_CONST
int png_pass_ystart
[7] = {0, 0, 4, 0, 2, 0, 1};
3394 /* Offset to next interlace block in the y direction */
3395 PNG_CONST
int png_pass_yinc
[7] = {8, 8, 8, 4, 4, 2, 2};
3398 int max_pixel_depth
;
3399 png_size_t row_bytes
;
3401 png_debug(1, "in png_read_start_row");
3402 png_ptr
->zstream
.avail_in
= 0;
3403 png_init_read_transformations(png_ptr
);
3404 #ifdef PNG_READ_INTERLACING_SUPPORTED
3405 if (png_ptr
->interlaced
)
3407 if (!(png_ptr
->transformations
& PNG_INTERLACE
))
3408 png_ptr
->num_rows
= (png_ptr
->height
+ png_pass_yinc
[0] - 1 -
3409 png_pass_ystart
[0]) / png_pass_yinc
[0];
3412 png_ptr
->num_rows
= png_ptr
->height
;
3414 png_ptr
->iwidth
= (png_ptr
->width
+
3415 png_pass_inc
[png_ptr
->pass
] - 1 -
3416 png_pass_start
[png_ptr
->pass
]) /
3417 png_pass_inc
[png_ptr
->pass
];
3421 #endif /* PNG_READ_INTERLACING_SUPPORTED */
3423 png_ptr
->num_rows
= png_ptr
->height
;
3424 png_ptr
->iwidth
= png_ptr
->width
;
3427 max_pixel_depth
= png_ptr
->pixel_depth
;
3429 #ifdef PNG_READ_PACK_SUPPORTED
3430 if ((png_ptr
->transformations
& PNG_PACK
) && png_ptr
->bit_depth
< 8)
3431 max_pixel_depth
= 8;
3434 #ifdef PNG_READ_EXPAND_SUPPORTED
3435 if (png_ptr
->transformations
& PNG_EXPAND
)
3437 if (png_ptr
->color_type
== PNG_COLOR_TYPE_PALETTE
)
3439 if (png_ptr
->num_trans
)
3440 max_pixel_depth
= 32;
3443 max_pixel_depth
= 24;
3446 else if (png_ptr
->color_type
== PNG_COLOR_TYPE_GRAY
)
3448 if (max_pixel_depth
< 8)
3449 max_pixel_depth
= 8;
3451 if (png_ptr
->num_trans
)
3452 max_pixel_depth
*= 2;
3455 else if (png_ptr
->color_type
== PNG_COLOR_TYPE_RGB
)
3457 if (png_ptr
->num_trans
)
3459 max_pixel_depth
*= 4;
3460 max_pixel_depth
/= 3;
3466 #ifdef PNG_READ_FILLER_SUPPORTED
3467 if (png_ptr
->transformations
& (PNG_FILLER
))
3469 if (png_ptr
->color_type
== PNG_COLOR_TYPE_PALETTE
)
3470 max_pixel_depth
= 32;
3472 else if (png_ptr
->color_type
== PNG_COLOR_TYPE_GRAY
)
3474 if (max_pixel_depth
<= 8)
3475 max_pixel_depth
= 16;
3478 max_pixel_depth
= 32;
3481 else if (png_ptr
->color_type
== PNG_COLOR_TYPE_RGB
)
3483 if (max_pixel_depth
<= 32)
3484 max_pixel_depth
= 32;
3487 max_pixel_depth
= 64;
3492 #ifdef PNG_READ_GRAY_TO_RGB_SUPPORTED
3493 if (png_ptr
->transformations
& PNG_GRAY_TO_RGB
)
3496 #ifdef PNG_READ_EXPAND_SUPPORTED
3497 (png_ptr
->num_trans
&& (png_ptr
->transformations
& PNG_EXPAND
)) ||
3499 #ifdef PNG_READ_FILLER_SUPPORTED
3500 (png_ptr
->transformations
& (PNG_FILLER
)) ||
3502 png_ptr
->color_type
== PNG_COLOR_TYPE_GRAY_ALPHA
)
3504 if (max_pixel_depth
<= 16)
3505 max_pixel_depth
= 32;
3508 max_pixel_depth
= 64;
3513 if (max_pixel_depth
<= 8)
3515 if (png_ptr
->color_type
== PNG_COLOR_TYPE_RGB_ALPHA
)
3516 max_pixel_depth
= 32;
3519 max_pixel_depth
= 24;
3522 else if (png_ptr
->color_type
== PNG_COLOR_TYPE_RGB_ALPHA
)
3523 max_pixel_depth
= 64;
3526 max_pixel_depth
= 48;
3531 #if defined(PNG_READ_USER_TRANSFORM_SUPPORTED) && \
3532 defined(PNG_USER_TRANSFORM_PTR_SUPPORTED)
3533 if (png_ptr
->transformations
& PNG_USER_TRANSFORM
)
3535 int user_pixel_depth
= png_ptr
->user_transform_depth
*
3536 png_ptr
->user_transform_channels
;
3538 if (user_pixel_depth
> max_pixel_depth
)
3539 max_pixel_depth
=user_pixel_depth
;
3543 /* Align the width on the next larger 8 pixels. Mainly used
3546 row_bytes
= ((png_ptr
->width
+ 7) & ~((png_uint_32
)7));
3547 /* Calculate the maximum bytes needed, adding a byte and a pixel
3550 row_bytes
= PNG_ROWBYTES(max_pixel_depth
, row_bytes
) +
3551 1 + ((max_pixel_depth
+ 7) >> 3);
3553 #ifdef PNG_MAX_MALLOC_64K
3554 if (row_bytes
> (png_uint_32
)65536L)
3555 png_error(png_ptr
, "This image requires a row greater than 64KB");
3558 if (row_bytes
+ 48 > png_ptr
->old_big_row_buf_size
)
3560 png_free(png_ptr
, png_ptr
->big_row_buf
);
3562 if (png_ptr
->interlaced
)
3563 png_ptr
->big_row_buf
= (png_bytep
)png_calloc(png_ptr
,
3567 png_ptr
->big_row_buf
= (png_bytep
)png_malloc(png_ptr
,
3570 png_ptr
->old_big_row_buf_size
= row_bytes
+ 48;
3572 #ifdef PNG_ALIGNED_MEMORY_SUPPORTED
3573 /* Use 16-byte aligned memory for row_buf with at least 16 bytes
3574 * of padding before and after row_buf.
3576 png_ptr
->row_buf
= png_ptr
->big_row_buf
+ 32 -
3577 (((png_alloc_size_t
)png_ptr
->big_row_buf
+ 15) & 0x0F);
3579 png_ptr
->old_big_row_buf_size
= row_bytes
+ 48;
3581 /* Use 32 bytes of padding before and 16 bytes after row_buf. */
3582 png_ptr
->row_buf
= png_ptr
->big_row_buf
+ 32;
3584 png_ptr
->old_big_row_buf_size
= row_bytes
+ 48;
3587 #ifdef PNG_MAX_MALLOC_64K
3588 if (png_ptr
->rowbytes
> 65535)
3589 png_error(png_ptr
, "This image requires a row greater than 64KB");
3592 if (png_ptr
->rowbytes
> (PNG_SIZE_MAX
- 1))
3593 png_error(png_ptr
, "Row has too many bytes to allocate in memory");
3595 if (png_ptr
->rowbytes
+ 1 > png_ptr
->old_prev_row_size
)
3597 png_free(png_ptr
, png_ptr
->prev_row
);
3599 png_ptr
->prev_row
= (png_bytep
)png_malloc(png_ptr
, png_ptr
->rowbytes
+ 1);
3601 png_ptr
->old_prev_row_size
= png_ptr
->rowbytes
+ 1;
3604 png_memset(png_ptr
->prev_row
, 0, png_ptr
->rowbytes
+ 1);
3606 png_debug1(3, "width = %u,", png_ptr
->width
);
3607 png_debug1(3, "height = %u,", png_ptr
->height
);
3608 png_debug1(3, "iwidth = %u,", png_ptr
->iwidth
);
3609 png_debug1(3, "num_rows = %u,", png_ptr
->num_rows
);
3610 png_debug1(3, "rowbytes = %lu,", (unsigned long)png_ptr
->rowbytes
);
3611 png_debug1(3, "irowbytes = %lu",
3612 (unsigned long)PNG_ROWBYTES(png_ptr
->pixel_depth
, png_ptr
->iwidth
) + 1);
3614 png_ptr
->flags
|= PNG_FLAG_ROW_INIT
;
3616 #endif /* PNG_READ_SUPPORTED */