1995-12-19 09:22:19 +00:00
|
|
|
|
|
|
|
/* pngpread.c - read a png file in push mode
|
1998-01-01 13:13:13 +00:00
|
|
|
*
|
2010-06-26 00:31:30 +00:00
|
|
|
* Last changed in libpng 1.2.44 [June 26, 2010]
|
2010-02-07 14:12:28 +00:00
|
|
|
* Copyright (c) 1998-2010 Glenn Randers-Pehrson
|
2000-06-04 19:29:29 +00:00
|
|
|
* (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
|
|
|
|
* (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
|
2009-06-29 01:26:26 +00:00
|
|
|
*
|
|
|
|
* This code is released under the libpng license.
|
|
|
|
* For conditions of distribution and use, see the disclaimer
|
|
|
|
* and license in png.h
|
1998-01-01 13:13:13 +00:00
|
|
|
*/
|
1995-12-19 09:22:19 +00:00
|
|
|
|
|
|
|
#define PNG_INTERNAL
|
2009-11-25 22:04:13 +00:00
|
|
|
#define PNG_NO_PEDANTIC_WARNINGS
|
1995-12-19 09:22:19 +00:00
|
|
|
#include "png.h"
|
1996-01-16 07:51:56 +00:00
|
|
|
#ifdef PNG_PROGRESSIVE_READ_SUPPORTED
|
|
|
|
|
2009-05-20 17:43:52 +00:00
|
|
|
/* Push model modes */
|
1999-12-10 15:43:02 +00:00
|
|
|
#define PNG_READ_SIG_MODE 0
|
|
|
|
#define PNG_READ_CHUNK_MODE 1
|
|
|
|
#define PNG_READ_IDAT_MODE 2
|
|
|
|
#define PNG_SKIP_MODE 3
|
|
|
|
#define PNG_READ_tEXt_MODE 4
|
|
|
|
#define PNG_READ_zTXt_MODE 5
|
|
|
|
#define PNG_READ_DONE_MODE 6
|
|
|
|
#define PNG_READ_iTXt_MODE 7
|
|
|
|
#define PNG_ERROR_MODE 8
|
|
|
|
|
2000-05-06 19:09:57 +00:00
|
|
|
void PNGAPI
|
1997-01-17 07:34:35 +00:00
|
|
|
png_process_data(png_structp png_ptr, png_infop info_ptr,
|
1997-05-16 07:46:07 +00:00
|
|
|
png_bytep buffer, png_size_t buffer_size)
|
1995-12-19 09:22:19 +00:00
|
|
|
{
|
2009-05-20 17:43:52 +00:00
|
|
|
if (png_ptr == NULL || info_ptr == NULL)
|
|
|
|
return;
|
|
|
|
|
1996-01-26 07:38:47 +00:00
|
|
|
png_push_restore_buffer(png_ptr, buffer, buffer_size);
|
1995-12-19 09:22:19 +00:00
|
|
|
|
1996-01-26 07:38:47 +00:00
|
|
|
while (png_ptr->buffer_size)
|
|
|
|
{
|
1997-01-17 07:34:35 +00:00
|
|
|
png_process_some_data(png_ptr, info_ptr);
|
1996-01-26 07:38:47 +00:00
|
|
|
}
|
1995-12-19 09:22:19 +00:00
|
|
|
}
|
|
|
|
|
1997-01-17 07:34:35 +00:00
|
|
|
/* What we do with the incoming data depends on what we were previously
|
|
|
|
* doing before we ran out of data...
|
|
|
|
*/
|
2000-05-06 19:09:57 +00:00
|
|
|
void /* PRIVATE */
|
1997-01-17 07:34:35 +00:00
|
|
|
png_process_some_data(png_structp png_ptr, png_infop info_ptr)
|
1995-12-19 09:22:19 +00:00
|
|
|
{
|
2009-05-20 17:43:52 +00:00
|
|
|
if (png_ptr == NULL)
|
|
|
|
return;
|
|
|
|
|
1996-01-26 07:38:47 +00:00
|
|
|
switch (png_ptr->process_mode)
|
|
|
|
{
|
|
|
|
case PNG_READ_SIG_MODE:
|
|
|
|
{
|
1997-01-17 07:34:35 +00:00
|
|
|
png_push_read_sig(png_ptr, info_ptr);
|
1996-01-26 07:38:47 +00:00
|
|
|
break;
|
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1996-01-26 07:38:47 +00:00
|
|
|
case PNG_READ_CHUNK_MODE:
|
|
|
|
{
|
1997-01-17 07:34:35 +00:00
|
|
|
png_push_read_chunk(png_ptr, info_ptr);
|
1996-01-26 07:38:47 +00:00
|
|
|
break;
|
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1996-01-26 07:38:47 +00:00
|
|
|
case PNG_READ_IDAT_MODE:
|
|
|
|
{
|
1996-06-05 20:50:50 +00:00
|
|
|
png_push_read_IDAT(png_ptr);
|
1996-01-26 07:38:47 +00:00
|
|
|
break;
|
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1996-01-26 07:38:47 +00:00
|
|
|
case PNG_SKIP_MODE:
|
|
|
|
{
|
1997-05-16 07:46:07 +00:00
|
|
|
png_push_crc_finish(png_ptr);
|
1996-01-26 07:38:47 +00:00
|
|
|
break;
|
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1996-01-26 07:38:47 +00:00
|
|
|
default:
|
|
|
|
{
|
|
|
|
png_ptr->buffer_size = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
1995-12-19 09:22:19 +00:00
|
|
|
}
|
|
|
|
|
1997-01-17 07:34:35 +00:00
|
|
|
/* Read any remaining signature bytes from the stream and compare them with
|
|
|
|
* the correct PNG signature. It is possible that this routine is called
|
1998-06-14 19:43:31 +00:00
|
|
|
* with bytes already read from the signature, either because they have been
|
|
|
|
* checked by the calling application, or because of multiple calls to this
|
|
|
|
* routine.
|
1997-01-17 07:34:35 +00:00
|
|
|
*/
|
2000-05-06 19:09:57 +00:00
|
|
|
void /* PRIVATE */
|
1997-01-17 07:34:35 +00:00
|
|
|
png_push_read_sig(png_structp png_ptr, png_infop info_ptr)
|
1995-12-19 09:22:19 +00:00
|
|
|
{
|
1997-05-16 07:46:07 +00:00
|
|
|
png_size_t num_checked = png_ptr->sig_bytes,
|
|
|
|
num_to_check = 8 - num_checked;
|
1996-01-26 07:38:47 +00:00
|
|
|
|
1997-01-17 07:34:35 +00:00
|
|
|
if (png_ptr->buffer_size < num_to_check)
|
1996-01-26 07:38:47 +00:00
|
|
|
{
|
1997-01-17 07:34:35 +00:00
|
|
|
num_to_check = png_ptr->buffer_size;
|
1996-01-26 07:38:47 +00:00
|
|
|
}
|
|
|
|
|
1998-12-29 17:47:59 +00:00
|
|
|
png_push_fill_buffer(png_ptr, &(info_ptr->signature[num_checked]),
|
1997-05-16 07:46:07 +00:00
|
|
|
num_to_check);
|
2008-07-10 14:10:58 +00:00
|
|
|
png_ptr->sig_bytes = (png_byte)(png_ptr->sig_bytes + num_to_check);
|
1996-01-26 07:38:47 +00:00
|
|
|
|
1997-01-17 07:34:35 +00:00
|
|
|
if (png_sig_cmp(info_ptr->signature, num_checked, num_to_check))
|
1996-01-26 07:38:47 +00:00
|
|
|
{
|
1997-01-17 07:34:35 +00:00
|
|
|
if (num_checked < 4 &&
|
|
|
|
png_sig_cmp(info_ptr->signature, num_checked, num_to_check - 4))
|
|
|
|
png_error(png_ptr, "Not a PNG file");
|
|
|
|
else
|
|
|
|
png_error(png_ptr, "PNG file corrupted by ASCII conversion");
|
1996-01-26 07:38:47 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
1997-01-17 07:34:35 +00:00
|
|
|
if (png_ptr->sig_bytes >= 8)
|
|
|
|
{
|
|
|
|
png_ptr->process_mode = PNG_READ_CHUNK_MODE;
|
|
|
|
}
|
1996-01-26 07:38:47 +00:00
|
|
|
}
|
1995-12-19 09:22:19 +00:00
|
|
|
}
|
|
|
|
|
2000-05-06 19:09:57 +00:00
|
|
|
void /* PRIVATE */
|
1997-01-17 07:34:35 +00:00
|
|
|
png_push_read_chunk(png_structp png_ptr, png_infop info_ptr)
|
1995-12-19 09:22:19 +00:00
|
|
|
{
|
1999-11-29 05:32:18 +00:00
|
|
|
#ifdef PNG_USE_LOCAL_ARRAYS
|
2007-05-21 18:27:47 +00:00
|
|
|
PNG_CONST PNG_IHDR;
|
|
|
|
PNG_CONST PNG_IDAT;
|
|
|
|
PNG_CONST PNG_IEND;
|
|
|
|
PNG_CONST PNG_PLTE;
|
2009-10-12 18:41:14 +00:00
|
|
|
#ifdef PNG_READ_bKGD_SUPPORTED
|
2007-05-21 18:27:47 +00:00
|
|
|
PNG_CONST PNG_bKGD;
|
1999-11-29 05:32:18 +00:00
|
|
|
#endif
|
2009-10-12 18:41:14 +00:00
|
|
|
#ifdef PNG_READ_cHRM_SUPPORTED
|
2007-05-21 18:27:47 +00:00
|
|
|
PNG_CONST PNG_cHRM;
|
1999-11-29 05:32:18 +00:00
|
|
|
#endif
|
2009-10-12 18:41:14 +00:00
|
|
|
#ifdef PNG_READ_gAMA_SUPPORTED
|
2007-05-21 18:27:47 +00:00
|
|
|
PNG_CONST PNG_gAMA;
|
1999-11-29 05:32:18 +00:00
|
|
|
#endif
|
2009-10-12 18:41:14 +00:00
|
|
|
#ifdef PNG_READ_hIST_SUPPORTED
|
2007-05-21 18:27:47 +00:00
|
|
|
PNG_CONST PNG_hIST;
|
1999-11-29 05:32:18 +00:00
|
|
|
#endif
|
2009-10-12 18:41:14 +00:00
|
|
|
#ifdef PNG_READ_iCCP_SUPPORTED
|
2007-05-21 18:27:47 +00:00
|
|
|
PNG_CONST PNG_iCCP;
|
2000-02-05 05:40:16 +00:00
|
|
|
#endif
|
2009-10-12 18:41:14 +00:00
|
|
|
#ifdef PNG_READ_iTXt_SUPPORTED
|
2007-05-21 18:27:47 +00:00
|
|
|
PNG_CONST PNG_iTXt;
|
2000-02-05 05:40:16 +00:00
|
|
|
#endif
|
2009-10-12 18:41:14 +00:00
|
|
|
#ifdef PNG_READ_oFFs_SUPPORTED
|
2007-05-21 18:27:47 +00:00
|
|
|
PNG_CONST PNG_oFFs;
|
1999-11-29 05:32:18 +00:00
|
|
|
#endif
|
2009-10-12 18:41:14 +00:00
|
|
|
#ifdef PNG_READ_pCAL_SUPPORTED
|
2007-05-21 18:27:47 +00:00
|
|
|
PNG_CONST PNG_pCAL;
|
1999-11-29 05:32:18 +00:00
|
|
|
#endif
|
2009-10-12 18:41:14 +00:00
|
|
|
#ifdef PNG_READ_pHYs_SUPPORTED
|
2007-05-21 18:27:47 +00:00
|
|
|
PNG_CONST PNG_pHYs;
|
1999-11-29 05:32:18 +00:00
|
|
|
#endif
|
2009-10-12 18:41:14 +00:00
|
|
|
#ifdef PNG_READ_sBIT_SUPPORTED
|
2007-05-21 18:27:47 +00:00
|
|
|
PNG_CONST PNG_sBIT;
|
1999-11-29 05:32:18 +00:00
|
|
|
#endif
|
2009-10-12 18:41:14 +00:00
|
|
|
#ifdef PNG_READ_sCAL_SUPPORTED
|
2007-05-21 18:27:47 +00:00
|
|
|
PNG_CONST PNG_sCAL;
|
2000-02-05 05:40:16 +00:00
|
|
|
#endif
|
2009-10-12 18:41:14 +00:00
|
|
|
#ifdef PNG_READ_sRGB_SUPPORTED
|
2007-05-21 18:27:47 +00:00
|
|
|
PNG_CONST PNG_sRGB;
|
1999-11-29 05:32:18 +00:00
|
|
|
#endif
|
2009-10-12 18:41:14 +00:00
|
|
|
#ifdef PNG_READ_sPLT_SUPPORTED
|
2007-05-21 18:27:47 +00:00
|
|
|
PNG_CONST PNG_sPLT;
|
1999-12-10 15:43:02 +00:00
|
|
|
#endif
|
2009-10-12 18:41:14 +00:00
|
|
|
#ifdef PNG_READ_tEXt_SUPPORTED
|
2007-05-21 18:27:47 +00:00
|
|
|
PNG_CONST PNG_tEXt;
|
1999-11-29 05:32:18 +00:00
|
|
|
#endif
|
2009-10-12 18:41:14 +00:00
|
|
|
#ifdef PNG_READ_tIME_SUPPORTED
|
2007-05-21 18:27:47 +00:00
|
|
|
PNG_CONST PNG_tIME;
|
1999-11-29 05:32:18 +00:00
|
|
|
#endif
|
2009-10-12 18:41:14 +00:00
|
|
|
#ifdef PNG_READ_tRNS_SUPPORTED
|
2007-05-21 18:27:47 +00:00
|
|
|
PNG_CONST PNG_tRNS;
|
1999-11-29 05:32:18 +00:00
|
|
|
#endif
|
2009-10-12 18:41:14 +00:00
|
|
|
#ifdef PNG_READ_zTXt_SUPPORTED
|
2007-05-21 18:27:47 +00:00
|
|
|
PNG_CONST PNG_zTXt;
|
1999-11-29 05:32:18 +00:00
|
|
|
#endif
|
|
|
|
#endif /* PNG_USE_LOCAL_ARRAYS */
|
2009-10-12 18:41:14 +00:00
|
|
|
|
1997-01-17 07:34:35 +00:00
|
|
|
/* First we make sure we have enough data for the 4 byte chunk name
|
1998-01-01 13:13:13 +00:00
|
|
|
* and the 4 byte chunk length before proceeding with decoding the
|
|
|
|
* chunk data. To fully decode each of these chunks, we also make
|
|
|
|
* sure we have enough data in the buffer for the 4 byte CRC at the
|
|
|
|
* end of every chunk (except IDAT, which is handled separately).
|
|
|
|
*/
|
1999-11-27 16:22:33 +00:00
|
|
|
if (!(png_ptr->mode & PNG_HAVE_CHUNK_HEADER))
|
1996-01-26 07:38:47 +00:00
|
|
|
{
|
1997-01-17 07:34:35 +00:00
|
|
|
png_byte chunk_length[4];
|
1996-01-26 07:38:47 +00:00
|
|
|
|
|
|
|
if (png_ptr->buffer_size < 8)
|
|
|
|
{
|
|
|
|
png_push_save_buffer(png_ptr);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
1997-01-17 07:34:35 +00:00
|
|
|
png_push_fill_buffer(png_ptr, chunk_length, 4);
|
2008-07-06 11:05:04 +00:00
|
|
|
png_ptr->push_length = png_get_uint_31(png_ptr, chunk_length);
|
1996-01-26 07:38:47 +00:00
|
|
|
png_reset_crc(png_ptr);
|
1997-05-16 07:46:07 +00:00
|
|
|
png_crc_read(png_ptr, png_ptr->chunk_name, 4);
|
2008-07-30 00:08:32 +00:00
|
|
|
png_check_chunk_name(png_ptr, png_ptr->chunk_name);
|
1999-11-27 16:22:33 +00:00
|
|
|
png_ptr->mode |= PNG_HAVE_CHUNK_HEADER;
|
1996-01-26 07:38:47 +00:00
|
|
|
}
|
|
|
|
|
2007-09-18 17:44:25 +00:00
|
|
|
if (!png_memcmp(png_ptr->chunk_name, png_IDAT, 4))
|
2008-07-10 14:10:58 +00:00
|
|
|
if (png_ptr->mode & PNG_AFTER_IDAT)
|
2006-06-07 02:48:26 +00:00
|
|
|
png_ptr->mode |= PNG_HAVE_CHUNK_AFTER_IDAT;
|
|
|
|
|
1997-01-17 07:34:35 +00:00
|
|
|
if (!png_memcmp(png_ptr->chunk_name, png_IHDR, 4))
|
1996-01-26 07:38:47 +00:00
|
|
|
{
|
2008-07-30 00:08:32 +00:00
|
|
|
if (png_ptr->push_length != 13)
|
|
|
|
png_error(png_ptr, "Invalid IHDR length");
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1996-01-26 07:38:47 +00:00
|
|
|
if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
|
|
|
{
|
|
|
|
png_push_save_buffer(png_ptr);
|
|
|
|
return;
|
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1997-01-17 07:34:35 +00:00
|
|
|
png_handle_IHDR(png_ptr, info_ptr, png_ptr->push_length);
|
1996-01-26 07:38:47 +00:00
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
2004-08-10 02:50:32 +00:00
|
|
|
else if (!png_memcmp(png_ptr->chunk_name, png_IEND, 4))
|
|
|
|
{
|
|
|
|
if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
|
|
|
{
|
|
|
|
png_push_save_buffer(png_ptr);
|
|
|
|
return;
|
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
2004-08-10 02:50:32 +00:00
|
|
|
png_handle_IEND(png_ptr, info_ptr, png_ptr->push_length);
|
|
|
|
|
|
|
|
png_ptr->process_mode = PNG_READ_DONE_MODE;
|
|
|
|
png_push_have_end(png_ptr, info_ptr);
|
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
2004-08-10 02:50:32 +00:00
|
|
|
#ifdef PNG_HANDLE_AS_UNKNOWN_SUPPORTED
|
|
|
|
else if (png_handle_as_unknown(png_ptr, png_ptr->chunk_name))
|
|
|
|
{
|
|
|
|
if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
|
|
|
{
|
|
|
|
png_push_save_buffer(png_ptr);
|
|
|
|
return;
|
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
2004-08-10 02:50:32 +00:00
|
|
|
if (!png_memcmp(png_ptr->chunk_name, png_IDAT, 4))
|
|
|
|
png_ptr->mode |= PNG_HAVE_IDAT;
|
2009-05-20 17:43:52 +00:00
|
|
|
|
2004-08-10 02:50:32 +00:00
|
|
|
png_handle_unknown(png_ptr, info_ptr, png_ptr->push_length);
|
2009-05-20 17:43:52 +00:00
|
|
|
|
2004-08-10 02:50:32 +00:00
|
|
|
if (!png_memcmp(png_ptr->chunk_name, png_PLTE, 4))
|
|
|
|
png_ptr->mode |= PNG_HAVE_PLTE;
|
2009-05-20 17:43:52 +00:00
|
|
|
|
2004-08-10 02:50:32 +00:00
|
|
|
else if (!png_memcmp(png_ptr->chunk_name, png_IDAT, 4))
|
|
|
|
{
|
|
|
|
if (!(png_ptr->mode & PNG_HAVE_IHDR))
|
|
|
|
png_error(png_ptr, "Missing IHDR before IDAT");
|
2009-05-20 17:43:52 +00:00
|
|
|
|
2004-08-10 02:50:32 +00:00
|
|
|
else if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE &&
|
|
|
|
!(png_ptr->mode & PNG_HAVE_PLTE))
|
|
|
|
png_error(png_ptr, "Missing PLTE before IDAT");
|
|
|
|
}
|
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
2004-08-10 02:50:32 +00:00
|
|
|
#endif
|
1997-01-17 07:34:35 +00:00
|
|
|
else if (!png_memcmp(png_ptr->chunk_name, png_PLTE, 4))
|
1996-01-26 07:38:47 +00:00
|
|
|
{
|
1997-01-17 07:34:35 +00:00
|
|
|
if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
1996-01-26 07:38:47 +00:00
|
|
|
{
|
1997-01-17 07:34:35 +00:00
|
|
|
png_push_save_buffer(png_ptr);
|
|
|
|
return;
|
1996-01-26 07:38:47 +00:00
|
|
|
}
|
1997-01-17 07:34:35 +00:00
|
|
|
png_handle_PLTE(png_ptr, info_ptr, png_ptr->push_length);
|
1996-01-26 07:38:47 +00:00
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
2007-09-18 17:44:25 +00:00
|
|
|
else if (!png_memcmp(png_ptr->chunk_name, png_IDAT, 4))
|
1996-01-26 07:38:47 +00:00
|
|
|
{
|
1997-01-17 07:34:35 +00:00
|
|
|
/* If we reach an IDAT chunk, this means we have read all of the
|
1998-01-01 13:13:13 +00:00
|
|
|
* header chunks, and we can start reading the image (or if this
|
|
|
|
* is called after the image has been read - we have an error).
|
|
|
|
*/
|
2009-05-20 17:43:52 +00:00
|
|
|
|
|
|
|
if (!(png_ptr->mode & PNG_HAVE_IHDR))
|
|
|
|
png_error(png_ptr, "Missing IHDR before IDAT");
|
|
|
|
|
|
|
|
else if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE &&
|
|
|
|
!(png_ptr->mode & PNG_HAVE_PLTE))
|
|
|
|
png_error(png_ptr, "Missing PLTE before IDAT");
|
2002-03-26 00:49:08 +00:00
|
|
|
|
1997-01-17 07:34:35 +00:00
|
|
|
if (png_ptr->mode & PNG_HAVE_IDAT)
|
|
|
|
{
|
2006-06-07 02:48:26 +00:00
|
|
|
if (!(png_ptr->mode & PNG_HAVE_CHUNK_AFTER_IDAT))
|
2009-05-20 17:43:52 +00:00
|
|
|
if (png_ptr->push_length == 0)
|
|
|
|
return;
|
1997-01-17 07:34:35 +00:00
|
|
|
|
|
|
|
if (png_ptr->mode & PNG_AFTER_IDAT)
|
|
|
|
png_error(png_ptr, "Too many IDAT's found");
|
|
|
|
}
|
|
|
|
|
1996-01-26 07:38:47 +00:00
|
|
|
png_ptr->idat_size = png_ptr->push_length;
|
1997-01-17 07:34:35 +00:00
|
|
|
png_ptr->mode |= PNG_HAVE_IDAT;
|
1996-01-26 07:38:47 +00:00
|
|
|
png_ptr->process_mode = PNG_READ_IDAT_MODE;
|
1997-01-17 07:34:35 +00:00
|
|
|
png_push_have_info(png_ptr, info_ptr);
|
2010-02-07 14:12:28 +00:00
|
|
|
png_ptr->zstream.avail_out =
|
|
|
|
(uInt) PNG_ROWBYTES(png_ptr->pixel_depth,
|
|
|
|
png_ptr->iwidth) + 1;
|
1997-01-17 07:34:35 +00:00
|
|
|
png_ptr->zstream.next_out = png_ptr->row_buf;
|
1996-01-26 07:38:47 +00:00
|
|
|
return;
|
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
2009-10-12 18:41:14 +00:00
|
|
|
#ifdef PNG_READ_gAMA_SUPPORTED
|
1997-01-17 07:34:35 +00:00
|
|
|
else if (!png_memcmp(png_ptr->chunk_name, png_gAMA, 4))
|
1996-01-26 07:38:47 +00:00
|
|
|
{
|
|
|
|
if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
|
|
|
{
|
|
|
|
png_push_save_buffer(png_ptr);
|
|
|
|
return;
|
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1997-01-17 07:34:35 +00:00
|
|
|
png_handle_gAMA(png_ptr, info_ptr, png_ptr->push_length);
|
1996-01-26 07:38:47 +00:00
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1995-12-19 09:22:19 +00:00
|
|
|
#endif
|
2009-10-12 18:41:14 +00:00
|
|
|
#ifdef PNG_READ_sBIT_SUPPORTED
|
1997-01-17 07:34:35 +00:00
|
|
|
else if (!png_memcmp(png_ptr->chunk_name, png_sBIT, 4))
|
1996-01-26 07:38:47 +00:00
|
|
|
{
|
|
|
|
if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
|
|
|
{
|
|
|
|
png_push_save_buffer(png_ptr);
|
|
|
|
return;
|
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1997-01-17 07:34:35 +00:00
|
|
|
png_handle_sBIT(png_ptr, info_ptr, png_ptr->push_length);
|
1996-01-26 07:38:47 +00:00
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1995-12-19 09:22:19 +00:00
|
|
|
#endif
|
2009-10-12 18:41:14 +00:00
|
|
|
#ifdef PNG_READ_cHRM_SUPPORTED
|
1997-01-17 07:34:35 +00:00
|
|
|
else if (!png_memcmp(png_ptr->chunk_name, png_cHRM, 4))
|
1996-01-26 07:38:47 +00:00
|
|
|
{
|
|
|
|
if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
|
|
|
{
|
|
|
|
png_push_save_buffer(png_ptr);
|
|
|
|
return;
|
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1997-01-17 07:34:35 +00:00
|
|
|
png_handle_cHRM(png_ptr, info_ptr, png_ptr->push_length);
|
1996-01-26 07:38:47 +00:00
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1995-12-19 09:22:19 +00:00
|
|
|
#endif
|
2009-10-12 18:41:14 +00:00
|
|
|
#ifdef PNG_READ_sRGB_SUPPORTED
|
1998-01-01 13:13:13 +00:00
|
|
|
else if (!png_memcmp(png_ptr->chunk_name, png_sRGB, 4))
|
|
|
|
{
|
|
|
|
if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
|
|
|
{
|
|
|
|
png_push_save_buffer(png_ptr);
|
|
|
|
return;
|
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1998-01-01 13:13:13 +00:00
|
|
|
png_handle_sRGB(png_ptr, info_ptr, png_ptr->push_length);
|
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1998-01-01 13:13:13 +00:00
|
|
|
#endif
|
2009-10-12 18:41:14 +00:00
|
|
|
#ifdef PNG_READ_iCCP_SUPPORTED
|
1999-12-10 15:43:02 +00:00
|
|
|
else if (!png_memcmp(png_ptr->chunk_name, png_iCCP, 4))
|
|
|
|
{
|
|
|
|
if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
|
|
|
{
|
|
|
|
png_push_save_buffer(png_ptr);
|
|
|
|
return;
|
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1999-12-10 15:43:02 +00:00
|
|
|
png_handle_iCCP(png_ptr, info_ptr, png_ptr->push_length);
|
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1999-12-10 15:43:02 +00:00
|
|
|
#endif
|
2009-10-12 18:41:14 +00:00
|
|
|
#ifdef PNG_READ_sPLT_SUPPORTED
|
1999-12-10 15:43:02 +00:00
|
|
|
else if (!png_memcmp(png_ptr->chunk_name, png_sPLT, 4))
|
|
|
|
{
|
|
|
|
if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
|
|
|
{
|
|
|
|
png_push_save_buffer(png_ptr);
|
|
|
|
return;
|
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1999-12-10 15:43:02 +00:00
|
|
|
png_handle_sPLT(png_ptr, info_ptr, png_ptr->push_length);
|
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1999-12-10 15:43:02 +00:00
|
|
|
#endif
|
2009-10-12 18:41:14 +00:00
|
|
|
#ifdef PNG_READ_tRNS_SUPPORTED
|
1997-01-17 07:34:35 +00:00
|
|
|
else if (!png_memcmp(png_ptr->chunk_name, png_tRNS, 4))
|
1996-01-26 07:38:47 +00:00
|
|
|
{
|
|
|
|
if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
|
|
|
{
|
|
|
|
png_push_save_buffer(png_ptr);
|
|
|
|
return;
|
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1997-01-17 07:34:35 +00:00
|
|
|
png_handle_tRNS(png_ptr, info_ptr, png_ptr->push_length);
|
1996-01-26 07:38:47 +00:00
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1995-12-19 09:22:19 +00:00
|
|
|
#endif
|
2009-10-12 18:41:14 +00:00
|
|
|
#ifdef PNG_READ_bKGD_SUPPORTED
|
1997-01-17 07:34:35 +00:00
|
|
|
else if (!png_memcmp(png_ptr->chunk_name, png_bKGD, 4))
|
1996-01-26 07:38:47 +00:00
|
|
|
{
|
|
|
|
if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
|
|
|
{
|
|
|
|
png_push_save_buffer(png_ptr);
|
|
|
|
return;
|
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1997-01-17 07:34:35 +00:00
|
|
|
png_handle_bKGD(png_ptr, info_ptr, png_ptr->push_length);
|
1996-01-26 07:38:47 +00:00
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1995-12-19 09:22:19 +00:00
|
|
|
#endif
|
2009-10-12 18:41:14 +00:00
|
|
|
#ifdef PNG_READ_hIST_SUPPORTED
|
1997-01-17 07:34:35 +00:00
|
|
|
else if (!png_memcmp(png_ptr->chunk_name, png_hIST, 4))
|
1996-01-26 07:38:47 +00:00
|
|
|
{
|
|
|
|
if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
|
|
|
{
|
|
|
|
png_push_save_buffer(png_ptr);
|
|
|
|
return;
|
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1997-01-17 07:34:35 +00:00
|
|
|
png_handle_hIST(png_ptr, info_ptr, png_ptr->push_length);
|
1996-01-26 07:38:47 +00:00
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1995-12-19 09:22:19 +00:00
|
|
|
#endif
|
2009-10-12 18:41:14 +00:00
|
|
|
#ifdef PNG_READ_pHYs_SUPPORTED
|
1997-01-17 07:34:35 +00:00
|
|
|
else if (!png_memcmp(png_ptr->chunk_name, png_pHYs, 4))
|
1996-01-26 07:38:47 +00:00
|
|
|
{
|
|
|
|
if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
|
|
|
{
|
|
|
|
png_push_save_buffer(png_ptr);
|
|
|
|
return;
|
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1997-01-17 07:34:35 +00:00
|
|
|
png_handle_pHYs(png_ptr, info_ptr, png_ptr->push_length);
|
1996-01-26 07:38:47 +00:00
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1995-12-19 09:22:19 +00:00
|
|
|
#endif
|
2009-10-12 18:41:14 +00:00
|
|
|
#ifdef PNG_READ_oFFs_SUPPORTED
|
1997-01-17 07:34:35 +00:00
|
|
|
else if (!png_memcmp(png_ptr->chunk_name, png_oFFs, 4))
|
1996-01-26 07:38:47 +00:00
|
|
|
{
|
|
|
|
if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
|
|
|
{
|
|
|
|
png_push_save_buffer(png_ptr);
|
|
|
|
return;
|
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1997-01-17 07:34:35 +00:00
|
|
|
png_handle_oFFs(png_ptr, info_ptr, png_ptr->push_length);
|
1996-01-26 07:38:47 +00:00
|
|
|
}
|
1995-12-19 09:22:19 +00:00
|
|
|
#endif
|
2009-05-20 17:43:52 +00:00
|
|
|
|
2009-10-12 18:41:14 +00:00
|
|
|
#ifdef PNG_READ_pCAL_SUPPORTED
|
1997-05-16 07:46:07 +00:00
|
|
|
else if (!png_memcmp(png_ptr->chunk_name, png_pCAL, 4))
|
|
|
|
{
|
|
|
|
if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
|
|
|
{
|
|
|
|
png_push_save_buffer(png_ptr);
|
|
|
|
return;
|
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1997-05-16 07:46:07 +00:00
|
|
|
png_handle_pCAL(png_ptr, info_ptr, png_ptr->push_length);
|
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1997-05-16 07:46:07 +00:00
|
|
|
#endif
|
2009-10-12 18:41:14 +00:00
|
|
|
#ifdef PNG_READ_sCAL_SUPPORTED
|
1999-12-10 15:43:02 +00:00
|
|
|
else if (!png_memcmp(png_ptr->chunk_name, png_sCAL, 4))
|
|
|
|
{
|
|
|
|
if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
|
|
|
{
|
|
|
|
png_push_save_buffer(png_ptr);
|
|
|
|
return;
|
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1999-12-10 15:43:02 +00:00
|
|
|
png_handle_sCAL(png_ptr, info_ptr, png_ptr->push_length);
|
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1999-12-10 15:43:02 +00:00
|
|
|
#endif
|
2009-10-12 18:41:14 +00:00
|
|
|
#ifdef PNG_READ_tIME_SUPPORTED
|
1997-01-17 07:34:35 +00:00
|
|
|
else if (!png_memcmp(png_ptr->chunk_name, png_tIME, 4))
|
1996-01-26 07:38:47 +00:00
|
|
|
{
|
|
|
|
if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
|
|
|
{
|
|
|
|
png_push_save_buffer(png_ptr);
|
|
|
|
return;
|
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1997-01-17 07:34:35 +00:00
|
|
|
png_handle_tIME(png_ptr, info_ptr, png_ptr->push_length);
|
1996-01-26 07:38:47 +00:00
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1995-12-19 09:22:19 +00:00
|
|
|
#endif
|
2009-10-12 18:41:14 +00:00
|
|
|
#ifdef PNG_READ_tEXt_SUPPORTED
|
1997-01-17 07:34:35 +00:00
|
|
|
else if (!png_memcmp(png_ptr->chunk_name, png_tEXt, 4))
|
1996-01-26 07:38:47 +00:00
|
|
|
{
|
2002-06-20 11:54:34 +00:00
|
|
|
if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
|
|
|
{
|
|
|
|
png_push_save_buffer(png_ptr);
|
|
|
|
return;
|
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
2012-02-22 13:02:38 +00:00
|
|
|
png_handle_tEXt(png_ptr, info_ptr, png_ptr->push_length);
|
1996-01-26 07:38:47 +00:00
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1995-12-19 09:22:19 +00:00
|
|
|
#endif
|
2009-10-12 18:41:14 +00:00
|
|
|
#ifdef PNG_READ_zTXt_SUPPORTED
|
1997-01-17 07:34:35 +00:00
|
|
|
else if (!png_memcmp(png_ptr->chunk_name, png_zTXt, 4))
|
1996-01-26 07:38:47 +00:00
|
|
|
{
|
2002-06-20 11:54:34 +00:00
|
|
|
if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
|
|
|
{
|
|
|
|
png_push_save_buffer(png_ptr);
|
|
|
|
return;
|
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
2012-02-22 13:02:38 +00:00
|
|
|
png_handle_zTXt(png_ptr, info_ptr, png_ptr->push_length);
|
1996-01-26 07:38:47 +00:00
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1999-12-10 15:43:02 +00:00
|
|
|
#endif
|
2009-10-12 18:41:14 +00:00
|
|
|
#ifdef PNG_READ_iTXt_SUPPORTED
|
2000-02-05 05:40:16 +00:00
|
|
|
else if (!png_memcmp(png_ptr->chunk_name, png_iTXt, 4))
|
1999-12-10 15:43:02 +00:00
|
|
|
{
|
2002-06-20 11:54:34 +00:00
|
|
|
if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
|
|
|
{
|
|
|
|
png_push_save_buffer(png_ptr);
|
|
|
|
return;
|
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
2012-02-22 13:02:38 +00:00
|
|
|
png_handle_iTXt(png_ptr, info_ptr, png_ptr->push_length);
|
1999-12-10 15:43:02 +00:00
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1995-12-19 09:22:19 +00:00
|
|
|
#endif
|
1996-01-26 07:38:47 +00:00
|
|
|
else
|
|
|
|
{
|
2002-06-20 11:54:34 +00:00
|
|
|
if (png_ptr->push_length + 4 > png_ptr->buffer_size)
|
|
|
|
{
|
|
|
|
png_push_save_buffer(png_ptr);
|
|
|
|
return;
|
|
|
|
}
|
2012-02-22 13:02:38 +00:00
|
|
|
png_handle_unknown(png_ptr, info_ptr, png_ptr->push_length);
|
1996-01-26 07:38:47 +00:00
|
|
|
}
|
1995-12-19 09:22:19 +00:00
|
|
|
|
1999-11-27 16:22:33 +00:00
|
|
|
png_ptr->mode &= ~PNG_HAVE_CHUNK_HEADER;
|
1995-12-19 09:22:19 +00:00
|
|
|
}
|
|
|
|
|
2000-05-06 19:09:57 +00:00
|
|
|
void /* PRIVATE */
|
1997-05-16 07:46:07 +00:00
|
|
|
png_push_crc_skip(png_structp png_ptr, png_uint_32 skip)
|
1995-12-19 09:22:19 +00:00
|
|
|
{
|
1996-01-26 07:38:47 +00:00
|
|
|
png_ptr->process_mode = PNG_SKIP_MODE;
|
1997-05-16 07:46:07 +00:00
|
|
|
png_ptr->skip_length = skip;
|
1995-12-19 09:22:19 +00:00
|
|
|
}
|
|
|
|
|
2000-05-06 19:09:57 +00:00
|
|
|
void /* PRIVATE */
|
1997-05-16 07:46:07 +00:00
|
|
|
png_push_crc_finish(png_structp png_ptr)
|
1995-12-19 09:22:19 +00:00
|
|
|
{
|
1996-01-26 07:38:47 +00:00
|
|
|
if (png_ptr->skip_length && png_ptr->save_buffer_size)
|
|
|
|
{
|
1997-05-16 07:46:07 +00:00
|
|
|
png_size_t save_size;
|
1996-01-26 07:38:47 +00:00
|
|
|
|
1997-05-16 07:46:07 +00:00
|
|
|
if (png_ptr->skip_length < (png_uint_32)png_ptr->save_buffer_size)
|
|
|
|
save_size = (png_size_t)png_ptr->skip_length;
|
1996-01-26 07:38:47 +00:00
|
|
|
else
|
|
|
|
save_size = png_ptr->save_buffer_size;
|
|
|
|
|
|
|
|
png_calculate_crc(png_ptr, png_ptr->save_buffer_ptr, save_size);
|
|
|
|
|
|
|
|
png_ptr->skip_length -= save_size;
|
|
|
|
png_ptr->buffer_size -= save_size;
|
|
|
|
png_ptr->save_buffer_size -= save_size;
|
1997-05-16 07:46:07 +00:00
|
|
|
png_ptr->save_buffer_ptr += save_size;
|
1996-01-26 07:38:47 +00:00
|
|
|
}
|
|
|
|
if (png_ptr->skip_length && png_ptr->current_buffer_size)
|
|
|
|
{
|
1997-05-16 07:46:07 +00:00
|
|
|
png_size_t save_size;
|
1996-01-26 07:38:47 +00:00
|
|
|
|
1997-05-16 07:46:07 +00:00
|
|
|
if (png_ptr->skip_length < (png_uint_32)png_ptr->current_buffer_size)
|
|
|
|
save_size = (png_size_t)png_ptr->skip_length;
|
1996-01-26 07:38:47 +00:00
|
|
|
else
|
|
|
|
save_size = png_ptr->current_buffer_size;
|
|
|
|
|
|
|
|
png_calculate_crc(png_ptr, png_ptr->current_buffer_ptr, save_size);
|
|
|
|
|
|
|
|
png_ptr->skip_length -= save_size;
|
|
|
|
png_ptr->buffer_size -= save_size;
|
|
|
|
png_ptr->current_buffer_size -= save_size;
|
1997-05-16 07:46:07 +00:00
|
|
|
png_ptr->current_buffer_ptr += save_size;
|
1996-01-26 07:38:47 +00:00
|
|
|
}
|
|
|
|
if (!png_ptr->skip_length)
|
|
|
|
{
|
|
|
|
if (png_ptr->buffer_size < 4)
|
|
|
|
{
|
|
|
|
png_push_save_buffer(png_ptr);
|
|
|
|
return;
|
|
|
|
}
|
1997-01-17 07:34:35 +00:00
|
|
|
|
|
|
|
png_crc_finish(png_ptr, 0);
|
1997-05-16 07:46:07 +00:00
|
|
|
png_ptr->process_mode = PNG_READ_CHUNK_MODE;
|
1996-01-26 07:38:47 +00:00
|
|
|
}
|
1995-12-19 09:22:19 +00:00
|
|
|
}
|
|
|
|
|
2002-05-01 16:51:26 +00:00
|
|
|
void PNGAPI
|
1997-05-16 07:46:07 +00:00
|
|
|
png_push_fill_buffer(png_structp png_ptr, png_bytep buffer, png_size_t length)
|
1995-12-19 09:22:19 +00:00
|
|
|
{
|
1996-01-26 07:38:47 +00:00
|
|
|
png_bytep ptr;
|
|
|
|
|
2009-05-20 17:43:52 +00:00
|
|
|
if (png_ptr == NULL)
|
|
|
|
return;
|
|
|
|
|
1996-01-26 07:38:47 +00:00
|
|
|
ptr = buffer;
|
|
|
|
if (png_ptr->save_buffer_size)
|
|
|
|
{
|
1997-05-16 07:46:07 +00:00
|
|
|
png_size_t save_size;
|
1996-01-26 07:38:47 +00:00
|
|
|
|
|
|
|
if (length < png_ptr->save_buffer_size)
|
|
|
|
save_size = length;
|
|
|
|
else
|
|
|
|
save_size = png_ptr->save_buffer_size;
|
|
|
|
|
1997-05-16 07:46:07 +00:00
|
|
|
png_memcpy(ptr, png_ptr->save_buffer_ptr, save_size);
|
1996-01-26 07:38:47 +00:00
|
|
|
length -= save_size;
|
1997-05-16 07:46:07 +00:00
|
|
|
ptr += save_size;
|
1996-01-26 07:38:47 +00:00
|
|
|
png_ptr->buffer_size -= save_size;
|
|
|
|
png_ptr->save_buffer_size -= save_size;
|
1997-05-16 07:46:07 +00:00
|
|
|
png_ptr->save_buffer_ptr += save_size;
|
1996-01-26 07:38:47 +00:00
|
|
|
}
|
|
|
|
if (length && png_ptr->current_buffer_size)
|
|
|
|
{
|
1997-05-16 07:46:07 +00:00
|
|
|
png_size_t save_size;
|
1996-01-26 07:38:47 +00:00
|
|
|
|
|
|
|
if (length < png_ptr->current_buffer_size)
|
|
|
|
save_size = length;
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1996-01-26 07:38:47 +00:00
|
|
|
else
|
|
|
|
save_size = png_ptr->current_buffer_size;
|
|
|
|
|
1997-05-16 07:46:07 +00:00
|
|
|
png_memcpy(ptr, png_ptr->current_buffer_ptr, save_size);
|
1996-01-26 07:38:47 +00:00
|
|
|
png_ptr->buffer_size -= save_size;
|
|
|
|
png_ptr->current_buffer_size -= save_size;
|
1997-05-16 07:46:07 +00:00
|
|
|
png_ptr->current_buffer_ptr += save_size;
|
1996-01-26 07:38:47 +00:00
|
|
|
}
|
1995-12-19 09:22:19 +00:00
|
|
|
}
|
|
|
|
|
2000-05-06 19:09:57 +00:00
|
|
|
void /* PRIVATE */
|
1995-12-19 09:22:19 +00:00
|
|
|
png_push_save_buffer(png_structp png_ptr)
|
|
|
|
{
|
1996-01-26 07:38:47 +00:00
|
|
|
if (png_ptr->save_buffer_size)
|
|
|
|
{
|
|
|
|
if (png_ptr->save_buffer_ptr != png_ptr->save_buffer)
|
|
|
|
{
|
2008-07-06 11:05:04 +00:00
|
|
|
png_size_t i, istop;
|
1996-01-26 07:38:47 +00:00
|
|
|
png_bytep sp;
|
|
|
|
png_bytep dp;
|
|
|
|
|
1998-04-21 20:03:57 +00:00
|
|
|
istop = png_ptr->save_buffer_size;
|
1996-01-26 07:38:47 +00:00
|
|
|
for (i = 0, sp = png_ptr->save_buffer_ptr, dp = png_ptr->save_buffer;
|
1998-04-21 20:03:57 +00:00
|
|
|
i < istop; i++, sp++, dp++)
|
1996-01-26 07:38:47 +00:00
|
|
|
{
|
|
|
|
*dp = *sp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-02-08 04:33:47 +00:00
|
|
|
if (png_ptr->save_buffer_size + png_ptr->current_buffer_size >
|
|
|
|
png_ptr->save_buffer_max)
|
1996-01-26 07:38:47 +00:00
|
|
|
{
|
1997-05-16 07:46:07 +00:00
|
|
|
png_size_t new_max;
|
1996-01-26 07:38:47 +00:00
|
|
|
png_bytep old_buffer;
|
|
|
|
|
2006-03-04 22:50:47 +00:00
|
|
|
if (png_ptr->save_buffer_size > PNG_SIZE_MAX -
|
2010-02-08 04:33:47 +00:00
|
|
|
(png_ptr->current_buffer_size + 256))
|
|
|
|
{
|
|
|
|
png_error(png_ptr, "Potential overflow of save_buffer");
|
|
|
|
}
|
2010-02-07 14:12:28 +00:00
|
|
|
|
2010-02-08 04:33:47 +00:00
|
|
|
new_max = png_ptr->save_buffer_size + png_ptr->current_buffer_size + 256;
|
1996-01-26 07:38:47 +00:00
|
|
|
old_buffer = png_ptr->save_buffer;
|
2010-02-08 13:30:16 +00:00
|
|
|
png_ptr->save_buffer = (png_bytep)png_malloc_warn(png_ptr,
|
1998-02-07 16:20:57 +00:00
|
|
|
(png_uint_32)new_max);
|
2010-02-08 13:30:16 +00:00
|
|
|
if (png_ptr->save_buffer == NULL)
|
|
|
|
{
|
|
|
|
png_free(png_ptr, old_buffer);
|
|
|
|
png_error(png_ptr, "Insufficient memory for save_buffer");
|
|
|
|
}
|
2015-02-06 19:15:33 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
png_memcpy(png_ptr->save_buffer, old_buffer, png_ptr->save_buffer_size);
|
|
|
|
png_free(png_ptr, old_buffer);
|
|
|
|
png_ptr->save_buffer_max = new_max;
|
|
|
|
}
|
1996-01-26 07:38:47 +00:00
|
|
|
}
|
|
|
|
if (png_ptr->current_buffer_size)
|
|
|
|
{
|
1997-05-16 07:46:07 +00:00
|
|
|
png_memcpy(png_ptr->save_buffer + png_ptr->save_buffer_size,
|
|
|
|
png_ptr->current_buffer_ptr, png_ptr->current_buffer_size);
|
1996-01-26 07:38:47 +00:00
|
|
|
png_ptr->save_buffer_size += png_ptr->current_buffer_size;
|
|
|
|
png_ptr->current_buffer_size = 0;
|
|
|
|
}
|
|
|
|
png_ptr->save_buffer_ptr = png_ptr->save_buffer;
|
|
|
|
png_ptr->buffer_size = 0;
|
1995-12-19 09:22:19 +00:00
|
|
|
}
|
|
|
|
|
2000-05-06 19:09:57 +00:00
|
|
|
void /* PRIVATE */
|
1995-12-19 09:22:19 +00:00
|
|
|
png_push_restore_buffer(png_structp png_ptr, png_bytep buffer,
|
1997-05-16 07:46:07 +00:00
|
|
|
png_size_t buffer_length)
|
1995-12-19 09:22:19 +00:00
|
|
|
{
|
1996-01-26 07:38:47 +00:00
|
|
|
png_ptr->current_buffer = buffer;
|
|
|
|
png_ptr->current_buffer_size = buffer_length;
|
|
|
|
png_ptr->buffer_size = buffer_length + png_ptr->save_buffer_size;
|
|
|
|
png_ptr->current_buffer_ptr = png_ptr->current_buffer;
|
1995-12-19 09:22:19 +00:00
|
|
|
}
|
|
|
|
|
2000-05-06 19:09:57 +00:00
|
|
|
void /* PRIVATE */
|
1996-06-05 20:50:50 +00:00
|
|
|
png_push_read_IDAT(png_structp png_ptr)
|
1995-12-19 09:22:19 +00:00
|
|
|
{
|
1999-11-29 05:32:18 +00:00
|
|
|
#ifdef PNG_USE_LOCAL_ARRAYS
|
2007-05-21 18:27:47 +00:00
|
|
|
PNG_CONST PNG_IDAT;
|
1999-11-29 05:32:18 +00:00
|
|
|
#endif
|
1999-11-27 16:22:33 +00:00
|
|
|
if (!(png_ptr->mode & PNG_HAVE_CHUNK_HEADER))
|
1996-01-26 07:38:47 +00:00
|
|
|
{
|
1997-01-17 07:34:35 +00:00
|
|
|
png_byte chunk_length[4];
|
1996-01-26 07:38:47 +00:00
|
|
|
|
|
|
|
if (png_ptr->buffer_size < 8)
|
|
|
|
{
|
|
|
|
png_push_save_buffer(png_ptr);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
1997-01-17 07:34:35 +00:00
|
|
|
png_push_fill_buffer(png_ptr, chunk_length, 4);
|
2008-07-06 11:05:04 +00:00
|
|
|
png_ptr->push_length = png_get_uint_31(png_ptr, chunk_length);
|
1996-01-26 07:38:47 +00:00
|
|
|
png_reset_crc(png_ptr);
|
1997-05-16 07:46:07 +00:00
|
|
|
png_crc_read(png_ptr, png_ptr->chunk_name, 4);
|
1999-11-27 16:22:33 +00:00
|
|
|
png_ptr->mode |= PNG_HAVE_CHUNK_HEADER;
|
1997-01-17 07:34:35 +00:00
|
|
|
|
2007-09-18 17:44:25 +00:00
|
|
|
if (png_memcmp(png_ptr->chunk_name, png_IDAT, 4))
|
1996-01-26 07:38:47 +00:00
|
|
|
{
|
1997-05-16 07:46:07 +00:00
|
|
|
png_ptr->process_mode = PNG_READ_CHUNK_MODE;
|
1996-06-05 20:50:50 +00:00
|
|
|
if (!(png_ptr->flags & PNG_FLAG_ZLIB_FINISHED))
|
1996-01-26 07:38:47 +00:00
|
|
|
png_error(png_ptr, "Not enough compressed data");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
png_ptr->idat_size = png_ptr->push_length;
|
|
|
|
}
|
|
|
|
if (png_ptr->idat_size && png_ptr->save_buffer_size)
|
|
|
|
{
|
1997-05-16 07:46:07 +00:00
|
|
|
png_size_t save_size;
|
1996-01-26 07:38:47 +00:00
|
|
|
|
1997-05-16 07:46:07 +00:00
|
|
|
if (png_ptr->idat_size < (png_uint_32)png_ptr->save_buffer_size)
|
1998-02-07 16:20:57 +00:00
|
|
|
{
|
|
|
|
save_size = (png_size_t)png_ptr->idat_size;
|
2009-05-20 17:43:52 +00:00
|
|
|
|
|
|
|
/* Check for overflow */
|
2008-07-10 14:10:58 +00:00
|
|
|
if ((png_uint_32)save_size != png_ptr->idat_size)
|
1998-02-07 16:20:57 +00:00
|
|
|
png_error(png_ptr, "save_size overflowed in pngpread");
|
|
|
|
}
|
1996-01-26 07:38:47 +00:00
|
|
|
else
|
|
|
|
save_size = png_ptr->save_buffer_size;
|
|
|
|
|
|
|
|
png_calculate_crc(png_ptr, png_ptr->save_buffer_ptr, save_size);
|
2009-05-20 17:43:52 +00:00
|
|
|
|
2010-06-20 00:11:54 +00:00
|
|
|
png_process_IDAT_data(png_ptr, png_ptr->save_buffer_ptr, save_size);
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1996-01-26 07:38:47 +00:00
|
|
|
png_ptr->idat_size -= save_size;
|
|
|
|
png_ptr->buffer_size -= save_size;
|
|
|
|
png_ptr->save_buffer_size -= save_size;
|
1997-05-16 07:46:07 +00:00
|
|
|
png_ptr->save_buffer_ptr += save_size;
|
1996-01-26 07:38:47 +00:00
|
|
|
}
|
|
|
|
if (png_ptr->idat_size && png_ptr->current_buffer_size)
|
|
|
|
{
|
1997-05-16 07:46:07 +00:00
|
|
|
png_size_t save_size;
|
1996-01-26 07:38:47 +00:00
|
|
|
|
1997-05-16 07:46:07 +00:00
|
|
|
if (png_ptr->idat_size < (png_uint_32)png_ptr->current_buffer_size)
|
1998-02-07 16:20:57 +00:00
|
|
|
{
|
|
|
|
save_size = (png_size_t)png_ptr->idat_size;
|
2009-05-20 17:43:52 +00:00
|
|
|
|
|
|
|
/* Check for overflow */
|
2008-07-10 14:10:58 +00:00
|
|
|
if ((png_uint_32)save_size != png_ptr->idat_size)
|
1998-02-07 16:20:57 +00:00
|
|
|
png_error(png_ptr, "save_size overflowed in pngpread");
|
|
|
|
}
|
1996-01-26 07:38:47 +00:00
|
|
|
else
|
|
|
|
save_size = png_ptr->current_buffer_size;
|
|
|
|
|
|
|
|
png_calculate_crc(png_ptr, png_ptr->current_buffer_ptr, save_size);
|
2010-06-20 00:11:54 +00:00
|
|
|
|
|
|
|
png_process_IDAT_data(png_ptr, png_ptr->current_buffer_ptr, save_size);
|
1996-01-26 07:38:47 +00:00
|
|
|
|
|
|
|
png_ptr->idat_size -= save_size;
|
|
|
|
png_ptr->buffer_size -= save_size;
|
|
|
|
png_ptr->current_buffer_size -= save_size;
|
1997-05-16 07:46:07 +00:00
|
|
|
png_ptr->current_buffer_ptr += save_size;
|
1996-01-26 07:38:47 +00:00
|
|
|
}
|
|
|
|
if (!png_ptr->idat_size)
|
|
|
|
{
|
|
|
|
if (png_ptr->buffer_size < 4)
|
|
|
|
{
|
|
|
|
png_push_save_buffer(png_ptr);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
1997-01-17 07:34:35 +00:00
|
|
|
png_crc_finish(png_ptr, 0);
|
1999-11-27 16:22:33 +00:00
|
|
|
png_ptr->mode &= ~PNG_HAVE_CHUNK_HEADER;
|
2002-08-06 23:06:11 +00:00
|
|
|
png_ptr->mode |= PNG_AFTER_IDAT;
|
1996-01-26 07:38:47 +00:00
|
|
|
}
|
1995-12-19 09:22:19 +00:00
|
|
|
}
|
|
|
|
|
2000-05-06 19:09:57 +00:00
|
|
|
void /* PRIVATE */
|
1995-12-19 09:22:19 +00:00
|
|
|
png_process_IDAT_data(png_structp png_ptr, png_bytep buffer,
|
1997-05-16 07:46:07 +00:00
|
|
|
png_size_t buffer_length)
|
1995-12-19 09:22:19 +00:00
|
|
|
{
|
2010-06-20 00:11:54 +00:00
|
|
|
/* The caller checks for a non-zero buffer length. */
|
2010-06-23 14:22:12 +00:00
|
|
|
if (!(buffer_length > 0) || buffer == NULL)
|
2010-06-20 00:11:54 +00:00
|
|
|
png_error(png_ptr, "No IDAT data (internal error)");
|
1996-01-26 07:38:47 +00:00
|
|
|
|
2010-06-20 00:11:54 +00:00
|
|
|
/* This routine must process all the data it has been given
|
|
|
|
* before returning, calling the row callback as required to
|
2010-06-21 12:58:48 +00:00
|
|
|
* handle the uncompressed results.
|
2010-06-20 00:11:54 +00:00
|
|
|
*/
|
1997-01-17 07:34:35 +00:00
|
|
|
png_ptr->zstream.next_in = buffer;
|
|
|
|
png_ptr->zstream.avail_in = (uInt)buffer_length;
|
2009-05-20 17:43:52 +00:00
|
|
|
|
2010-06-20 00:11:54 +00:00
|
|
|
/* Keep going until the decompressed data is all processed
|
|
|
|
* or the stream marked as finished.
|
|
|
|
*/
|
|
|
|
while (png_ptr->zstream.avail_in > 0 &&
|
|
|
|
!(png_ptr->flags & PNG_FLAG_ZLIB_FINISHED))
|
|
|
|
{
|
|
|
|
int ret;
|
2009-05-20 17:43:52 +00:00
|
|
|
|
2010-06-20 00:11:54 +00:00
|
|
|
/* We have data for zlib, but we must check that zlib
|
|
|
|
* has somewhere to put the results. It doesn't matter
|
2010-06-21 12:58:48 +00:00
|
|
|
* if we don't expect any results -- it may be the input
|
2010-06-20 00:11:54 +00:00
|
|
|
* data is just the LZ end code.
|
|
|
|
*/
|
|
|
|
if (!(png_ptr->zstream.avail_out > 0))
|
1996-01-26 07:38:47 +00:00
|
|
|
{
|
2010-02-07 14:12:28 +00:00
|
|
|
png_ptr->zstream.avail_out =
|
|
|
|
(uInt) PNG_ROWBYTES(png_ptr->pixel_depth,
|
|
|
|
png_ptr->iwidth) + 1;
|
1997-01-17 07:34:35 +00:00
|
|
|
png_ptr->zstream.next_out = png_ptr->row_buf;
|
1996-01-26 07:38:47 +00:00
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
2010-06-20 00:11:54 +00:00
|
|
|
/* Using Z_SYNC_FLUSH here means that an unterminated
|
|
|
|
* LZ stream can still be handled (a stream with a missing
|
|
|
|
* end code), otherwise (Z_NO_FLUSH) a future zlib
|
|
|
|
* implementation might defer output and, therefore,
|
|
|
|
* change the current behavior. (See comments in inflate.c
|
|
|
|
* for why this doesn't happen at present with zlib 1.2.5.)
|
|
|
|
*/
|
|
|
|
ret = inflate(&png_ptr->zstream, Z_SYNC_FLUSH);
|
|
|
|
|
|
|
|
/* Check for any failure before proceeding. */
|
|
|
|
if (ret != Z_OK && ret != Z_STREAM_END)
|
|
|
|
{
|
|
|
|
/* Terminate the decompression. */
|
|
|
|
png_ptr->flags |= PNG_FLAG_ZLIB_FINISHED;
|
|
|
|
|
|
|
|
/* This may be a truncated stream (missing or
|
|
|
|
* damaged end code). Treat that as a warning.
|
|
|
|
*/
|
|
|
|
if (png_ptr->row_number >= png_ptr->num_rows ||
|
|
|
|
png_ptr->pass > 6)
|
2010-06-21 12:58:48 +00:00
|
|
|
png_warning(png_ptr, "Truncated compressed data in IDAT");
|
2010-06-20 00:11:54 +00:00
|
|
|
else
|
2010-06-21 12:58:48 +00:00
|
|
|
png_error(png_ptr, "Decompression error in IDAT");
|
2010-06-20 00:11:54 +00:00
|
|
|
|
|
|
|
/* Skip the check on unprocessed input */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Did inflate output any data? */
|
|
|
|
if (png_ptr->zstream.next_out != png_ptr->row_buf)
|
|
|
|
{
|
|
|
|
/* Is this unexpected data after the last row?
|
|
|
|
* If it is, artificially terminate the LZ output
|
|
|
|
* here.
|
|
|
|
*/
|
|
|
|
if (png_ptr->row_number >= png_ptr->num_rows ||
|
|
|
|
png_ptr->pass > 6)
|
|
|
|
{
|
|
|
|
/* Extra data. */
|
2010-06-21 12:58:48 +00:00
|
|
|
png_warning(png_ptr, "Extra compressed data in IDAT");
|
2010-06-20 00:11:54 +00:00
|
|
|
png_ptr->flags |= PNG_FLAG_ZLIB_FINISHED;
|
2010-06-21 12:58:48 +00:00
|
|
|
/* Do no more processing; skip the unprocessed
|
2010-06-20 00:11:54 +00:00
|
|
|
* input check below.
|
|
|
|
*/
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Do we have a complete row? */
|
|
|
|
if (png_ptr->zstream.avail_out == 0)
|
|
|
|
png_push_process_row(png_ptr);
|
|
|
|
}
|
2010-06-24 21:22:25 +00:00
|
|
|
|
|
|
|
/* And check for the end of the stream. */
|
|
|
|
if (ret == Z_STREAM_END)
|
|
|
|
png_ptr->flags |= PNG_FLAG_ZLIB_FINISHED;
|
1997-05-16 07:46:07 +00:00
|
|
|
}
|
2010-06-20 00:11:54 +00:00
|
|
|
|
|
|
|
/* All the data should have been processed, if anything
|
|
|
|
* is left at this point we have bytes of IDAT data
|
|
|
|
* after the zlib end code.
|
|
|
|
*/
|
|
|
|
if (png_ptr->zstream.avail_in > 0)
|
|
|
|
png_warning(png_ptr, "Extra compression data");
|
1995-12-19 09:22:19 +00:00
|
|
|
}
|
|
|
|
|
2000-05-06 19:09:57 +00:00
|
|
|
void /* PRIVATE */
|
1995-12-19 09:22:19 +00:00
|
|
|
png_push_process_row(png_structp png_ptr)
|
|
|
|
{
|
1996-01-26 07:38:47 +00:00
|
|
|
png_ptr->row_info.color_type = png_ptr->color_type;
|
1995-12-19 09:22:19 +00:00
|
|
|
png_ptr->row_info.width = png_ptr->iwidth;
|
|
|
|
png_ptr->row_info.channels = png_ptr->channels;
|
|
|
|
png_ptr->row_info.bit_depth = png_ptr->bit_depth;
|
|
|
|
png_ptr->row_info.pixel_depth = png_ptr->pixel_depth;
|
1998-12-29 17:47:59 +00:00
|
|
|
|
2004-08-04 11:34:52 +00:00
|
|
|
png_ptr->row_info.rowbytes = PNG_ROWBYTES(png_ptr->row_info.pixel_depth,
|
|
|
|
png_ptr->row_info.width);
|
1995-12-19 09:22:19 +00:00
|
|
|
|
1996-06-05 20:50:50 +00:00
|
|
|
png_read_filter_row(png_ptr, &(png_ptr->row_info),
|
2010-06-20 00:11:54 +00:00
|
|
|
png_ptr->row_buf + 1, png_ptr->prev_row + 1,
|
|
|
|
(int)(png_ptr->row_buf[0]));
|
1995-12-19 09:22:19 +00:00
|
|
|
|
1998-02-09 02:56:40 +00:00
|
|
|
png_memcpy_check(png_ptr, png_ptr->prev_row, png_ptr->row_buf,
|
1998-02-07 16:20:57 +00:00
|
|
|
png_ptr->rowbytes + 1);
|
1995-12-19 09:22:19 +00:00
|
|
|
|
2004-11-26 23:28:09 +00:00
|
|
|
if (png_ptr->transformations || (png_ptr->flags&PNG_FLAG_STRIP_ALPHA))
|
1995-12-19 09:22:19 +00:00
|
|
|
png_do_read_transformations(png_ptr);
|
|
|
|
|
2009-10-12 18:41:14 +00:00
|
|
|
#ifdef PNG_READ_INTERLACING_SUPPORTED
|
2009-05-20 17:43:52 +00:00
|
|
|
/* Blow up interlaced rows to full size */
|
1997-05-16 07:46:07 +00:00
|
|
|
if (png_ptr->interlaced && (png_ptr->transformations & PNG_INTERLACE))
|
1996-01-26 07:38:47 +00:00
|
|
|
{
|
|
|
|
if (png_ptr->pass < 6)
|
2001-01-12 21:13:06 +00:00
|
|
|
/* old interface (pre-1.0.9):
|
1996-01-26 07:38:47 +00:00
|
|
|
png_do_read_interlace(&(png_ptr->row_info),
|
2010-06-20 00:11:54 +00:00
|
|
|
png_ptr->row_buf + 1, png_ptr->pass, png_ptr->transformations);
|
2001-01-12 21:13:06 +00:00
|
|
|
*/
|
|
|
|
png_do_read_interlace(png_ptr);
|
1996-01-26 07:38:47 +00:00
|
|
|
|
2001-01-15 18:22:32 +00:00
|
|
|
switch (png_ptr->pass)
|
|
|
|
{
|
1996-01-26 07:38:47 +00:00
|
|
|
case 0:
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < 8 && png_ptr->pass == 0; i++)
|
|
|
|
{
|
|
|
|
png_push_have_row(png_ptr, png_ptr->row_buf + 1);
|
2009-05-20 17:43:52 +00:00
|
|
|
png_read_push_finish_row(png_ptr); /* Updates png_ptr->pass */
|
1996-01-26 07:38:47 +00:00
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
|
|
|
if (png_ptr->pass == 2) /* Pass 1 might be empty */
|
2001-01-15 18:22:32 +00:00
|
|
|
{
|
|
|
|
for (i = 0; i < 4 && png_ptr->pass == 2; i++)
|
|
|
|
{
|
2001-10-27 12:35:13 +00:00
|
|
|
png_push_have_row(png_ptr, png_bytep_NULL);
|
2001-01-15 18:22:32 +00:00
|
|
|
png_read_push_finish_row(png_ptr);
|
|
|
|
}
|
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
2002-06-20 11:54:34 +00:00
|
|
|
if (png_ptr->pass == 4 && png_ptr->height <= 4)
|
|
|
|
{
|
|
|
|
for (i = 0; i < 2 && png_ptr->pass == 4; i++)
|
|
|
|
{
|
|
|
|
png_push_have_row(png_ptr, png_bytep_NULL);
|
|
|
|
png_read_push_finish_row(png_ptr);
|
|
|
|
}
|
2001-05-07 19:52:45 +00:00
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
2001-05-07 19:52:45 +00:00
|
|
|
if (png_ptr->pass == 6 && png_ptr->height <= 4)
|
|
|
|
{
|
2010-06-20 00:11:54 +00:00
|
|
|
png_push_have_row(png_ptr, png_bytep_NULL);
|
2001-05-07 19:52:45 +00:00
|
|
|
png_read_push_finish_row(png_ptr);
|
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1996-01-26 07:38:47 +00:00
|
|
|
break;
|
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1996-01-26 07:38:47 +00:00
|
|
|
case 1:
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < 8 && png_ptr->pass == 1; i++)
|
|
|
|
{
|
|
|
|
png_push_have_row(png_ptr, png_ptr->row_buf + 1);
|
|
|
|
png_read_push_finish_row(png_ptr);
|
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
|
|
|
if (png_ptr->pass == 2) /* Skip top 4 generated rows */
|
1996-01-26 07:38:47 +00:00
|
|
|
{
|
|
|
|
for (i = 0; i < 4 && png_ptr->pass == 2; i++)
|
|
|
|
{
|
2001-10-27 12:35:13 +00:00
|
|
|
png_push_have_row(png_ptr, png_bytep_NULL);
|
1996-01-26 07:38:47 +00:00
|
|
|
png_read_push_finish_row(png_ptr);
|
|
|
|
}
|
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1996-01-26 07:38:47 +00:00
|
|
|
break;
|
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1996-01-26 07:38:47 +00:00
|
|
|
case 2:
|
|
|
|
{
|
|
|
|
int i;
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1996-01-26 07:38:47 +00:00
|
|
|
for (i = 0; i < 4 && png_ptr->pass == 2; i++)
|
|
|
|
{
|
|
|
|
png_push_have_row(png_ptr, png_ptr->row_buf + 1);
|
|
|
|
png_read_push_finish_row(png_ptr);
|
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1996-01-26 07:38:47 +00:00
|
|
|
for (i = 0; i < 4 && png_ptr->pass == 2; i++)
|
|
|
|
{
|
2010-06-20 00:11:54 +00:00
|
|
|
png_push_have_row(png_ptr, png_bytep_NULL);
|
1996-01-26 07:38:47 +00:00
|
|
|
png_read_push_finish_row(png_ptr);
|
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
|
|
|
if (png_ptr->pass == 4) /* Pass 3 might be empty */
|
2001-01-15 18:22:32 +00:00
|
|
|
{
|
|
|
|
for (i = 0; i < 2 && png_ptr->pass == 4; i++)
|
|
|
|
{
|
2001-10-27 12:35:13 +00:00
|
|
|
png_push_have_row(png_ptr, png_bytep_NULL);
|
2001-01-15 18:22:32 +00:00
|
|
|
png_read_push_finish_row(png_ptr);
|
|
|
|
}
|
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1996-01-26 07:38:47 +00:00
|
|
|
break;
|
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1996-01-26 07:38:47 +00:00
|
|
|
case 3:
|
|
|
|
{
|
|
|
|
int i;
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1996-01-26 07:38:47 +00:00
|
|
|
for (i = 0; i < 4 && png_ptr->pass == 3; i++)
|
|
|
|
{
|
|
|
|
png_push_have_row(png_ptr, png_ptr->row_buf + 1);
|
|
|
|
png_read_push_finish_row(png_ptr);
|
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
|
|
|
if (png_ptr->pass == 4) /* Skip top two generated rows */
|
1996-01-26 07:38:47 +00:00
|
|
|
{
|
|
|
|
for (i = 0; i < 2 && png_ptr->pass == 4; i++)
|
|
|
|
{
|
2001-10-27 12:35:13 +00:00
|
|
|
png_push_have_row(png_ptr, png_bytep_NULL);
|
1996-01-26 07:38:47 +00:00
|
|
|
png_read_push_finish_row(png_ptr);
|
|
|
|
}
|
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1996-01-26 07:38:47 +00:00
|
|
|
break;
|
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1996-01-26 07:38:47 +00:00
|
|
|
case 4:
|
|
|
|
{
|
|
|
|
int i;
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1996-01-26 07:38:47 +00:00
|
|
|
for (i = 0; i < 2 && png_ptr->pass == 4; i++)
|
|
|
|
{
|
|
|
|
png_push_have_row(png_ptr, png_ptr->row_buf + 1);
|
|
|
|
png_read_push_finish_row(png_ptr);
|
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1996-01-26 07:38:47 +00:00
|
|
|
for (i = 0; i < 2 && png_ptr->pass == 4; i++)
|
|
|
|
{
|
2010-06-20 00:11:54 +00:00
|
|
|
png_push_have_row(png_ptr, png_bytep_NULL);
|
1996-01-26 07:38:47 +00:00
|
|
|
png_read_push_finish_row(png_ptr);
|
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
|
|
|
if (png_ptr->pass == 6) /* Pass 5 might be empty */
|
2001-01-15 18:22:32 +00:00
|
|
|
{
|
2010-06-20 00:11:54 +00:00
|
|
|
png_push_have_row(png_ptr, png_bytep_NULL);
|
2001-01-15 18:22:32 +00:00
|
|
|
png_read_push_finish_row(png_ptr);
|
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1996-01-26 07:38:47 +00:00
|
|
|
break;
|
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1996-01-26 07:38:47 +00:00
|
|
|
case 5:
|
|
|
|
{
|
|
|
|
int i;
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1996-01-26 07:38:47 +00:00
|
|
|
for (i = 0; i < 2 && png_ptr->pass == 5; i++)
|
|
|
|
{
|
|
|
|
png_push_have_row(png_ptr, png_ptr->row_buf + 1);
|
|
|
|
png_read_push_finish_row(png_ptr);
|
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
|
|
|
if (png_ptr->pass == 6) /* Skip top generated row */
|
1996-01-26 07:38:47 +00:00
|
|
|
{
|
2010-06-20 00:11:54 +00:00
|
|
|
png_push_have_row(png_ptr, png_bytep_NULL);
|
1996-01-26 07:38:47 +00:00
|
|
|
png_read_push_finish_row(png_ptr);
|
|
|
|
}
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1996-01-26 07:38:47 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 6:
|
|
|
|
{
|
|
|
|
png_push_have_row(png_ptr, png_ptr->row_buf + 1);
|
|
|
|
png_read_push_finish_row(png_ptr);
|
2009-05-20 17:43:52 +00:00
|
|
|
|
1996-01-26 07:38:47 +00:00
|
|
|
if (png_ptr->pass != 6)
|
|
|
|
break;
|
2009-05-20 17:43:52 +00:00
|
|
|
|
2010-06-20 00:11:54 +00:00
|
|
|
png_push_have_row(png_ptr, png_bytep_NULL);
|
1996-01-26 07:38:47 +00:00
|
|
|
png_read_push_finish_row(png_ptr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
1995-12-19 09:22:19 +00:00
|
|
|
#endif
|
1996-01-26 07:38:47 +00:00
|
|
|
{
|
|
|
|
png_push_have_row(png_ptr, png_ptr->row_buf + 1);
|
|
|
|
png_read_push_finish_row(png_ptr);
|
|
|
|
}
|
1995-12-19 09:22:19 +00:00
|
|
|
}
|
|
|
|
|
2000-05-06 19:09:57 +00:00
|
|
|
void /* PRIVATE */
|
1995-12-19 09:22:19 +00:00
|
|
|
png_read_push_finish_row(png_structp png_ptr)
|
|
|
|
{
|
1999-11-29 05:32:18 +00:00
|
|
|
#ifdef PNG_USE_LOCAL_ARRAYS
|
2009-05-20 17:43:52 +00:00
|
|
|
/* Arrays to facilitate easy interlacing - use pass (0 - 6) as index */
|
1999-12-10 15:43:02 +00:00
|
|
|
|
2009-05-20 17:43:52 +00:00
|
|
|
/* Start of interlace block */
|
2007-05-18 18:40:59 +00:00
|
|
|
PNG_CONST int FARDATA png_pass_start[] = {0, 4, 0, 2, 0, 1, 0};
|
1999-12-10 15:43:02 +00:00
|
|
|
|
2009-05-20 17:43:52 +00:00
|
|
|
/* Offset to next interlace block */
|
2007-05-18 18:40:59 +00:00
|
|
|
PNG_CONST int FARDATA png_pass_inc[] = {8, 8, 4, 4, 2, 2, 1};
|
1999-12-10 15:43:02 +00:00
|
|
|
|
2009-05-20 17:43:52 +00:00
|
|
|
/* Start of interlace block in the y direction */
|
2007-05-18 18:40:59 +00:00
|
|
|
PNG_CONST int FARDATA png_pass_ystart[] = {0, 0, 4, 0, 2, 0, 1};
|
1999-12-10 15:43:02 +00:00
|
|
|
|
2009-05-20 17:43:52 +00:00
|
|
|
/* Offset to next interlace block in the y direction */
|
2007-05-18 18:40:59 +00:00
|
|
|
PNG_CONST int FARDATA png_pass_yinc[] = {8, 8, 8, 4, 4, 2, 2};
|
1999-12-10 15:43:02 +00:00
|
|
|
|
1999-11-27 16:22:33 +00:00
|
|
|
/* Height of interlace block. This is not currently used - if you need
|
|
|
|
* it, uncomment it here and in png.h
|
2007-05-18 18:40:59 +00:00
|
|
|
PNG_CONST int FARDATA png_pass_height[] = {8, 8, 4, 4, 2, 2, 1};
|
1999-11-27 16:22:33 +00:00
|
|
|
*/
|
1999-11-29 05:32:18 +00:00
|
|
|
#endif
|
1999-12-10 15:43:02 +00:00
|
|
|
|
1995-12-19 09:22:19 +00:00
|
|
|
png_ptr->row_number++;
|
|
|
|
if (png_ptr->row_number < png_ptr->num_rows)
|
1996-01-26 07:38:47 +00:00
|
|
|
return;
|
1995-12-19 09:22:19 +00:00
|
|
|
|
2009-10-12 18:41:14 +00:00
|
|
|
#ifdef PNG_READ_INTERLACING_SUPPORTED
|
1995-12-19 09:22:19 +00:00
|
|
|
if (png_ptr->interlaced)
|
|
|
|
{
|
|
|
|
png_ptr->row_number = 0;
|
2009-05-18 15:18:00 +00:00
|
|
|
png_memset_check(png_ptr, png_ptr->prev_row, 0,
|
|
|
|
png_ptr->rowbytes + 1);
|
1995-12-19 09:22:19 +00:00
|
|
|
do
|
|
|
|
{
|
2008-07-06 11:05:04 +00:00
|
|
|
png_ptr->pass++;
|
|
|
|
if ((png_ptr->pass == 1 && png_ptr->width < 5) ||
|
|
|
|
(png_ptr->pass == 3 && png_ptr->width < 3) ||
|
|
|
|
(png_ptr->pass == 5 && png_ptr->width < 2))
|
|
|
|
png_ptr->pass++;
|
|
|
|
|
|
|
|
if (png_ptr->pass > 7)
|
|
|
|
png_ptr->pass--;
|
2009-05-20 17:43:52 +00:00
|
|
|
|
2008-07-06 11:05:04 +00:00
|
|
|
if (png_ptr->pass >= 7)
|
|
|
|
break;
|
|
|
|
|
|
|
|
png_ptr->iwidth = (png_ptr->width +
|
|
|
|
png_pass_inc[png_ptr->pass] - 1 -
|
|
|
|
png_pass_start[png_ptr->pass]) /
|
|
|
|
png_pass_inc[png_ptr->pass];
|
|
|
|
|
|
|
|
if (png_ptr->transformations & PNG_INTERLACE)
|
|
|
|
break;
|
|
|
|
|
|
|
|
png_ptr->num_rows = (png_ptr->height +
|
|
|
|
png_pass_yinc[png_ptr->pass] - 1 -
|
|
|
|
png_pass_ystart[png_ptr->pass]) /
|
|
|
|
png_pass_yinc[png_ptr->pass];
|
1998-12-29 17:47:59 +00:00
|
|
|
|
|
|
|
} while (png_ptr->iwidth == 0 || png_ptr->num_rows == 0);
|
1995-12-19 09:22:19 +00:00
|
|
|
}
|
2009-05-18 16:55:55 +00:00
|
|
|
#endif /* PNG_READ_INTERLACING_SUPPORTED */
|
1995-12-19 09:22:19 +00:00
|
|
|
}
|
|
|
|
|
2000-05-06 19:09:57 +00:00
|
|
|
void /* PRIVATE */
|
1997-01-17 07:34:35 +00:00
|
|
|
png_push_have_info(png_structp png_ptr, png_infop info_ptr)
|
1995-12-19 09:22:19 +00:00
|
|
|
{
|
1997-05-16 07:46:07 +00:00
|
|
|
if (png_ptr->info_fn != NULL)
|
1997-01-17 07:34:35 +00:00
|
|
|
(*(png_ptr->info_fn))(png_ptr, info_ptr);
|
1995-12-19 09:22:19 +00:00
|
|
|
}
|
|
|
|
|
2000-05-06 19:09:57 +00:00
|
|
|
void /* PRIVATE */
|
1997-01-17 07:34:35 +00:00
|
|
|
png_push_have_end(png_structp png_ptr, png_infop info_ptr)
|
1995-12-19 09:22:19 +00:00
|
|
|
{
|
1997-05-16 07:46:07 +00:00
|
|
|
if (png_ptr->end_fn != NULL)
|
1997-01-17 07:34:35 +00:00
|
|
|
(*(png_ptr->end_fn))(png_ptr, info_ptr);
|
1995-12-19 09:22:19 +00:00
|
|
|
}
|
|
|
|
|
2000-05-06 19:09:57 +00:00
|
|
|
void /* PRIVATE */
|
1995-12-19 09:22:19 +00:00
|
|
|
png_push_have_row(png_structp png_ptr, png_bytep row)
|
|
|
|
{
|
2010-06-19 02:47:36 +00:00
|
|
|
if (png_ptr->row_fn != NULL)
|
1996-01-26 07:38:47 +00:00
|
|
|
(*(png_ptr->row_fn))(png_ptr, row, png_ptr->row_number,
|
|
|
|
(int)png_ptr->pass);
|
1995-12-19 09:22:19 +00:00
|
|
|
}
|
|
|
|
|
2000-05-06 19:09:57 +00:00
|
|
|
void PNGAPI
|
1997-01-17 07:34:35 +00:00
|
|
|
png_progressive_combine_row (png_structp png_ptr,
|
|
|
|
png_bytep old_row, png_bytep new_row)
|
1995-12-19 09:22:19 +00:00
|
|
|
{
|
1999-11-29 05:32:18 +00:00
|
|
|
#ifdef PNG_USE_LOCAL_ARRAYS
|
2007-05-18 18:40:59 +00:00
|
|
|
PNG_CONST int FARDATA png_pass_dsp_mask[7] =
|
2000-11-10 18:26:19 +00:00
|
|
|
{0xff, 0x0f, 0xff, 0x33, 0xff, 0x55, 0xff};
|
1999-11-29 05:32:18 +00:00
|
|
|
#endif
|
2009-10-12 18:41:14 +00:00
|
|
|
|
2009-05-20 17:43:52 +00:00
|
|
|
if (png_ptr == NULL)
|
|
|
|
return;
|
|
|
|
|
1998-06-14 19:43:31 +00:00
|
|
|
if (new_row != NULL) /* new_row must == png_ptr->row_buf here. */
|
1997-01-17 07:34:35 +00:00
|
|
|
png_combine_row(png_ptr, old_row, png_pass_dsp_mask[png_ptr->pass]);
|
1995-12-19 09:22:19 +00:00
|
|
|
}
|
|
|
|
|
2000-05-06 19:09:57 +00:00
|
|
|
void PNGAPI
|
1995-12-19 09:22:19 +00:00
|
|
|
png_set_progressive_read_fn(png_structp png_ptr, png_voidp progressive_ptr,
|
1996-01-26 07:38:47 +00:00
|
|
|
png_progressive_info_ptr info_fn, png_progressive_row_ptr row_fn,
|
|
|
|
png_progressive_end_ptr end_fn)
|
1995-12-19 09:22:19 +00:00
|
|
|
{
|
2009-05-20 17:43:52 +00:00
|
|
|
if (png_ptr == NULL)
|
|
|
|
return;
|
|
|
|
|
1996-01-26 07:38:47 +00:00
|
|
|
png_ptr->info_fn = info_fn;
|
|
|
|
png_ptr->row_fn = row_fn;
|
1995-12-19 09:22:19 +00:00
|
|
|
png_ptr->end_fn = end_fn;
|
1996-06-05 20:50:50 +00:00
|
|
|
|
2002-05-01 16:51:26 +00:00
|
|
|
png_set_read_fn(png_ptr, progressive_ptr, png_push_fill_buffer);
|
1995-12-19 09:22:19 +00:00
|
|
|
}
|
|
|
|
|
2000-05-06 19:09:57 +00:00
|
|
|
png_voidp PNGAPI
|
1997-01-17 07:34:35 +00:00
|
|
|
png_get_progressive_ptr(png_structp png_ptr)
|
1995-12-19 09:22:19 +00:00
|
|
|
{
|
2009-05-20 17:43:52 +00:00
|
|
|
if (png_ptr == NULL)
|
|
|
|
return (NULL);
|
|
|
|
|
1997-01-17 07:34:35 +00:00
|
|
|
return png_ptr->io_ptr;
|
1995-12-19 09:22:19 +00:00
|
|
|
}
|
1996-01-16 07:51:56 +00:00
|
|
|
#endif /* PNG_PROGRESSIVE_READ_SUPPORTED */
|