pngrutil.c
上传用户:looem2003
上传日期:2014-07-20
资源大小:13733k
文件大小:89k
源码类别:

打印编程

开发平台:

Visual C++

  1. /* pngrutil.c - utilities to read a PNG file
  2.  *
  3.  * Last changed in libpng 1.2.15 December 31, 2006
  4.  * For conditions of distribution and use, see copyright notice in png.h
  5.  * Copyright (c) 1998-2006 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.)
  8.  *
  9.  * This file contains routines that are only called from within
  10.  * libpng itself during the course of reading an image.
  11.  */
  12. #define PNG_INTERNAL
  13. #include "png.h"
  14. #if defined(PNG_READ_SUPPORTED)
  15. #ifdef PNG_FLOATING_POINT_SUPPORTED
  16. #  if defined(_WIN32_WCE)
  17. /* strtod() function is not supported on WindowsCE */
  18. __inline double png_strtod(png_structp png_ptr, const char *nptr, char **endptr)
  19. {
  20.    double result = 0;
  21.    int len;
  22.    wchar_t *str, *end;
  23.    len = MultiByteToWideChar(CP_ACP, 0, nptr, -1, NULL, 0);
  24.    str = (wchar_t *)png_malloc(png_ptr, len * sizeof(wchar_t));
  25.    if ( NULL != str )
  26.    {
  27.       MultiByteToWideChar(CP_ACP, 0, nptr, -1, str, len);
  28.       result = wcstod(str, &end);
  29.       len = WideCharToMultiByte(CP_ACP, 0, end, -1, NULL, 0, NULL, NULL);
  30.       *endptr = (char *)nptr + (png_strlen(nptr) - len + 1);
  31.       png_free(str);
  32.    }
  33.    return result;
  34. }
  35. #  else
  36. #    define png_strtod(p,a,b) strtod(a,b)
  37. #  endif
  38. #endif
  39. png_uint_32 PNGAPI
  40. png_get_uint_31(png_structp png_ptr, png_bytep buf)
  41. {
  42.    png_uint_32 i = png_get_uint_32(buf);
  43.    if (i > PNG_UINT_31_MAX)
  44.      png_error(png_ptr, "PNG unsigned integer out of range.");
  45.    return (i);
  46. }
  47. #ifndef PNG_READ_BIG_ENDIAN_SUPPORTED
  48. /* Grab an unsigned 32-bit integer from a buffer in big-endian format. */
  49. png_uint_32 PNGAPI
  50. png_get_uint_32(png_bytep buf)
  51. {
  52.    png_uint_32 i = ((png_uint_32)(*buf) << 24) +
  53.       ((png_uint_32)(*(buf + 1)) << 16) +
  54.       ((png_uint_32)(*(buf + 2)) << 8) +
  55.       (png_uint_32)(*(buf + 3));
  56.    return (i);
  57. }
  58. /* Grab a signed 32-bit integer from a buffer in big-endian format.  The
  59.  * data is stored in the PNG file in two's complement format, and it is
  60.  * assumed that the machine format for signed integers is the same. */
  61. png_int_32 PNGAPI
  62. png_get_int_32(png_bytep buf)
  63. {
  64.    png_int_32 i = ((png_int_32)(*buf) << 24) +
  65.       ((png_int_32)(*(buf + 1)) << 16) +
  66.       ((png_int_32)(*(buf + 2)) << 8) +
  67.       (png_int_32)(*(buf + 3));
  68.    return (i);
  69. }
  70. /* Grab an unsigned 16-bit integer from a buffer in big-endian format. */
  71. png_uint_16 PNGAPI
  72. png_get_uint_16(png_bytep buf)
  73. {
  74.    png_uint_16 i = (png_uint_16)(((png_uint_16)(*buf) << 8) +
  75.       (png_uint_16)(*(buf + 1)));
  76.    return (i);
  77. }
  78. #endif /* PNG_READ_BIG_ENDIAN_SUPPORTED */
  79. /* Read data, and (optionally) run it through the CRC. */
  80. void /* PRIVATE */
  81. png_crc_read(png_structp png_ptr, png_bytep buf, png_size_t length)
  82. {
  83.    if(png_ptr == NULL) return;
  84.    png_read_data(png_ptr, buf, length);
  85.    png_calculate_crc(png_ptr, buf, length);
  86. }
  87. /* Optionally skip data and then check the CRC.  Depending on whether we
  88.    are reading a ancillary or critical chunk, and how the program has set
  89.    things up, we may calculate the CRC on the data and print a message.
  90.    Returns '1' if there was a CRC error, '0' otherwise. */
  91. int /* PRIVATE */
  92. png_crc_finish(png_structp png_ptr, png_uint_32 skip)
  93. {
  94.    png_size_t i;
  95.    png_size_t istop = png_ptr->zbuf_size;
  96.    for (i = (png_size_t)skip; i > istop; i -= istop)
  97.    {
  98.       png_crc_read(png_ptr, png_ptr->zbuf, png_ptr->zbuf_size);
  99.    }
  100.    if (i)
  101.    {
  102.       png_crc_read(png_ptr, png_ptr->zbuf, i);
  103.    }
  104.    if (png_crc_error(png_ptr))
  105.    {
  106.       if (((png_ptr->chunk_name[0] & 0x20) &&                /* Ancillary */
  107.            !(png_ptr->flags & PNG_FLAG_CRC_ANCILLARY_NOWARN)) ||
  108.           (!(png_ptr->chunk_name[0] & 0x20) &&             /* Critical  */
  109.           (png_ptr->flags & PNG_FLAG_CRC_CRITICAL_USE)))
  110.       {
  111.          png_chunk_warning(png_ptr, "CRC error");
  112.       }
  113.       else
  114.       {
  115.          png_chunk_error(png_ptr, "CRC error");
  116.       }
  117.       return (1);
  118.    }
  119.    return (0);
  120. }
  121. /* Compare the CRC stored in the PNG file with that calculated by libpng from
  122.    the data it has read thus far. */
  123. int /* PRIVATE */
  124. png_crc_error(png_structp png_ptr)
  125. {
  126.    png_byte crc_bytes[4];
  127.    png_uint_32 crc;
  128.    int need_crc = 1;
  129.    if (png_ptr->chunk_name[0] & 0x20)                     /* ancillary */
  130.    {
  131.       if ((png_ptr->flags & PNG_FLAG_CRC_ANCILLARY_MASK) ==
  132.           (PNG_FLAG_CRC_ANCILLARY_USE | PNG_FLAG_CRC_ANCILLARY_NOWARN))
  133.          need_crc = 0;
  134.    }
  135.    else                                                    /* critical */
  136.    {
  137.       if (png_ptr->flags & PNG_FLAG_CRC_CRITICAL_IGNORE)
  138.          need_crc = 0;
  139.    }
  140.    png_read_data(png_ptr, crc_bytes, 4);
  141.    if (need_crc)
  142.    {
  143.       crc = png_get_uint_32(crc_bytes);
  144.       return ((int)(crc != png_ptr->crc));
  145.    }
  146.    else
  147.       return (0);
  148. }
  149. #if defined(PNG_READ_zTXt_SUPPORTED) || defined(PNG_READ_iTXt_SUPPORTED) || 
  150.     defined(PNG_READ_iCCP_SUPPORTED)
  151. /*
  152.  * Decompress trailing data in a chunk.  The assumption is that chunkdata
  153.  * points at an allocated area holding the contents of a chunk with a
  154.  * trailing compressed part.  What we get back is an allocated area
  155.  * holding the original prefix part and an uncompressed version of the
  156.  * trailing part (the malloc area passed in is freed).
  157.  */
  158. png_charp /* PRIVATE */
  159. png_decompress_chunk(png_structp png_ptr, int comp_type,
  160.                               png_charp chunkdata, png_size_t chunklength,
  161.                               png_size_t prefix_size, png_size_t *newlength)
  162. {
  163.    static char msg[] = "Error decoding compressed text";
  164.    png_charp text;
  165.    png_size_t text_size;
  166.    if (comp_type == PNG_COMPRESSION_TYPE_BASE)
  167.    {
  168.       int ret = Z_OK;
  169.       png_ptr->zstream.next_in = (png_bytep)(chunkdata + prefix_size);
  170.       png_ptr->zstream.avail_in = (uInt)(chunklength - prefix_size);
  171.       png_ptr->zstream.next_out = png_ptr->zbuf;
  172.       png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
  173.       text_size = 0;
  174.       text = NULL;
  175.       while (png_ptr->zstream.avail_in)
  176.       {
  177.          ret = inflate(&png_ptr->zstream, Z_PARTIAL_FLUSH);
  178.          if (ret != Z_OK && ret != Z_STREAM_END)
  179.          {
  180.             if (png_ptr->zstream.msg != NULL)
  181.                png_warning(png_ptr, png_ptr->zstream.msg);
  182.             else
  183.                png_warning(png_ptr, msg);
  184.             inflateReset(&png_ptr->zstream);
  185.             png_ptr->zstream.avail_in = 0;
  186.             if (text ==  NULL)
  187.             {
  188.                text_size = prefix_size + png_sizeof(msg) + 1;
  189.                text = (png_charp)png_malloc_warn(png_ptr, text_size);
  190.                if (text ==  NULL)
  191.                  {
  192.                     png_free(png_ptr,chunkdata);
  193.                     png_error(png_ptr,"Not enough memory to decompress chunk");
  194.                  }
  195.                png_memcpy(text, chunkdata, prefix_size);
  196.             }
  197.             text[text_size - 1] = 0x00;
  198.             /* Copy what we can of the error message into the text chunk */
  199.             text_size = (png_size_t)(chunklength - (text - chunkdata) - 1);
  200.             text_size = png_sizeof(msg) > text_size ? text_size :
  201.                png_sizeof(msg);
  202.             png_memcpy(text + prefix_size, msg, text_size + 1);
  203.             break;
  204.          }
  205.          if (!png_ptr->zstream.avail_out || ret == Z_STREAM_END)
  206.          {
  207.             if (text == NULL)
  208.             {
  209.                text_size = prefix_size +
  210.                    png_ptr->zbuf_size - png_ptr->zstream.avail_out;
  211.                text = (png_charp)png_malloc_warn(png_ptr, text_size + 1);
  212.                if (text ==  NULL)
  213.                  {
  214.                     png_free(png_ptr,chunkdata);
  215.                     png_error(png_ptr,"Not enough memory to decompress chunk.");
  216.                  }
  217.                png_memcpy(text + prefix_size, png_ptr->zbuf,
  218.                     text_size - prefix_size);
  219.                png_memcpy(text, chunkdata, prefix_size);
  220.                *(text + text_size) = 0x00;
  221.             }
  222.             else
  223.             {
  224.                png_charp tmp;
  225.                tmp = text;
  226.                text = (png_charp)png_malloc_warn(png_ptr,
  227.                   (png_uint_32)(text_size +
  228.                   png_ptr->zbuf_size - png_ptr->zstream.avail_out + 1));
  229.                if (text == NULL)
  230.                {
  231.                   png_free(png_ptr, tmp);
  232.                   png_free(png_ptr, chunkdata);
  233.                   png_error(png_ptr,"Not enough memory to decompress chunk..");
  234.                }
  235.                png_memcpy(text, tmp, text_size);
  236.                png_free(png_ptr, tmp);
  237.                png_memcpy(text + text_size, png_ptr->zbuf,
  238.                   (png_ptr->zbuf_size - png_ptr->zstream.avail_out));
  239.                text_size += png_ptr->zbuf_size - png_ptr->zstream.avail_out;
  240.                *(text + text_size) = 0x00;
  241.             }
  242.             if (ret == Z_STREAM_END)
  243.                break;
  244.             else
  245.             {
  246.                png_ptr->zstream.next_out = png_ptr->zbuf;
  247.                png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
  248.             }
  249.          }
  250.       }
  251.       if (ret != Z_STREAM_END)
  252.       {
  253. #if !defined(PNG_NO_STDIO) && !defined(_WIN32_WCE)
  254.          char umsg[52];
  255.          if (ret == Z_BUF_ERROR)
  256.             sprintf(umsg,"Buffer error in compressed datastream in %s chunk",
  257.                 png_ptr->chunk_name);
  258.          else if (ret == Z_DATA_ERROR)
  259.             sprintf(umsg,"Data error in compressed datastream in %s chunk",
  260.                 png_ptr->chunk_name);
  261.          else
  262.             sprintf(umsg,"Incomplete compressed datastream in %s chunk",
  263.                 png_ptr->chunk_name);
  264.          png_warning(png_ptr, umsg);
  265. #else
  266.          png_warning(png_ptr,
  267.             "Incomplete compressed datastream in chunk other than IDAT");
  268. #endif
  269.          text_size=prefix_size;
  270.          if (text ==  NULL)
  271.          {
  272.             text = (png_charp)png_malloc_warn(png_ptr, text_size+1);
  273.             if (text == NULL)
  274.               {
  275.                 png_free(png_ptr, chunkdata);
  276.                 png_error(png_ptr,"Not enough memory for text.");
  277.               }
  278.             png_memcpy(text, chunkdata, prefix_size);
  279.          }
  280.          *(text + text_size) = 0x00;
  281.       }
  282.       inflateReset(&png_ptr->zstream);
  283.       png_ptr->zstream.avail_in = 0;
  284.       png_free(png_ptr, chunkdata);
  285.       chunkdata = text;
  286.       *newlength=text_size;
  287.    }
  288.    else /* if (comp_type != PNG_COMPRESSION_TYPE_BASE) */
  289.    {
  290. #if !defined(PNG_NO_STDIO) && !defined(_WIN32_WCE)
  291.       char umsg[50];
  292.       sprintf(umsg, "Unknown zTXt compression type %d", comp_type);
  293.       png_warning(png_ptr, umsg);
  294. #else
  295.       png_warning(png_ptr, "Unknown zTXt compression type");
  296. #endif
  297.       *(chunkdata + prefix_size) = 0x00;
  298.       *newlength=prefix_size;
  299.    }
  300.    return chunkdata;
  301. }
  302. #endif
  303. /* read and check the IDHR chunk */
  304. void /* PRIVATE */
  305. png_handle_IHDR(png_structp png_ptr, png_infop info_ptr, png_uint_32 length)
  306. {
  307.    png_byte buf[13];
  308.    png_uint_32 width, height;
  309.    int bit_depth, color_type, compression_type, filter_type;
  310.    int interlace_type;
  311.    png_debug(1, "in png_handle_IHDRn");
  312.    if (png_ptr->mode & PNG_HAVE_IHDR)
  313.       png_error(png_ptr, "Out of place IHDR");
  314.    /* check the length */
  315.    if (length != 13)
  316.       png_error(png_ptr, "Invalid IHDR chunk");
  317.    png_ptr->mode |= PNG_HAVE_IHDR;
  318.    png_crc_read(png_ptr, buf, 13);
  319.    png_crc_finish(png_ptr, 0);
  320.    width = png_get_uint_31(png_ptr, buf);
  321.    height = png_get_uint_31(png_ptr, buf + 4);
  322.    bit_depth = buf[8];
  323.    color_type = buf[9];
  324.    compression_type = buf[10];
  325.    filter_type = buf[11];
  326.    interlace_type = buf[12];
  327.    /* set internal variables */
  328.    png_ptr->width = width;
  329.    png_ptr->height = height;
  330.    png_ptr->bit_depth = (png_byte)bit_depth;
  331.    png_ptr->interlaced = (png_byte)interlace_type;
  332.    png_ptr->color_type = (png_byte)color_type;
  333. #if defined(PNG_MNG_FEATURES_SUPPORTED)
  334.    png_ptr->filter_type = (png_byte)filter_type;
  335. #endif
  336.    png_ptr->compression_type = (png_byte)compression_type;
  337.    /* find number of channels */
  338.    switch (png_ptr->color_type)
  339.    {
  340.       case PNG_COLOR_TYPE_GRAY:
  341.       case PNG_COLOR_TYPE_PALETTE:
  342.          png_ptr->channels = 1;
  343.          break;
  344.       case PNG_COLOR_TYPE_RGB:
  345.          png_ptr->channels = 3;
  346.          break;
  347.       case PNG_COLOR_TYPE_GRAY_ALPHA:
  348.          png_ptr->channels = 2;
  349.          break;
  350.       case PNG_COLOR_TYPE_RGB_ALPHA:
  351.          png_ptr->channels = 4;
  352.          break;
  353.    }
  354.    /* set up other useful info */
  355.    png_ptr->pixel_depth = (png_byte)(png_ptr->bit_depth *
  356.    png_ptr->channels);
  357.    png_ptr->rowbytes = PNG_ROWBYTES(png_ptr->pixel_depth,png_ptr->width);
  358.    png_debug1(3,"bit_depth = %dn", png_ptr->bit_depth);
  359.    png_debug1(3,"channels = %dn", png_ptr->channels);
  360.    png_debug1(3,"rowbytes = %lun", png_ptr->rowbytes);
  361.    png_set_IHDR(png_ptr, info_ptr, width, height, bit_depth,
  362.       color_type, interlace_type, compression_type, filter_type);
  363. }
  364. /* read and check the palette */
  365. void /* PRIVATE */
  366. png_handle_PLTE(png_structp png_ptr, png_infop info_ptr, png_uint_32 length)
  367. {
  368.    png_color palette[PNG_MAX_PALETTE_LENGTH];
  369.    int num, i;
  370. #ifndef PNG_NO_POINTER_INDEXING
  371.    png_colorp pal_ptr;
  372. #endif
  373.    png_debug(1, "in png_handle_PLTEn");
  374.    if (!(png_ptr->mode & PNG_HAVE_IHDR))
  375.       png_error(png_ptr, "Missing IHDR before PLTE");
  376.    else if (png_ptr->mode & PNG_HAVE_IDAT)
  377.    {
  378.       png_warning(png_ptr, "Invalid PLTE after IDAT");
  379.       png_crc_finish(png_ptr, length);
  380.       return;
  381.    }
  382.    else if (png_ptr->mode & PNG_HAVE_PLTE)
  383.       png_error(png_ptr, "Duplicate PLTE chunk");
  384.    png_ptr->mode |= PNG_HAVE_PLTE;
  385.    if (!(png_ptr->color_type&PNG_COLOR_MASK_COLOR))
  386.    {
  387.       png_warning(png_ptr,
  388.         "Ignoring PLTE chunk in grayscale PNG");
  389.       png_crc_finish(png_ptr, length);
  390.       return;
  391.    }
  392. #if !defined(PNG_READ_OPT_PLTE_SUPPORTED)
  393.    if (png_ptr->color_type != PNG_COLOR_TYPE_PALETTE)
  394.    {
  395.       png_crc_finish(png_ptr, length);
  396.       return;
  397.    }
  398. #endif
  399.    if (length > 3*PNG_MAX_PALETTE_LENGTH || length % 3)
  400.    {
  401.       if (png_ptr->color_type != PNG_COLOR_TYPE_PALETTE)
  402.       {
  403.          png_warning(png_ptr, "Invalid palette chunk");
  404.          png_crc_finish(png_ptr, length);
  405.          return;
  406.       }
  407.       else
  408.       {
  409.          png_error(png_ptr, "Invalid palette chunk");
  410.       }
  411.    }
  412.    num = (int)length / 3;
  413. #ifndef PNG_NO_POINTER_INDEXING
  414.    for (i = 0, pal_ptr = palette; i < num; i++, pal_ptr++)
  415.    {
  416.       png_byte buf[3];
  417.       png_crc_read(png_ptr, buf, 3);
  418.       pal_ptr->red = buf[0];
  419.       pal_ptr->green = buf[1];
  420.       pal_ptr->blue = buf[2];
  421.    }
  422. #else
  423.    for (i = 0; i < num; i++)
  424.    {
  425.       png_byte buf[3];
  426.       png_crc_read(png_ptr, buf, 3);
  427.       /* don't depend upon png_color being any order */
  428.       palette[i].red = buf[0];
  429.       palette[i].green = buf[1];
  430.       palette[i].blue = buf[2];
  431.    }
  432. #endif
  433.    /* If we actually NEED the PLTE chunk (ie for a paletted image), we do
  434.       whatever the normal CRC configuration tells us.  However, if we
  435.       have an RGB image, the PLTE can be considered ancillary, so
  436.       we will act as though it is. */
  437. #if !defined(PNG_READ_OPT_PLTE_SUPPORTED)
  438.    if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
  439. #endif
  440.    {
  441.       png_crc_finish(png_ptr, 0);
  442.    }
  443. #if !defined(PNG_READ_OPT_PLTE_SUPPORTED)
  444.    else if (png_crc_error(png_ptr))  /* Only if we have a CRC error */
  445.    {
  446.       /* If we don't want to use the data from an ancillary chunk,
  447.          we have two options: an error abort, or a warning and we
  448.          ignore the data in this chunk (which should be OK, since
  449.          it's considered ancillary for a RGB or RGBA image). */
  450.       if (!(png_ptr->flags & PNG_FLAG_CRC_ANCILLARY_USE))
  451.       {
  452.          if (png_ptr->flags & PNG_FLAG_CRC_ANCILLARY_NOWARN)
  453.          {
  454.             png_chunk_error(png_ptr, "CRC error");
  455.          }
  456.          else
  457.          {
  458.             png_chunk_warning(png_ptr, "CRC error");
  459.             return;
  460.          }
  461.       }
  462.       /* Otherwise, we (optionally) emit a warning and use the chunk. */
  463.       else if (!(png_ptr->flags & PNG_FLAG_CRC_ANCILLARY_NOWARN))
  464.       {
  465.          png_chunk_warning(png_ptr, "CRC error");
  466.       }
  467.    }
  468. #endif
  469.    png_set_PLTE(png_ptr, info_ptr, palette, num);
  470. #if defined(PNG_READ_tRNS_SUPPORTED)
  471.    if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
  472.    {
  473.       if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_tRNS))
  474.       {
  475.          if (png_ptr->num_trans > (png_uint_16)num)
  476.          {
  477.             png_warning(png_ptr, "Truncating incorrect tRNS chunk length");
  478.             png_ptr->num_trans = (png_uint_16)num;
  479.          }
  480.          if (info_ptr->num_trans > (png_uint_16)num)
  481.          {
  482.             png_warning(png_ptr, "Truncating incorrect info tRNS chunk length");
  483.             info_ptr->num_trans = (png_uint_16)num;
  484.          }
  485.       }
  486.    }
  487. #endif
  488. }
  489. void /* PRIVATE */
  490. png_handle_IEND(png_structp png_ptr, png_infop info_ptr, png_uint_32 length)
  491. {
  492.    png_debug(1, "in png_handle_IENDn");
  493.    if (!(png_ptr->mode & PNG_HAVE_IHDR) || !(png_ptr->mode & PNG_HAVE_IDAT))
  494.    {
  495.       png_error(png_ptr, "No image in file");
  496.    }
  497.    png_ptr->mode |= (PNG_AFTER_IDAT | PNG_HAVE_IEND);
  498.    if (length != 0)
  499.    {
  500.       png_warning(png_ptr, "Incorrect IEND chunk length");
  501.    }
  502.    png_crc_finish(png_ptr, length);
  503.    if (&info_ptr == NULL) /* quiet compiler warnings about unused info_ptr */
  504.       return;
  505. }
  506. #if defined(PNG_READ_gAMA_SUPPORTED)
  507. void /* PRIVATE */
  508. png_handle_gAMA(png_structp png_ptr, png_infop info_ptr, png_uint_32 length)
  509. {
  510.    png_fixed_point igamma;
  511. #ifdef PNG_FLOATING_POINT_SUPPORTED
  512.    float file_gamma;
  513. #endif
  514.    png_byte buf[4];
  515.    png_debug(1, "in png_handle_gAMAn");
  516.    if (!(png_ptr->mode & PNG_HAVE_IHDR))
  517.       png_error(png_ptr, "Missing IHDR before gAMA");
  518.    else if (png_ptr->mode & PNG_HAVE_IDAT)
  519.    {
  520.       png_warning(png_ptr, "Invalid gAMA after IDAT");
  521.       png_crc_finish(png_ptr, length);
  522.       return;
  523.    }
  524.    else if (png_ptr->mode & PNG_HAVE_PLTE)
  525.       /* Should be an error, but we can cope with it */
  526.       png_warning(png_ptr, "Out of place gAMA chunk");
  527.    if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_gAMA)
  528. #if defined(PNG_READ_sRGB_SUPPORTED)
  529.       && !(info_ptr->valid & PNG_INFO_sRGB)
  530. #endif
  531.       )
  532.    {
  533.       png_warning(png_ptr, "Duplicate gAMA chunk");
  534.       png_crc_finish(png_ptr, length);
  535.       return;
  536.    }
  537.    if (length != 4)
  538.    {
  539.       png_warning(png_ptr, "Incorrect gAMA chunk length");
  540.       png_crc_finish(png_ptr, length);
  541.       return;
  542.    }
  543.    png_crc_read(png_ptr, buf, 4);
  544.    if (png_crc_finish(png_ptr, 0))
  545.       return;
  546.    igamma = (png_fixed_point)png_get_uint_32(buf);
  547.    /* check for zero gamma */
  548.    if (igamma == 0)
  549.       {
  550.          png_warning(png_ptr,
  551.            "Ignoring gAMA chunk with gamma=0");
  552.          return;
  553.       }
  554. #if defined(PNG_READ_sRGB_SUPPORTED)
  555.    if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_sRGB))
  556.       if (PNG_OUT_OF_RANGE(igamma, 45500L, 500))
  557.       {
  558.          png_warning(png_ptr,
  559.            "Ignoring incorrect gAMA value when sRGB is also present");
  560. #ifndef PNG_NO_CONSOLE_IO
  561.          fprintf(stderr, "gamma = (%d/100000)n", (int)igamma);
  562. #endif
  563.          return;
  564.       }
  565. #endif /* PNG_READ_sRGB_SUPPORTED */
  566. #ifdef PNG_FLOATING_POINT_SUPPORTED
  567.    file_gamma = (float)igamma / (float)100000.0;
  568. #  ifdef PNG_READ_GAMMA_SUPPORTED
  569.      png_ptr->gamma = file_gamma;
  570. #  endif
  571.      png_set_gAMA(png_ptr, info_ptr, file_gamma);
  572. #endif
  573. #ifdef PNG_FIXED_POINT_SUPPORTED
  574.    png_set_gAMA_fixed(png_ptr, info_ptr, igamma);
  575. #endif
  576. }
  577. #endif
  578. #if defined(PNG_READ_sBIT_SUPPORTED)
  579. void /* PRIVATE */
  580. png_handle_sBIT(png_structp png_ptr, png_infop info_ptr, png_uint_32 length)
  581. {
  582.    png_size_t truelen;
  583.    png_byte buf[4];
  584.    png_debug(1, "in png_handle_sBITn");
  585.    buf[0] = buf[1] = buf[2] = buf[3] = 0;
  586.    if (!(png_ptr->mode & PNG_HAVE_IHDR))
  587.       png_error(png_ptr, "Missing IHDR before sBIT");
  588.    else if (png_ptr->mode & PNG_HAVE_IDAT)
  589.    {
  590.       png_warning(png_ptr, "Invalid sBIT after IDAT");
  591.       png_crc_finish(png_ptr, length);
  592.       return;
  593.    }
  594.    else if (png_ptr->mode & PNG_HAVE_PLTE)
  595.    {
  596.       /* Should be an error, but we can cope with it */
  597.       png_warning(png_ptr, "Out of place sBIT chunk");
  598.    }
  599.    if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_sBIT))
  600.    {
  601.       png_warning(png_ptr, "Duplicate sBIT chunk");
  602.       png_crc_finish(png_ptr, length);
  603.       return;
  604.    }
  605.    if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
  606.       truelen = 3;
  607.    else
  608.       truelen = (png_size_t)png_ptr->channels;
  609.    if (length != truelen || length > 4)
  610.    {
  611.       png_warning(png_ptr, "Incorrect sBIT chunk length");
  612.       png_crc_finish(png_ptr, length);
  613.       return;
  614.    }
  615.    png_crc_read(png_ptr, buf, truelen);
  616.    if (png_crc_finish(png_ptr, 0))
  617.       return;
  618.    if (png_ptr->color_type & PNG_COLOR_MASK_COLOR)
  619.    {
  620.       png_ptr->sig_bit.red = buf[0];
  621.       png_ptr->sig_bit.green = buf[1];
  622.       png_ptr->sig_bit.blue = buf[2];
  623.       png_ptr->sig_bit.alpha = buf[3];
  624.    }
  625.    else
  626.    {
  627.       png_ptr->sig_bit.gray = buf[0];
  628.       png_ptr->sig_bit.red = buf[0];
  629.       png_ptr->sig_bit.green = buf[0];
  630.       png_ptr->sig_bit.blue = buf[0];
  631.       png_ptr->sig_bit.alpha = buf[1];
  632.    }
  633.    png_set_sBIT(png_ptr, info_ptr, &(png_ptr->sig_bit));
  634. }
  635. #endif
  636. #if defined(PNG_READ_cHRM_SUPPORTED)
  637. void /* PRIVATE */
  638. png_handle_cHRM(png_structp png_ptr, png_infop info_ptr, png_uint_32 length)
  639. {
  640.    png_byte buf[4];
  641. #ifdef PNG_FLOATING_POINT_SUPPORTED
  642.    float white_x, white_y, red_x, red_y, green_x, green_y, blue_x, blue_y;
  643. #endif
  644.    png_fixed_point int_x_white, int_y_white, int_x_red, int_y_red, int_x_green,
  645.       int_y_green, int_x_blue, int_y_blue;
  646.    png_uint_32 uint_x, uint_y;
  647.    png_debug(1, "in png_handle_cHRMn");
  648.    if (!(png_ptr->mode & PNG_HAVE_IHDR))
  649.       png_error(png_ptr, "Missing IHDR before cHRM");
  650.    else if (png_ptr->mode & PNG_HAVE_IDAT)
  651.    {
  652.       png_warning(png_ptr, "Invalid cHRM after IDAT");
  653.       png_crc_finish(png_ptr, length);
  654.       return;
  655.    }
  656.    else if (png_ptr->mode & PNG_HAVE_PLTE)
  657.       /* Should be an error, but we can cope with it */
  658.       png_warning(png_ptr, "Missing PLTE before cHRM");
  659.    if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_cHRM)
  660. #if defined(PNG_READ_sRGB_SUPPORTED)
  661.       && !(info_ptr->valid & PNG_INFO_sRGB)
  662. #endif
  663.       )
  664.    {
  665.       png_warning(png_ptr, "Duplicate cHRM chunk");
  666.       png_crc_finish(png_ptr, length);
  667.       return;
  668.    }
  669.    if (length != 32)
  670.    {
  671.       png_warning(png_ptr, "Incorrect cHRM chunk length");
  672.       png_crc_finish(png_ptr, length);
  673.       return;
  674.    }
  675.    png_crc_read(png_ptr, buf, 4);
  676.    uint_x = png_get_uint_32(buf);
  677.    png_crc_read(png_ptr, buf, 4);
  678.    uint_y = png_get_uint_32(buf);
  679.    if (uint_x > 80000L || uint_y > 80000L ||
  680.       uint_x + uint_y > 100000L)
  681.    {
  682.       png_warning(png_ptr, "Invalid cHRM white point");
  683.       png_crc_finish(png_ptr, 24);
  684.       return;
  685.    }
  686.    int_x_white = (png_fixed_point)uint_x;
  687.    int_y_white = (png_fixed_point)uint_y;
  688.    png_crc_read(png_ptr, buf, 4);
  689.    uint_x = png_get_uint_32(buf);
  690.    png_crc_read(png_ptr, buf, 4);
  691.    uint_y = png_get_uint_32(buf);
  692.    if (uint_x + uint_y > 100000L)
  693.    {
  694.       png_warning(png_ptr, "Invalid cHRM red point");
  695.       png_crc_finish(png_ptr, 16);
  696.       return;
  697.    }
  698.    int_x_red = (png_fixed_point)uint_x;
  699.    int_y_red = (png_fixed_point)uint_y;
  700.    png_crc_read(png_ptr, buf, 4);
  701.    uint_x = png_get_uint_32(buf);
  702.    png_crc_read(png_ptr, buf, 4);
  703.    uint_y = png_get_uint_32(buf);
  704.    if (uint_x + uint_y > 100000L)
  705.    {
  706.       png_warning(png_ptr, "Invalid cHRM green point");
  707.       png_crc_finish(png_ptr, 8);
  708.       return;
  709.    }
  710.    int_x_green = (png_fixed_point)uint_x;
  711.    int_y_green = (png_fixed_point)uint_y;
  712.    png_crc_read(png_ptr, buf, 4);
  713.    uint_x = png_get_uint_32(buf);
  714.    png_crc_read(png_ptr, buf, 4);
  715.    uint_y = png_get_uint_32(buf);
  716.    if (uint_x + uint_y > 100000L)
  717.    {
  718.       png_warning(png_ptr, "Invalid cHRM blue point");
  719.       png_crc_finish(png_ptr, 0);
  720.       return;
  721.    }
  722.    int_x_blue = (png_fixed_point)uint_x;
  723.    int_y_blue = (png_fixed_point)uint_y;
  724. #ifdef PNG_FLOATING_POINT_SUPPORTED
  725.    white_x = (float)int_x_white / (float)100000.0;
  726.    white_y = (float)int_y_white / (float)100000.0;
  727.    red_x   = (float)int_x_red   / (float)100000.0;
  728.    red_y   = (float)int_y_red   / (float)100000.0;
  729.    green_x = (float)int_x_green / (float)100000.0;
  730.    green_y = (float)int_y_green / (float)100000.0;
  731.    blue_x  = (float)int_x_blue  / (float)100000.0;
  732.    blue_y  = (float)int_y_blue  / (float)100000.0;
  733. #endif
  734. #if defined(PNG_READ_sRGB_SUPPORTED)
  735.    if ((info_ptr != NULL) && (info_ptr->valid & PNG_INFO_sRGB))
  736.       {
  737.       if (PNG_OUT_OF_RANGE(int_x_white, 31270,  1000) ||
  738.           PNG_OUT_OF_RANGE(int_y_white, 32900,  1000) ||
  739.           PNG_OUT_OF_RANGE(int_x_red,   64000L, 1000) ||
  740.           PNG_OUT_OF_RANGE(int_y_red,   33000,  1000) ||
  741.           PNG_OUT_OF_RANGE(int_x_green, 30000,  1000) ||
  742.           PNG_OUT_OF_RANGE(int_y_green, 60000L, 1000) ||
  743.           PNG_OUT_OF_RANGE(int_x_blue,  15000,  1000) ||
  744.           PNG_OUT_OF_RANGE(int_y_blue,   6000,  1000))
  745.          {
  746.             png_warning(png_ptr,
  747.               "Ignoring incorrect cHRM value when sRGB is also present");
  748. #ifndef PNG_NO_CONSOLE_IO
  749. #ifdef PNG_FLOATING_POINT_SUPPORTED
  750.             fprintf(stderr,"wx=%f, wy=%f, rx=%f, ry=%fn",
  751.                white_x, white_y, red_x, red_y);
  752.             fprintf(stderr,"gx=%f, gy=%f, bx=%f, by=%fn",
  753.                green_x, green_y, blue_x, blue_y);
  754. #else
  755.             fprintf(stderr,"wx=%ld, wy=%ld, rx=%ld, ry=%ldn",
  756.                int_x_white, int_y_white, int_x_red, int_y_red);
  757.             fprintf(stderr,"gx=%ld, gy=%ld, bx=%ld, by=%ldn",
  758.                int_x_green, int_y_green, int_x_blue, int_y_blue);
  759. #endif
  760. #endif /* PNG_NO_CONSOLE_IO */
  761.          }
  762.          png_crc_finish(png_ptr, 0);
  763.          return;
  764.       }
  765. #endif /* PNG_READ_sRGB_SUPPORTED */
  766. #ifdef PNG_FLOATING_POINT_SUPPORTED
  767.    png_set_cHRM(png_ptr, info_ptr,
  768.       white_x, white_y, red_x, red_y, green_x, green_y, blue_x, blue_y);
  769. #endif
  770. #ifdef PNG_FIXED_POINT_SUPPORTED
  771.    png_set_cHRM_fixed(png_ptr, info_ptr,
  772.       int_x_white, int_y_white, int_x_red, int_y_red, int_x_green,
  773.       int_y_green, int_x_blue, int_y_blue);
  774. #endif
  775.    if (png_crc_finish(png_ptr, 0))
  776.       return;
  777. }
  778. #endif
  779. #if defined(PNG_READ_sRGB_SUPPORTED)
  780. void /* PRIVATE */
  781. png_handle_sRGB(png_structp png_ptr, png_infop info_ptr, png_uint_32 length)
  782. {
  783.    int intent;
  784.    png_byte buf[1];
  785.    png_debug(1, "in png_handle_sRGBn");
  786.    if (!(png_ptr->mode & PNG_HAVE_IHDR))
  787.       png_error(png_ptr, "Missing IHDR before sRGB");
  788.    else if (png_ptr->mode & PNG_HAVE_IDAT)
  789.    {
  790.       png_warning(png_ptr, "Invalid sRGB after IDAT");
  791.       png_crc_finish(png_ptr, length);
  792.       return;
  793.    }
  794.    else if (png_ptr->mode & PNG_HAVE_PLTE)
  795.       /* Should be an error, but we can cope with it */
  796.       png_warning(png_ptr, "Out of place sRGB chunk");
  797.    if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_sRGB))
  798.    {
  799.       png_warning(png_ptr, "Duplicate sRGB chunk");
  800.       png_crc_finish(png_ptr, length);
  801.       return;
  802.    }
  803.    if (length != 1)
  804.    {
  805.       png_warning(png_ptr, "Incorrect sRGB chunk length");
  806.       png_crc_finish(png_ptr, length);
  807.       return;
  808.    }
  809.    png_crc_read(png_ptr, buf, 1);
  810.    if (png_crc_finish(png_ptr, 0))
  811.       return;
  812.    intent = buf[0];
  813.    /* check for bad intent */
  814.    if (intent >= PNG_sRGB_INTENT_LAST)
  815.    {
  816.       png_warning(png_ptr, "Unknown sRGB intent");
  817.       return;
  818.    }
  819. #if defined(PNG_READ_gAMA_SUPPORTED) && defined(PNG_READ_GAMMA_SUPPORTED)
  820.    if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_gAMA))
  821.    {
  822.    png_fixed_point igamma;
  823. #ifdef PNG_FIXED_POINT_SUPPORTED
  824.       igamma=info_ptr->int_gamma;
  825. #else
  826. #  ifdef PNG_FLOATING_POINT_SUPPORTED
  827.       igamma=(png_fixed_point)(info_ptr->gamma * 100000.);
  828. #  endif
  829. #endif
  830.       if (PNG_OUT_OF_RANGE(igamma, 45500L, 500))
  831.       {
  832.          png_warning(png_ptr,
  833.            "Ignoring incorrect gAMA value when sRGB is also present");
  834. #ifndef PNG_NO_CONSOLE_IO
  835. #  ifdef PNG_FIXED_POINT_SUPPORTED
  836.          fprintf(stderr,"incorrect gamma=(%d/100000)n",(int)png_ptr->int_gamma);
  837. #  else
  838. #    ifdef PNG_FLOATING_POINT_SUPPORTED
  839.          fprintf(stderr,"incorrect gamma=%fn",png_ptr->gamma);
  840. #    endif
  841. #  endif
  842. #endif
  843.       }
  844.    }
  845. #endif /* PNG_READ_gAMA_SUPPORTED */
  846. #ifdef PNG_READ_cHRM_SUPPORTED
  847. #ifdef PNG_FIXED_POINT_SUPPORTED
  848.    if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_cHRM))
  849.       if (PNG_OUT_OF_RANGE(info_ptr->int_x_white, 31270,  1000) ||
  850.           PNG_OUT_OF_RANGE(info_ptr->int_y_white, 32900,  1000) ||
  851.           PNG_OUT_OF_RANGE(info_ptr->int_x_red,   64000L, 1000) ||
  852.           PNG_OUT_OF_RANGE(info_ptr->int_y_red,   33000,  1000) ||
  853.           PNG_OUT_OF_RANGE(info_ptr->int_x_green, 30000,  1000) ||
  854.           PNG_OUT_OF_RANGE(info_ptr->int_y_green, 60000L, 1000) ||
  855.           PNG_OUT_OF_RANGE(info_ptr->int_x_blue,  15000,  1000) ||
  856.           PNG_OUT_OF_RANGE(info_ptr->int_y_blue,   6000,  1000))
  857.          {
  858.             png_warning(png_ptr,
  859.               "Ignoring incorrect cHRM value when sRGB is also present");
  860.          }
  861. #endif /* PNG_FIXED_POINT_SUPPORTED */
  862. #endif /* PNG_READ_cHRM_SUPPORTED */
  863.    png_set_sRGB_gAMA_and_cHRM(png_ptr, info_ptr, intent);
  864. }
  865. #endif /* PNG_READ_sRGB_SUPPORTED */
  866. #if defined(PNG_READ_iCCP_SUPPORTED)
  867. void /* PRIVATE */
  868. png_handle_iCCP(png_structp png_ptr, png_infop info_ptr, png_uint_32 length)
  869. /* Note: this does not properly handle chunks that are > 64K under DOS */
  870. {
  871.    png_charp chunkdata;
  872.    png_byte compression_type;
  873.    png_bytep pC;
  874.    png_charp profile;
  875.    png_uint_32 skip = 0;
  876.    png_uint_32 profile_size, profile_length;
  877.    png_size_t slength, prefix_length, data_length;
  878.    png_debug(1, "in png_handle_iCCPn");
  879.    if (!(png_ptr->mode & PNG_HAVE_IHDR))
  880.       png_error(png_ptr, "Missing IHDR before iCCP");
  881.    else if (png_ptr->mode & PNG_HAVE_IDAT)
  882.    {
  883.       png_warning(png_ptr, "Invalid iCCP after IDAT");
  884.       png_crc_finish(png_ptr, length);
  885.       return;
  886.    }
  887.    else if (png_ptr->mode & PNG_HAVE_PLTE)
  888.       /* Should be an error, but we can cope with it */
  889.       png_warning(png_ptr, "Out of place iCCP chunk");
  890.    if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_iCCP))
  891.    {
  892.       png_warning(png_ptr, "Duplicate iCCP chunk");
  893.       png_crc_finish(png_ptr, length);
  894.       return;
  895.    }
  896. #ifdef PNG_MAX_MALLOC_64K
  897.    if (length > (png_uint_32)65535L)
  898.    {
  899.       png_warning(png_ptr, "iCCP chunk too large to fit in memory");
  900.       skip = length - (png_uint_32)65535L;
  901.       length = (png_uint_32)65535L;
  902.    }
  903. #endif
  904.    chunkdata = (png_charp)png_malloc(png_ptr, length + 1);
  905.    slength = (png_size_t)length;
  906.    png_crc_read(png_ptr, (png_bytep)chunkdata, slength);
  907.    if (png_crc_finish(png_ptr, skip))
  908.    {
  909.       png_free(png_ptr, chunkdata);
  910.       return;
  911.    }
  912.    chunkdata[slength] = 0x00;
  913.    for (profile = chunkdata; *profile; profile++)
  914.       /* empty loop to find end of name */ ;
  915.    ++profile;
  916.    /* there should be at least one zero (the compression type byte)
  917.       following the separator, and we should be on it  */
  918.    if ( profile >= chunkdata + slength)
  919.    {
  920.       png_free(png_ptr, chunkdata);
  921.       png_warning(png_ptr, "Malformed iCCP chunk");
  922.       return;
  923.    }
  924.    /* compression_type should always be zero */
  925.    compression_type = *profile++;
  926.    if (compression_type)
  927.    {
  928.       png_warning(png_ptr, "Ignoring nonzero compression type in iCCP chunk");
  929.       compression_type=0x00;  /* Reset it to zero (libpng-1.0.6 through 1.0.8
  930.                                  wrote nonzero) */
  931.    }
  932.    prefix_length = profile - chunkdata;
  933.    chunkdata = png_decompress_chunk(png_ptr, compression_type, chunkdata,
  934.                                     slength, prefix_length, &data_length);
  935.    profile_length = data_length - prefix_length;
  936.    if ( prefix_length > data_length || profile_length < 4)
  937.    {
  938.       png_free(png_ptr, chunkdata);
  939.       png_warning(png_ptr, "Profile size field missing from iCCP chunk");
  940.       return;
  941.    }
  942.    /* Check the profile_size recorded in the first 32 bits of the ICC profile */
  943.    pC = (png_bytep)(chunkdata+prefix_length);
  944.    profile_size = ((*(pC  ))<<24) |
  945.                   ((*(pC+1))<<16) |
  946.                   ((*(pC+2))<< 8) |
  947.                   ((*(pC+3))    );
  948.    if(profile_size < profile_length)
  949.       profile_length = profile_size;
  950.    if(profile_size > profile_length)
  951.    {
  952.       png_free(png_ptr, chunkdata);
  953.       png_warning(png_ptr, "Ignoring truncated iCCP profile.");
  954.       return;
  955.    }
  956.    png_set_iCCP(png_ptr, info_ptr, chunkdata, compression_type,
  957.                 chunkdata + prefix_length, profile_length);
  958.    png_free(png_ptr, chunkdata);
  959. }
  960. #endif /* PNG_READ_iCCP_SUPPORTED */
  961. #if defined(PNG_READ_sPLT_SUPPORTED)
  962. void /* PRIVATE */
  963. png_handle_sPLT(png_structp png_ptr, png_infop info_ptr, png_uint_32 length)
  964. /* Note: this does not properly handle chunks that are > 64K under DOS */
  965. {
  966.    png_bytep chunkdata;
  967.    png_bytep entry_start;
  968.    png_sPLT_t new_palette;
  969. #ifdef PNG_NO_POINTER_INDEXING
  970.    png_sPLT_entryp pp;
  971. #endif
  972.    int data_length, entry_size, i;
  973.    png_uint_32 skip = 0;
  974.    png_size_t slength;
  975.    png_debug(1, "in png_handle_sPLTn");
  976.    if (!(png_ptr->mode & PNG_HAVE_IHDR))
  977.       png_error(png_ptr, "Missing IHDR before sPLT");
  978.    else if (png_ptr->mode & PNG_HAVE_IDAT)
  979.    {
  980.       png_warning(png_ptr, "Invalid sPLT after IDAT");
  981.       png_crc_finish(png_ptr, length);
  982.       return;
  983.    }
  984. #ifdef PNG_MAX_MALLOC_64K
  985.    if (length > (png_uint_32)65535L)
  986.    {
  987.       png_warning(png_ptr, "sPLT chunk too large to fit in memory");
  988.       skip = length - (png_uint_32)65535L;
  989.       length = (png_uint_32)65535L;
  990.    }
  991. #endif
  992.    chunkdata = (png_bytep)png_malloc(png_ptr, length + 1);
  993.    slength = (png_size_t)length;
  994.    png_crc_read(png_ptr, (png_bytep)chunkdata, slength);
  995.    if (png_crc_finish(png_ptr, skip))
  996.    {
  997.       png_free(png_ptr, chunkdata);
  998.       return;
  999.    }
  1000.    chunkdata[slength] = 0x00;
  1001.    for (entry_start = chunkdata; *entry_start; entry_start++)
  1002.       /* empty loop to find end of name */ ;
  1003.    ++entry_start;
  1004.    /* a sample depth should follow the separator, and we should be on it  */
  1005.    if (entry_start > chunkdata + slength)
  1006.    {
  1007.       png_free(png_ptr, chunkdata);
  1008.       png_warning(png_ptr, "malformed sPLT chunk");
  1009.       return;
  1010.    }
  1011.    new_palette.depth = *entry_start++;
  1012.    entry_size = (new_palette.depth == 8 ? 6 : 10);
  1013.    data_length = (slength - (entry_start - chunkdata));
  1014.    /* integrity-check the data length */
  1015.    if (data_length % entry_size)
  1016.    {
  1017.       png_free(png_ptr, chunkdata);
  1018.       png_warning(png_ptr, "sPLT chunk has bad length");
  1019.       return;
  1020.    }
  1021.    new_palette.nentries = (png_int_32) ( data_length / entry_size);
  1022.    if ((png_uint_32) new_palette.nentries > (png_uint_32) (PNG_SIZE_MAX /
  1023.        png_sizeof(png_sPLT_entry)))
  1024.    {
  1025.        png_warning(png_ptr, "sPLT chunk too long");
  1026.        return;
  1027.    }
  1028.    new_palette.entries = (png_sPLT_entryp)png_malloc_warn(
  1029.        png_ptr, new_palette.nentries * png_sizeof(png_sPLT_entry));
  1030.    if (new_palette.entries == NULL)
  1031.    {
  1032.        png_warning(png_ptr, "sPLT chunk requires too much memory");
  1033.        return;
  1034.    }
  1035. #ifndef PNG_NO_POINTER_INDEXING
  1036.    for (i = 0; i < new_palette.nentries; i++)
  1037.    {
  1038.       png_sPLT_entryp pp = new_palette.entries + i;
  1039.       if (new_palette.depth == 8)
  1040.       {
  1041.           pp->red = *entry_start++;
  1042.           pp->green = *entry_start++;
  1043.           pp->blue = *entry_start++;
  1044.           pp->alpha = *entry_start++;
  1045.       }
  1046.       else
  1047.       {
  1048.           pp->red   = png_get_uint_16(entry_start); entry_start += 2;
  1049.           pp->green = png_get_uint_16(entry_start); entry_start += 2;
  1050.           pp->blue  = png_get_uint_16(entry_start); entry_start += 2;
  1051.           pp->alpha = png_get_uint_16(entry_start); entry_start += 2;
  1052.       }
  1053.       pp->frequency = png_get_uint_16(entry_start); entry_start += 2;
  1054.    }
  1055. #else
  1056.    pp = new_palette.entries;
  1057.    for (i = 0; i < new_palette.nentries; i++)
  1058.    {
  1059.       if (new_palette.depth == 8)
  1060.       {
  1061.           pp[i].red   = *entry_start++;
  1062.           pp[i].green = *entry_start++;
  1063.           pp[i].blue  = *entry_start++;
  1064.           pp[i].alpha = *entry_start++;
  1065.       }
  1066.       else
  1067.       {
  1068.           pp[i].red   = png_get_uint_16(entry_start); entry_start += 2;
  1069.           pp[i].green = png_get_uint_16(entry_start); entry_start += 2;
  1070.           pp[i].blue  = png_get_uint_16(entry_start); entry_start += 2;
  1071.           pp[i].alpha = png_get_uint_16(entry_start); entry_start += 2;
  1072.       }
  1073.       pp->frequency = png_get_uint_16(entry_start); entry_start += 2;
  1074.    }
  1075. #endif
  1076.    /* discard all chunk data except the name and stash that */
  1077.    new_palette.name = (png_charp)chunkdata;
  1078.    png_set_sPLT(png_ptr, info_ptr, &new_palette, 1);
  1079.    png_free(png_ptr, chunkdata);
  1080.    png_free(png_ptr, new_palette.entries);
  1081. }
  1082. #endif /* PNG_READ_sPLT_SUPPORTED */
  1083. #if defined(PNG_READ_tRNS_SUPPORTED)
  1084. void /* PRIVATE */
  1085. png_handle_tRNS(png_structp png_ptr, png_infop info_ptr, png_uint_32 length)
  1086. {
  1087.    png_byte readbuf[PNG_MAX_PALETTE_LENGTH];
  1088.    png_debug(1, "in png_handle_tRNSn");
  1089.    if (!(png_ptr->mode & PNG_HAVE_IHDR))
  1090.       png_error(png_ptr, "Missing IHDR before tRNS");
  1091.    else if (png_ptr->mode & PNG_HAVE_IDAT)
  1092.    {
  1093.       png_warning(png_ptr, "Invalid tRNS after IDAT");
  1094.       png_crc_finish(png_ptr, length);
  1095.       return;
  1096.    }
  1097.    else if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_tRNS))
  1098.    {
  1099.       png_warning(png_ptr, "Duplicate tRNS chunk");
  1100.       png_crc_finish(png_ptr, length);
  1101.       return;
  1102.    }
  1103.    if (png_ptr->color_type == PNG_COLOR_TYPE_GRAY)
  1104.    {
  1105.       png_byte buf[2];
  1106.       if (length != 2)
  1107.       {
  1108.          png_warning(png_ptr, "Incorrect tRNS chunk length");
  1109.          png_crc_finish(png_ptr, length);
  1110.          return;
  1111.       }
  1112.       png_crc_read(png_ptr, buf, 2);
  1113.       png_ptr->num_trans = 1;
  1114.       png_ptr->trans_values.gray = png_get_uint_16(buf);
  1115.    }
  1116.    else if (png_ptr->color_type == PNG_COLOR_TYPE_RGB)
  1117.    {
  1118.       png_byte buf[6];
  1119.       if (length != 6)
  1120.       {
  1121.          png_warning(png_ptr, "Incorrect tRNS chunk length");
  1122.          png_crc_finish(png_ptr, length);
  1123.          return;
  1124.       }
  1125.       png_crc_read(png_ptr, buf, (png_size_t)length);
  1126.       png_ptr->num_trans = 1;
  1127.       png_ptr->trans_values.red = png_get_uint_16(buf);
  1128.       png_ptr->trans_values.green = png_get_uint_16(buf + 2);
  1129.       png_ptr->trans_values.blue = png_get_uint_16(buf + 4);
  1130.    }
  1131.    else if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
  1132.    {
  1133.       if (!(png_ptr->mode & PNG_HAVE_PLTE))
  1134.       {
  1135.          /* Should be an error, but we can cope with it. */
  1136.          png_warning(png_ptr, "Missing PLTE before tRNS");
  1137.       }
  1138.       if (length > (png_uint_32)png_ptr->num_palette ||
  1139.           length > PNG_MAX_PALETTE_LENGTH)
  1140.       {
  1141.          png_warning(png_ptr, "Incorrect tRNS chunk length");
  1142.          png_crc_finish(png_ptr, length);
  1143.          return;
  1144.       }
  1145.       if (length == 0)
  1146.       {
  1147.          png_warning(png_ptr, "Zero length tRNS chunk");
  1148.          png_crc_finish(png_ptr, length);
  1149.          return;
  1150.       }
  1151.       png_crc_read(png_ptr, readbuf, (png_size_t)length);
  1152.       png_ptr->num_trans = (png_uint_16)length;
  1153.    }
  1154.    else
  1155.    {
  1156.       png_warning(png_ptr, "tRNS chunk not allowed with alpha channel");
  1157.       png_crc_finish(png_ptr, length);
  1158.       return;
  1159.    }
  1160.    if (png_crc_finish(png_ptr, 0))
  1161.       return;
  1162.    png_set_tRNS(png_ptr, info_ptr, readbuf, png_ptr->num_trans,
  1163.       &(png_ptr->trans_values));
  1164. }
  1165. #endif
  1166. #if defined(PNG_READ_bKGD_SUPPORTED)
  1167. void /* PRIVATE */
  1168. png_handle_bKGD(png_structp png_ptr, png_infop info_ptr, png_uint_32 length)
  1169. {
  1170.    png_size_t truelen;
  1171.    png_byte buf[6];
  1172.    png_debug(1, "in png_handle_bKGDn");
  1173.    if (!(png_ptr->mode & PNG_HAVE_IHDR))
  1174.       png_error(png_ptr, "Missing IHDR before bKGD");
  1175.    else if (png_ptr->mode & PNG_HAVE_IDAT)
  1176.    {
  1177.       png_warning(png_ptr, "Invalid bKGD after IDAT");
  1178.       png_crc_finish(png_ptr, length);
  1179.       return;
  1180.    }
  1181.    else if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE &&
  1182.             !(png_ptr->mode & PNG_HAVE_PLTE))
  1183.    {
  1184.       png_warning(png_ptr, "Missing PLTE before bKGD");
  1185.       png_crc_finish(png_ptr, length);
  1186.       return;
  1187.    }
  1188.    else if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_bKGD))
  1189.    {
  1190.       png_warning(png_ptr, "Duplicate bKGD chunk");
  1191.       png_crc_finish(png_ptr, length);
  1192.       return;
  1193.    }
  1194.    if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
  1195.       truelen = 1;
  1196.    else if (png_ptr->color_type & PNG_COLOR_MASK_COLOR)
  1197.       truelen = 6;
  1198.    else
  1199.       truelen = 2;
  1200.    if (length != truelen)
  1201.    {
  1202.       png_warning(png_ptr, "Incorrect bKGD chunk length");
  1203.       png_crc_finish(png_ptr, length);
  1204.       return;
  1205.    }
  1206.    png_crc_read(png_ptr, buf, truelen);
  1207.    if (png_crc_finish(png_ptr, 0))
  1208.       return;
  1209.    /* We convert the index value into RGB components so that we can allow
  1210.     * arbitrary RGB values for background when we have transparency, and
  1211.     * so it is easy to determine the RGB values of the background color
  1212.     * from the info_ptr struct. */
  1213.    if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
  1214.    {
  1215.       png_ptr->background.index = buf[0];
  1216.       if(info_ptr->num_palette)
  1217.       {
  1218.           if(buf[0] > info_ptr->num_palette)
  1219.           {
  1220.              png_warning(png_ptr, "Incorrect bKGD chunk index value");
  1221.              return;
  1222.           }
  1223.           png_ptr->background.red =
  1224.              (png_uint_16)png_ptr->palette[buf[0]].red;
  1225.           png_ptr->background.green =
  1226.              (png_uint_16)png_ptr->palette[buf[0]].green;
  1227.           png_ptr->background.blue =
  1228.              (png_uint_16)png_ptr->palette[buf[0]].blue;
  1229.       }
  1230.    }
  1231.    else if (!(png_ptr->color_type & PNG_COLOR_MASK_COLOR)) /* GRAY */
  1232.    {
  1233.       png_ptr->background.red =
  1234.       png_ptr->background.green =
  1235.       png_ptr->background.blue =
  1236.       png_ptr->background.gray = png_get_uint_16(buf);
  1237.    }
  1238.    else
  1239.    {
  1240.       png_ptr->background.red = png_get_uint_16(buf);
  1241.       png_ptr->background.green = png_get_uint_16(buf + 2);
  1242.       png_ptr->background.blue = png_get_uint_16(buf + 4);
  1243.    }
  1244.    png_set_bKGD(png_ptr, info_ptr, &(png_ptr->background));
  1245. }
  1246. #endif
  1247. #if defined(PNG_READ_hIST_SUPPORTED)
  1248. void /* PRIVATE */
  1249. png_handle_hIST(png_structp png_ptr, png_infop info_ptr, png_uint_32 length)
  1250. {
  1251.    unsigned int num, i;
  1252.    png_uint_16 readbuf[PNG_MAX_PALETTE_LENGTH];
  1253.    png_debug(1, "in png_handle_hISTn");
  1254.    if (!(png_ptr->mode & PNG_HAVE_IHDR))
  1255.       png_error(png_ptr, "Missing IHDR before hIST");
  1256.    else if (png_ptr->mode & PNG_HAVE_IDAT)
  1257.    {
  1258.       png_warning(png_ptr, "Invalid hIST after IDAT");
  1259.       png_crc_finish(png_ptr, length);
  1260.       return;
  1261.    }
  1262.    else if (!(png_ptr->mode & PNG_HAVE_PLTE))
  1263.    {
  1264.       png_warning(png_ptr, "Missing PLTE before hIST");
  1265.       png_crc_finish(png_ptr, length);
  1266.       return;
  1267.    }
  1268.    else if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_hIST))
  1269.    {
  1270.       png_warning(png_ptr, "Duplicate hIST chunk");
  1271.       png_crc_finish(png_ptr, length);
  1272.       return;
  1273.    }
  1274.    num = length / 2 ;
  1275.    if (num != (unsigned int) png_ptr->num_palette || num >
  1276.       (unsigned int) PNG_MAX_PALETTE_LENGTH)
  1277.    {
  1278.       png_warning(png_ptr, "Incorrect hIST chunk length");
  1279.       png_crc_finish(png_ptr, length);
  1280.       return;
  1281.    }
  1282.    for (i = 0; i < num; i++)
  1283.    {
  1284.       png_byte buf[2];
  1285.       png_crc_read(png_ptr, buf, 2);
  1286.       readbuf[i] = png_get_uint_16(buf);
  1287.    }
  1288.    if (png_crc_finish(png_ptr, 0))
  1289.       return;
  1290.    png_set_hIST(png_ptr, info_ptr, readbuf);
  1291. }
  1292. #endif
  1293. #if defined(PNG_READ_pHYs_SUPPORTED)
  1294. void /* PRIVATE */
  1295. png_handle_pHYs(png_structp png_ptr, png_infop info_ptr, png_uint_32 length)
  1296. {
  1297.    png_byte buf[9];
  1298.    png_uint_32 res_x, res_y;
  1299.    int unit_type;
  1300.    png_debug(1, "in png_handle_pHYsn");
  1301.    if (!(png_ptr->mode & PNG_HAVE_IHDR))
  1302.       png_error(png_ptr, "Missing IHDR before pHYs");
  1303.    else if (png_ptr->mode & PNG_HAVE_IDAT)
  1304.    {
  1305.       png_warning(png_ptr, "Invalid pHYs after IDAT");
  1306.       png_crc_finish(png_ptr, length);
  1307.       return;
  1308.    }
  1309.    else if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_pHYs))
  1310.    {
  1311.       png_warning(png_ptr, "Duplicate pHYs chunk");
  1312.       png_crc_finish(png_ptr, length);
  1313.       return;
  1314.    }
  1315.    if (length != 9)
  1316.    {
  1317.       png_warning(png_ptr, "Incorrect pHYs chunk length");
  1318.       png_crc_finish(png_ptr, length);
  1319.       return;
  1320.    }
  1321.    png_crc_read(png_ptr, buf, 9);
  1322.    if (png_crc_finish(png_ptr, 0))
  1323.       return;
  1324.    res_x = png_get_uint_32(buf);
  1325.    res_y = png_get_uint_32(buf + 4);
  1326.    unit_type = buf[8];
  1327.    png_set_pHYs(png_ptr, info_ptr, res_x, res_y, unit_type);
  1328. }
  1329. #endif
  1330. #if defined(PNG_READ_oFFs_SUPPORTED)
  1331. void /* PRIVATE */
  1332. png_handle_oFFs(png_structp png_ptr, png_infop info_ptr, png_uint_32 length)
  1333. {
  1334.    png_byte buf[9];
  1335.    png_int_32 offset_x, offset_y;
  1336.    int unit_type;
  1337.    png_debug(1, "in png_handle_oFFsn");
  1338.    if (!(png_ptr->mode & PNG_HAVE_IHDR))
  1339.       png_error(png_ptr, "Missing IHDR before oFFs");
  1340.    else if (png_ptr->mode & PNG_HAVE_IDAT)
  1341.    {
  1342.       png_warning(png_ptr, "Invalid oFFs after IDAT");
  1343.       png_crc_finish(png_ptr, length);
  1344.       return;
  1345.    }
  1346.    else if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_oFFs))
  1347.    {
  1348.       png_warning(png_ptr, "Duplicate oFFs chunk");
  1349.       png_crc_finish(png_ptr, length);
  1350.       return;
  1351.    }
  1352.    if (length != 9)
  1353.    {
  1354.       png_warning(png_ptr, "Incorrect oFFs chunk length");
  1355.       png_crc_finish(png_ptr, length);
  1356.       return;
  1357.    }
  1358.    png_crc_read(png_ptr, buf, 9);
  1359.    if (png_crc_finish(png_ptr, 0))
  1360.       return;
  1361.    offset_x = png_get_int_32(buf);
  1362.    offset_y = png_get_int_32(buf + 4);
  1363.    unit_type = buf[8];
  1364.    png_set_oFFs(png_ptr, info_ptr, offset_x, offset_y, unit_type);
  1365. }
  1366. #endif
  1367. #if defined(PNG_READ_pCAL_SUPPORTED)
  1368. /* read the pCAL chunk (described in the PNG Extensions document) */
  1369. void /* PRIVATE */
  1370. png_handle_pCAL(png_structp png_ptr, png_infop info_ptr, png_uint_32 length)
  1371. {
  1372.    png_charp purpose;
  1373.    png_int_32 X0, X1;
  1374.    png_byte type, nparams;
  1375.    png_charp buf, units, endptr;
  1376.    png_charpp params;
  1377.    png_size_t slength;
  1378.    int i;
  1379.    png_debug(1, "in png_handle_pCALn");
  1380.    if (!(png_ptr->mode & PNG_HAVE_IHDR))
  1381.       png_error(png_ptr, "Missing IHDR before pCAL");
  1382.    else if (png_ptr->mode & PNG_HAVE_IDAT)
  1383.    {
  1384.       png_warning(png_ptr, "Invalid pCAL after IDAT");
  1385.       png_crc_finish(png_ptr, length);
  1386.       return;
  1387.    }
  1388.    else if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_pCAL))
  1389.    {
  1390.       png_warning(png_ptr, "Duplicate pCAL chunk");
  1391.       png_crc_finish(png_ptr, length);
  1392.       return;
  1393.    }
  1394.    png_debug1(2, "Allocating and reading pCAL chunk data (%lu bytes)n",
  1395.       length + 1);
  1396.    purpose = (png_charp)png_malloc_warn(png_ptr, length + 1);
  1397.    if (purpose == NULL)
  1398.      {
  1399.        png_warning(png_ptr, "No memory for pCAL purpose.");
  1400.        return;
  1401.      }
  1402.    slength = (png_size_t)length;
  1403.    png_crc_read(png_ptr, (png_bytep)purpose, slength);
  1404.    if (png_crc_finish(png_ptr, 0))
  1405.    {
  1406.       png_free(png_ptr, purpose);
  1407.       return;
  1408.    }
  1409.    purpose[slength] = 0x00; /* null terminate the last string */
  1410.    png_debug(3, "Finding end of pCAL purpose stringn");
  1411.    for (buf = purpose; *buf; buf++)
  1412.       /* empty loop */ ;
  1413.    endptr = purpose + slength;
  1414.    /* We need to have at least 12 bytes after the purpose string
  1415.       in order to get the parameter information. */
  1416.    if (endptr <= buf + 12)
  1417.    {
  1418.       png_warning(png_ptr, "Invalid pCAL data");
  1419.       png_free(png_ptr, purpose);
  1420.       return;
  1421.    }
  1422.    png_debug(3, "Reading pCAL X0, X1, type, nparams, and unitsn");
  1423.    X0 = png_get_int_32((png_bytep)buf+1);
  1424.    X1 = png_get_int_32((png_bytep)buf+5);
  1425.    type = buf[9];
  1426.    nparams = buf[10];
  1427.    units = buf + 11;
  1428.    png_debug(3, "Checking pCAL equation type and number of parametersn");
  1429.    /* Check that we have the right number of parameters for known
  1430.       equation types. */
  1431.    if ((type == PNG_EQUATION_LINEAR && nparams != 2) ||
  1432.        (type == PNG_EQUATION_BASE_E && nparams != 3) ||
  1433.        (type == PNG_EQUATION_ARBITRARY && nparams != 3) ||
  1434.        (type == PNG_EQUATION_HYPERBOLIC && nparams != 4))
  1435.    {
  1436.       png_warning(png_ptr, "Invalid pCAL parameters for equation type");
  1437.       png_free(png_ptr, purpose);
  1438.       return;
  1439.    }
  1440.    else if (type >= PNG_EQUATION_LAST)
  1441.    {
  1442.       png_warning(png_ptr, "Unrecognized equation type for pCAL chunk");
  1443.    }
  1444.    for (buf = units; *buf; buf++)
  1445.       /* Empty loop to move past the units string. */ ;
  1446.    png_debug(3, "Allocating pCAL parameters arrayn");
  1447.    params = (png_charpp)png_malloc_warn(png_ptr, (png_uint_32)(nparams
  1448.       *png_sizeof(png_charp))) ;
  1449.    if (params == NULL)
  1450.      {
  1451.        png_free(png_ptr, purpose);
  1452.        png_warning(png_ptr, "No memory for pCAL params.");
  1453.        return;
  1454.      }
  1455.    /* Get pointers to the start of each parameter string. */
  1456.    for (i = 0; i < (int)nparams; i++)
  1457.    {
  1458.       buf++; /* Skip the null string terminator from previous parameter. */
  1459.       png_debug1(3, "Reading pCAL parameter %dn", i);
  1460.       for (params[i] = buf; *buf != 0x00 && buf <= endptr; buf++)
  1461.          /* Empty loop to move past each parameter string */ ;
  1462.       /* Make sure we haven't run out of data yet */
  1463.       if (buf > endptr)
  1464.       {
  1465.          png_warning(png_ptr, "Invalid pCAL data");
  1466.          png_free(png_ptr, purpose);
  1467.          png_free(png_ptr, params);
  1468.          return;
  1469.       }
  1470.    }
  1471.    png_set_pCAL(png_ptr, info_ptr, purpose, X0, X1, type, nparams,
  1472.       units, params);
  1473.    png_free(png_ptr, purpose);
  1474.    png_free(png_ptr, params);
  1475. }
  1476. #endif
  1477. #if defined(PNG_READ_sCAL_SUPPORTED)
  1478. /* read the sCAL chunk */
  1479. void /* PRIVATE */
  1480. png_handle_sCAL(png_structp png_ptr, png_infop info_ptr, png_uint_32 length)
  1481. {
  1482.    png_charp buffer, ep;
  1483. #ifdef PNG_FLOATING_POINT_SUPPORTED
  1484.    double width, height;
  1485.    png_charp vp;
  1486. #else
  1487. #ifdef PNG_FIXED_POINT_SUPPORTED
  1488.    png_charp swidth, sheight;
  1489. #endif
  1490. #endif
  1491.    png_size_t slength;
  1492.    png_debug(1, "in png_handle_sCALn");
  1493.    if (!(png_ptr->mode & PNG_HAVE_IHDR))
  1494.       png_error(png_ptr, "Missing IHDR before sCAL");
  1495.    else if (png_ptr->mode & PNG_HAVE_IDAT)
  1496.    {
  1497.       png_warning(png_ptr, "Invalid sCAL after IDAT");
  1498.       png_crc_finish(png_ptr, length);
  1499.       return;
  1500.    }
  1501.    else if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_sCAL))
  1502.    {
  1503.       png_warning(png_ptr, "Duplicate sCAL chunk");
  1504.       png_crc_finish(png_ptr, length);
  1505.       return;
  1506.    }
  1507.    png_debug1(2, "Allocating and reading sCAL chunk data (%lu bytes)n",
  1508.       length + 1);
  1509.    buffer = (png_charp)png_malloc_warn(png_ptr, length + 1);
  1510.    if (buffer == NULL)
  1511.      {
  1512.        png_warning(png_ptr, "Out of memory while processing sCAL chunk");
  1513.        return;
  1514.      }
  1515.    slength = (png_size_t)length;
  1516.    png_crc_read(png_ptr, (png_bytep)buffer, slength);
  1517.    if (png_crc_finish(png_ptr, 0))
  1518.    {
  1519.       png_free(png_ptr, buffer);
  1520.       return;
  1521.    }
  1522.    buffer[slength] = 0x00; /* null terminate the last string */
  1523.    ep = buffer + 1;        /* skip unit byte */
  1524. #ifdef PNG_FLOATING_POINT_SUPPORTED
  1525.    width = png_strtod(png_ptr, ep, &vp);
  1526.    if (*vp)
  1527.    {
  1528.        png_warning(png_ptr, "malformed width string in sCAL chunk");
  1529.        return;
  1530.    }
  1531. #else
  1532. #ifdef PNG_FIXED_POINT_SUPPORTED
  1533.    swidth = (png_charp)png_malloc_warn(png_ptr, png_strlen(ep) + 1);
  1534.    if (swidth == NULL)
  1535.      {
  1536.        png_warning(png_ptr, "Out of memory while processing sCAL chunk width");
  1537.        return;
  1538.      }
  1539.    png_memcpy(swidth, ep, (png_size_t)png_strlen(ep));
  1540. #endif
  1541. #endif
  1542.    for (ep = buffer; *ep; ep++)
  1543.       /* empty loop */ ;
  1544.    ep++;
  1545. #ifdef PNG_FLOATING_POINT_SUPPORTED
  1546.    height = png_strtod(png_ptr, ep, &vp);
  1547.    if (*vp)
  1548.    {
  1549.        png_warning(png_ptr, "malformed height string in sCAL chunk");
  1550.        return;
  1551.    }
  1552. #else
  1553. #ifdef PNG_FIXED_POINT_SUPPORTED
  1554.    sheight = (png_charp)png_malloc_warn(png_ptr, png_strlen(ep) + 1);
  1555.    if (swidth == NULL)
  1556.      {
  1557.        png_warning(png_ptr, "Out of memory while processing sCAL chunk height");
  1558.        return;
  1559.      }
  1560.    png_memcpy(sheight, ep, (png_size_t)png_strlen(ep));
  1561. #endif
  1562. #endif
  1563.    if (buffer + slength < ep
  1564. #ifdef PNG_FLOATING_POINT_SUPPORTED
  1565.       || width <= 0. || height <= 0.
  1566. #endif
  1567.       )
  1568.    {
  1569.       png_warning(png_ptr, "Invalid sCAL data");
  1570.       png_free(png_ptr, buffer);
  1571. #if defined(PNG_FIXED_POINT_SUPPORTED) && !defined(PNG_FLOATING_POINT_SUPPORTED)
  1572.       png_free(png_ptr, swidth);
  1573.       png_free(png_ptr, sheight);
  1574. #endif
  1575.       return;
  1576.    }
  1577. #ifdef PNG_FLOATING_POINT_SUPPORTED
  1578.    png_set_sCAL(png_ptr, info_ptr, buffer[0], width, height);
  1579. #else
  1580. #ifdef PNG_FIXED_POINT_SUPPORTED
  1581.    png_set_sCAL_s(png_ptr, info_ptr, buffer[0], swidth, sheight);
  1582. #endif
  1583. #endif
  1584.    png_free(png_ptr, buffer);
  1585. #if defined(PNG_FIXED_POINT_SUPPORTED) && !defined(PNG_FLOATING_POINT_SUPPORTED)
  1586.    png_free(png_ptr, swidth);
  1587.    png_free(png_ptr, sheight);
  1588. #endif
  1589. }
  1590. #endif
  1591. #if defined(PNG_READ_tIME_SUPPORTED)
  1592. void /* PRIVATE */
  1593. png_handle_tIME(png_structp png_ptr, png_infop info_ptr, png_uint_32 length)
  1594. {
  1595.    png_byte buf[7];
  1596.    png_time mod_time;
  1597.    png_debug(1, "in png_handle_tIMEn");
  1598.    if (!(png_ptr->mode & PNG_HAVE_IHDR))
  1599.       png_error(png_ptr, "Out of place tIME chunk");
  1600.    else if (info_ptr != NULL && (info_ptr->valid & PNG_INFO_tIME))
  1601.    {
  1602.       png_warning(png_ptr, "Duplicate tIME chunk");
  1603.       png_crc_finish(png_ptr, length);
  1604.       return;
  1605.    }
  1606.    if (png_ptr->mode & PNG_HAVE_IDAT)
  1607.       png_ptr->mode |= PNG_AFTER_IDAT;
  1608.    if (length != 7)
  1609.    {
  1610.       png_warning(png_ptr, "Incorrect tIME chunk length");
  1611.       png_crc_finish(png_ptr, length);
  1612.       return;
  1613.    }
  1614.    png_crc_read(png_ptr, buf, 7);
  1615.    if (png_crc_finish(png_ptr, 0))
  1616.       return;
  1617.    mod_time.second = buf[6];
  1618.    mod_time.minute = buf[5];
  1619.    mod_time.hour = buf[4];
  1620.    mod_time.day = buf[3];
  1621.    mod_time.month = buf[2];
  1622.    mod_time.year = png_get_uint_16(buf);
  1623.    png_set_tIME(png_ptr, info_ptr, &mod_time);
  1624. }
  1625. #endif
  1626. #if defined(PNG_READ_tEXt_SUPPORTED)
  1627. /* Note: this does not properly handle chunks that are > 64K under DOS */
  1628. void /* PRIVATE */
  1629. png_handle_tEXt(png_structp png_ptr, png_infop info_ptr, png_uint_32 length)
  1630. {
  1631.    png_textp text_ptr;
  1632.    png_charp key;
  1633.    png_charp text;
  1634.    png_uint_32 skip = 0;
  1635.    png_size_t slength;
  1636.    int ret;
  1637.    png_debug(1, "in png_handle_tEXtn");
  1638.    if (!(png_ptr->mode & PNG_HAVE_IHDR))
  1639.       png_error(png_ptr, "Missing IHDR before tEXt");
  1640.    if (png_ptr->mode & PNG_HAVE_IDAT)
  1641.       png_ptr->mode |= PNG_AFTER_IDAT;
  1642. #ifdef PNG_MAX_MALLOC_64K
  1643.    if (length > (png_uint_32)65535L)
  1644.    {
  1645.       png_warning(png_ptr, "tEXt chunk too large to fit in memory");
  1646.       skip = length - (png_uint_32)65535L;
  1647.       length = (png_uint_32)65535L;
  1648.    }
  1649. #endif
  1650.    key = (png_charp)png_malloc_warn(png_ptr, length + 1);
  1651.    if (key == NULL)
  1652.    {
  1653.      png_warning(png_ptr, "No memory to process text chunk.");
  1654.      return;
  1655.    }
  1656.    slength = (png_size_t)length;
  1657.    png_crc_read(png_ptr, (png_bytep)key, slength);
  1658.    if (png_crc_finish(png_ptr, skip))
  1659.    {
  1660.       png_free(png_ptr, key);
  1661.       return;
  1662.    }
  1663.    key[slength] = 0x00;
  1664.    for (text = key; *text; text++)
  1665.       /* empty loop to find end of key */ ;
  1666.    if (text != key + slength)
  1667.       text++;
  1668.    text_ptr = (png_textp)png_malloc_warn(png_ptr,
  1669.       (png_uint_32)png_sizeof(png_text));
  1670.    if (text_ptr == NULL)
  1671.    {
  1672.      png_warning(png_ptr, "Not enough memory to process text chunk.");
  1673.      png_free(png_ptr, key);
  1674.      return;
  1675.    }
  1676.    text_ptr->compression = PNG_TEXT_COMPRESSION_NONE;
  1677.    text_ptr->key = key;
  1678. #ifdef PNG_iTXt_SUPPORTED
  1679.    text_ptr->lang = NULL;
  1680.    text_ptr->lang_key = NULL;
  1681.    text_ptr->itxt_length = 0;
  1682. #endif
  1683.    text_ptr->text = text;
  1684.    text_ptr->text_length = png_strlen(text);
  1685.    ret=png_set_text_2(png_ptr, info_ptr, text_ptr, 1);
  1686.    png_free(png_ptr, key);
  1687.    png_free(png_ptr, text_ptr);
  1688.    if (ret)
  1689.      png_warning(png_ptr, "Insufficient memory to process text chunk.");
  1690. }
  1691. #endif
  1692. #if defined(PNG_READ_zTXt_SUPPORTED)
  1693. /* note: this does not correctly handle chunks that are > 64K under DOS */
  1694. void /* PRIVATE */
  1695. png_handle_zTXt(png_structp png_ptr, png_infop info_ptr, png_uint_32 length)
  1696. {
  1697.    png_textp text_ptr;
  1698.    png_charp chunkdata;
  1699.    png_charp text;
  1700.    int comp_type;
  1701.    int ret;
  1702.    png_size_t slength, prefix_len, data_len;
  1703.    png_debug(1, "in png_handle_zTXtn");
  1704.    if (!(png_ptr->mode & PNG_HAVE_IHDR))
  1705.       png_error(png_ptr, "Missing IHDR before zTXt");
  1706.    if (png_ptr->mode & PNG_HAVE_IDAT)
  1707.       png_ptr->mode |= PNG_AFTER_IDAT;
  1708. #ifdef PNG_MAX_MALLOC_64K
  1709.    /* We will no doubt have problems with chunks even half this size, but
  1710.       there is no hard and fast rule to tell us where to stop. */
  1711.    if (length > (png_uint_32)65535L)
  1712.    {
  1713.      png_warning(png_ptr,"zTXt chunk too large to fit in memory");
  1714.      png_crc_finish(png_ptr, length);
  1715.      return;
  1716.    }
  1717. #endif
  1718.    chunkdata = (png_charp)png_malloc_warn(png_ptr, length + 1);
  1719.    if (chunkdata == NULL)
  1720.    {
  1721.      png_warning(png_ptr,"Out of memory processing zTXt chunk.");
  1722.      return;
  1723.    }
  1724.    slength = (png_size_t)length;
  1725.    png_crc_read(png_ptr, (png_bytep)chunkdata, slength);
  1726.    if (png_crc_finish(png_ptr, 0))
  1727.    {
  1728.       png_free(png_ptr, chunkdata);
  1729.       return;
  1730.    }
  1731.    chunkdata[slength] = 0x00;
  1732.    for (text = chunkdata; *text; text++)
  1733.       /* empty loop */ ;
  1734.    /* zTXt must have some text after the chunkdataword */
  1735.    if (text == chunkdata + slength)
  1736.    {
  1737.       comp_type = PNG_TEXT_COMPRESSION_NONE;
  1738.       png_warning(png_ptr, "Zero length zTXt chunk");
  1739.    }
  1740.    else
  1741.    {
  1742.        comp_type = *(++text);
  1743.        if (comp_type != PNG_TEXT_COMPRESSION_zTXt)
  1744.        {
  1745.           png_warning(png_ptr, "Unknown compression type in zTXt chunk");
  1746.           comp_type = PNG_TEXT_COMPRESSION_zTXt;
  1747.        }
  1748.        text++;        /* skip the compression_method byte */
  1749.    }
  1750.    prefix_len = text - chunkdata;
  1751.    chunkdata = (png_charp)png_decompress_chunk(png_ptr, comp_type, chunkdata,
  1752.                                     (png_size_t)length, prefix_len, &data_len);
  1753.    text_ptr = (png_textp)png_malloc_warn(png_ptr,
  1754.      (png_uint_32)png_sizeof(png_text));
  1755.    if (text_ptr == NULL)
  1756.    {
  1757.      png_warning(png_ptr,"Not enough memory to process zTXt chunk.");
  1758.      png_free(png_ptr, chunkdata);
  1759.      return;
  1760.    }
  1761.    text_ptr->compression = comp_type;
  1762.    text_ptr->key = chunkdata;
  1763. #ifdef PNG_iTXt_SUPPORTED
  1764.    text_ptr->lang = NULL;
  1765.    text_ptr->lang_key = NULL;
  1766.    text_ptr->itxt_length = 0;
  1767. #endif
  1768.    text_ptr->text = chunkdata + prefix_len;
  1769.    text_ptr->text_length = data_len;
  1770.    ret=png_set_text_2(png_ptr, info_ptr, text_ptr, 1);
  1771.    png_free(png_ptr, text_ptr);
  1772.    png_free(png_ptr, chunkdata);
  1773.    if (ret)
  1774.      png_error(png_ptr, "Insufficient memory to store zTXt chunk.");
  1775. }
  1776. #endif
  1777. #if defined(PNG_READ_iTXt_SUPPORTED)
  1778. /* note: this does not correctly handle chunks that are > 64K under DOS */
  1779. void /* PRIVATE */
  1780. png_handle_iTXt(png_structp png_ptr, png_infop info_ptr, png_uint_32 length)
  1781. {
  1782.    png_textp text_ptr;
  1783.    png_charp chunkdata;
  1784.    png_charp key, lang, text, lang_key;
  1785.    int comp_flag;
  1786.    int comp_type = 0;
  1787.    int ret;
  1788.    png_size_t slength, prefix_len, data_len;
  1789.    png_debug(1, "in png_handle_iTXtn");
  1790.    if (!(png_ptr->mode & PNG_HAVE_IHDR))
  1791.       png_error(png_ptr, "Missing IHDR before iTXt");
  1792.    if (png_ptr->mode & PNG_HAVE_IDAT)
  1793.       png_ptr->mode |= PNG_AFTER_IDAT;
  1794. #ifdef PNG_MAX_MALLOC_64K
  1795.    /* We will no doubt have problems with chunks even half this size, but
  1796.       there is no hard and fast rule to tell us where to stop. */
  1797.    if (length > (png_uint_32)65535L)
  1798.    {
  1799.      png_warning(png_ptr,"iTXt chunk too large to fit in memory");
  1800.      png_crc_finish(png_ptr, length);
  1801.      return;
  1802.    }
  1803. #endif
  1804.    chunkdata = (png_charp)png_malloc_warn(png_ptr, length + 1);
  1805.    if (chunkdata == NULL)
  1806.    {
  1807.      png_warning(png_ptr, "No memory to process iTXt chunk.");
  1808.      return;
  1809.    }
  1810.    slength = (png_size_t)length;
  1811.    png_crc_read(png_ptr, (png_bytep)chunkdata, slength);
  1812.    if (png_crc_finish(png_ptr, 0))
  1813.    {
  1814.       png_free(png_ptr, chunkdata);
  1815.       return;
  1816.    }
  1817.    chunkdata[slength] = 0x00;
  1818.    for (lang = chunkdata; *lang; lang++)
  1819.       /* empty loop */ ;
  1820.    lang++;        /* skip NUL separator */
  1821.    /* iTXt must have a language tag (possibly empty), two compression bytes,
  1822.       translated keyword (possibly empty), and possibly some text after the
  1823.       keyword */
  1824.    if (lang >= chunkdata + slength)
  1825.    {
  1826.       comp_flag = PNG_TEXT_COMPRESSION_NONE;
  1827.       png_warning(png_ptr, "Zero length iTXt chunk");
  1828.    }
  1829.    else
  1830.    {
  1831.        comp_flag = *lang++;
  1832.        comp_type = *lang++;
  1833.    }
  1834.    for (lang_key = lang; *lang_key; lang_key++)
  1835.       /* empty loop */ ;
  1836.    lang_key++;        /* skip NUL separator */
  1837.    for (text = lang_key; *text; text++)
  1838.       /* empty loop */ ;
  1839.    text++;        /* skip NUL separator */
  1840.    prefix_len = text - chunkdata;
  1841.    key=chunkdata;
  1842.    if (comp_flag)
  1843.        chunkdata = png_decompress_chunk(png_ptr, comp_type, chunkdata,
  1844.           (size_t)length, prefix_len, &data_len);
  1845.    else
  1846.        data_len=png_strlen(chunkdata + prefix_len);
  1847.    text_ptr = (png_textp)png_malloc_warn(png_ptr,
  1848.       (png_uint_32)png_sizeof(png_text));
  1849.    if (text_ptr == NULL)
  1850.    {
  1851.      png_warning(png_ptr,"Not enough memory to process iTXt chunk.");
  1852.      png_free(png_ptr, chunkdata);
  1853.      return;
  1854.    }
  1855.    text_ptr->compression = (int)comp_flag + 1;
  1856.    text_ptr->lang_key = chunkdata+(lang_key-key);
  1857.    text_ptr->lang = chunkdata+(lang-key);
  1858.    text_ptr->itxt_length = data_len;
  1859.    text_ptr->text_length = 0;
  1860.    text_ptr->key = chunkdata;
  1861.    text_ptr->text = chunkdata + prefix_len;
  1862.    ret=png_set_text_2(png_ptr, info_ptr, text_ptr, 1);
  1863.    png_free(png_ptr, text_ptr);
  1864.    png_free(png_ptr, chunkdata);
  1865.    if (ret)
  1866.      png_error(png_ptr, "Insufficient memory to store iTXt chunk.");
  1867. }
  1868. #endif
  1869. /* This function is called when we haven't found a handler for a
  1870.    chunk.  If there isn't a problem with the chunk itself (ie bad
  1871.    chunk name, CRC, or a critical chunk), the chunk is silently ignored
  1872.    -- unless the PNG_FLAG_UNKNOWN_CHUNKS_SUPPORTED flag is on in which
  1873.    case it will be saved away to be written out later. */
  1874. void /* PRIVATE */
  1875. png_handle_unknown(png_structp png_ptr, png_infop info_ptr, png_uint_32 length)
  1876. {
  1877.    png_uint_32 skip = 0;
  1878.    png_debug(1, "in png_handle_unknownn");
  1879.    if (png_ptr->mode & PNG_HAVE_IDAT)
  1880.    {
  1881. #ifdef PNG_USE_LOCAL_ARRAYS
  1882.       PNG_IDAT;
  1883. #endif
  1884.       if (png_memcmp(png_ptr->chunk_name, png_IDAT, 4))  /* not an IDAT */
  1885.          png_ptr->mode |= PNG_AFTER_IDAT;
  1886.    }
  1887.    png_check_chunk_name(png_ptr, png_ptr->chunk_name);
  1888.    if (!(png_ptr->chunk_name[0] & 0x20))
  1889.    {
  1890. #if defined(PNG_READ_UNKNOWN_CHUNKS_SUPPORTED)
  1891.       if(png_handle_as_unknown(png_ptr, png_ptr->chunk_name) !=
  1892.            PNG_HANDLE_CHUNK_ALWAYS
  1893. #if defined(PNG_READ_USER_CHUNKS_SUPPORTED)
  1894.            && png_ptr->read_user_chunk_fn == NULL
  1895. #endif
  1896.         )
  1897. #endif
  1898.           png_chunk_error(png_ptr, "unknown critical chunk");
  1899.    }
  1900. #if defined(PNG_READ_UNKNOWN_CHUNKS_SUPPORTED)
  1901.    if ((png_ptr->flags & PNG_FLAG_KEEP_UNKNOWN_CHUNKS) ||
  1902.        (png_ptr->read_user_chunk_fn != NULL))
  1903.    {
  1904.        png_unknown_chunk chunk;
  1905. #ifdef PNG_MAX_MALLOC_64K
  1906.        if (length > (png_uint_32)65535L)
  1907.        {
  1908.            png_warning(png_ptr, "unknown chunk too large to fit in memory");
  1909.            skip = length - (png_uint_32)65535L;
  1910.            length = (png_uint_32)65535L;
  1911.        }
  1912. #endif
  1913.        png_strcpy((png_charp)chunk.name, (png_charp)png_ptr->chunk_name);
  1914.        chunk.data = (png_bytep)png_malloc(png_ptr, length);
  1915.        chunk.size = (png_size_t)length;
  1916.        png_crc_read(png_ptr, (png_bytep)chunk.data, length);
  1917. #if defined(PNG_READ_USER_CHUNKS_SUPPORTED)
  1918.        if(png_ptr->read_user_chunk_fn != NULL)
  1919.        {
  1920.           /* callback to user unknown chunk handler */
  1921.           if ((*(png_ptr->read_user_chunk_fn)) (png_ptr, &chunk) <= 0)
  1922.           {
  1923.              if (!(png_ptr->chunk_name[0] & 0x20))
  1924.                 if(png_handle_as_unknown(png_ptr, png_ptr->chunk_name) !=
  1925.                      PNG_HANDLE_CHUNK_ALWAYS)
  1926.                  {
  1927.                    png_free(png_ptr, chunk.data);
  1928.                    png_chunk_error(png_ptr, "unknown critical chunk");
  1929.                  }
  1930.              png_set_unknown_chunks(png_ptr, info_ptr, &chunk, 1);
  1931.           }
  1932.        }
  1933.        else
  1934. #endif
  1935.           png_set_unknown_chunks(png_ptr, info_ptr, &chunk, 1);
  1936.        png_free(png_ptr, chunk.data);
  1937.    }
  1938.    else
  1939. #endif
  1940.       skip = length;
  1941.    png_crc_finish(png_ptr, skip);
  1942. #if !defined(PNG_READ_USER_CHUNKS_SUPPORTED)
  1943.    if (&info_ptr == NULL) /* quiet compiler warnings about unused info_ptr */
  1944.       return;
  1945. #endif
  1946. }
  1947. /* This function is called to verify that a chunk name is valid.
  1948.    This function can't have the "critical chunk check" incorporated
  1949.    into it, since in the future we will need to be able to call user
  1950.    functions to handle unknown critical chunks after we check that
  1951.    the chunk name itself is valid. */
  1952. #define isnonalpha(c) ((c) < 65 || (c) > 122 || ((c) > 90 && (c) < 97))
  1953. void /* PRIVATE */
  1954. png_check_chunk_name(png_structp png_ptr, png_bytep chunk_name)
  1955. {
  1956.    png_debug(1, "in png_check_chunk_namen");
  1957.    if (isnonalpha(chunk_name[0]) || isnonalpha(chunk_name[1]) ||
  1958.        isnonalpha(chunk_name[2]) || isnonalpha(chunk_name[3]))
  1959.    {
  1960.       png_chunk_error(png_ptr, "invalid chunk type");
  1961.    }
  1962. }
  1963. /* Combines the row recently read in with the existing pixels in the
  1964.    row.  This routine takes care of alpha and transparency if requested.
  1965.    This routine also handles the two methods of progressive display
  1966.    of interlaced images, depending on the mask value.
  1967.    The mask value describes which pixels are to be combined with
  1968.    the row.  The pattern always repeats every 8 pixels, so just 8
  1969.    bits are needed.  A one indicates the pixel is to be combined,
  1970.    a zero indicates the pixel is to be skipped.  This is in addition
  1971.    to any alpha or transparency value associated with the pixel.  If
  1972.    you want all pixels to be combined, pass 0xff (255) in mask.  */
  1973. #ifndef PNG_HAVE_MMX_COMBINE_ROW
  1974. void /* PRIVATE */
  1975. png_combine_row(png_structp png_ptr, png_bytep row, int mask)
  1976. {
  1977.    png_debug(1,"in png_combine_rown");
  1978.    if (mask == 0xff)
  1979.    {
  1980.       png_memcpy(row, png_ptr->row_buf + 1,
  1981.          PNG_ROWBYTES(png_ptr->row_info.pixel_depth, png_ptr->width));
  1982.    }
  1983.    else
  1984.    {
  1985.       switch (png_ptr->row_info.pixel_depth)
  1986.       {
  1987.          case 1:
  1988.          {
  1989.             png_bytep sp = png_ptr->row_buf + 1;
  1990.             png_bytep dp = row;
  1991.             int s_inc, s_start, s_end;
  1992.             int m = 0x80;
  1993.             int shift;
  1994.             png_uint_32 i;
  1995.             png_uint_32 row_width = png_ptr->width;
  1996. #if defined(PNG_READ_PACKSWAP_SUPPORTED)
  1997.             if (png_ptr->transformations & PNG_PACKSWAP)
  1998.             {
  1999.                 s_start = 0;
  2000.                 s_end = 7;
  2001.                 s_inc = 1;
  2002.             }
  2003.             else
  2004. #endif
  2005.             {
  2006.                 s_start = 7;
  2007.                 s_end = 0;
  2008.                 s_inc = -1;
  2009.             }
  2010.             shift = s_start;
  2011.             for (i = 0; i < row_width; i++)
  2012.             {
  2013.                if (m & mask)
  2014.                {
  2015.                   int value;
  2016.                   value = (*sp >> shift) & 0x01;
  2017.                   *dp &= (png_byte)((0x7f7f >> (7 - shift)) & 0xff);
  2018.                   *dp |= (png_byte)(value << shift);
  2019.                }
  2020.                if (shift == s_end)
  2021.                {
  2022.                   shift = s_start;
  2023.                   sp++;
  2024.                   dp++;
  2025.                }
  2026.                else
  2027.                   shift += s_inc;
  2028.                if (m == 1)
  2029.                   m = 0x80;
  2030.                else
  2031.                   m >>= 1;
  2032.             }
  2033.             break;
  2034.          }
  2035.          case 2:
  2036.          {
  2037.             png_bytep sp = png_ptr->row_buf + 1;
  2038.             png_bytep dp = row;
  2039.             int s_start, s_end, s_inc;
  2040.             int m = 0x80;
  2041.             int shift;
  2042.             png_uint_32 i;
  2043.             png_uint_32 row_width = png_ptr->width;
  2044.             int value;
  2045. #if defined(PNG_READ_PACKSWAP_SUPPORTED)
  2046.             if (png_ptr->transformations & PNG_PACKSWAP)
  2047.             {
  2048.                s_start = 0;
  2049.                s_end = 6;
  2050.                s_inc = 2;
  2051.             }
  2052.             else
  2053. #endif
  2054.             {
  2055.                s_start = 6;
  2056.                s_end = 0;
  2057.                s_inc = -2;
  2058.             }
  2059.             shift = s_start;
  2060.             for (i = 0; i < row_width; i++)
  2061.             {
  2062.                if (m & mask)
  2063.                {
  2064.                   value = (*sp >> shift) & 0x03;
  2065.                   *dp &= (png_byte)((0x3f3f >> (6 - shift)) & 0xff);
  2066.                   *dp |= (png_byte)(value << shift);
  2067.                }
  2068.                if (shift == s_end)
  2069.                {
  2070.                   shift = s_start;
  2071.                   sp++;
  2072.                   dp++;
  2073.                }
  2074.                else
  2075.                   shift += s_inc;
  2076.                if (m == 1)
  2077.                   m = 0x80;
  2078.                else
  2079.                   m >>= 1;
  2080.             }
  2081.             break;
  2082.          }
  2083.          case 4:
  2084.          {
  2085.             png_bytep sp = png_ptr->row_buf + 1;
  2086.             png_bytep dp = row;
  2087.             int s_start, s_end, s_inc;
  2088.             int m = 0x80;
  2089.             int shift;
  2090.             png_uint_32 i;
  2091.             png_uint_32 row_width = png_ptr->width;
  2092.             int value;
  2093. #if defined(PNG_READ_PACKSWAP_SUPPORTED)
  2094.             if (png_ptr->transformations & PNG_PACKSWAP)
  2095.             {
  2096.                s_start = 0;
  2097.                s_end = 4;
  2098.                s_inc = 4;
  2099.             }
  2100.             else
  2101. #endif
  2102.             {
  2103.                s_start = 4;
  2104.                s_end = 0;
  2105.                s_inc = -4;
  2106.             }
  2107.             shift = s_start;
  2108.             for (i = 0; i < row_width; i++)
  2109.             {
  2110.                if (m & mask)
  2111.                {
  2112.                   value = (*sp >> shift) & 0xf;
  2113.                   *dp &= (png_byte)((0xf0f >> (4 - shift)) & 0xff);
  2114.                   *dp |= (png_byte)(value << shift);
  2115.                }
  2116.                if (shift == s_end)
  2117.                {
  2118.                   shift = s_start;
  2119.                   sp++;
  2120.                   dp++;
  2121.                }
  2122.                else
  2123.                   shift += s_inc;
  2124.                if (m == 1)
  2125.                   m = 0x80;
  2126.                else
  2127.                   m >>= 1;
  2128.             }
  2129.             break;
  2130.          }
  2131.          default:
  2132.          {
  2133.             png_bytep sp = png_ptr->row_buf + 1;
  2134.             png_bytep dp = row;
  2135.             png_size_t pixel_bytes = (png_ptr->row_info.pixel_depth >> 3);
  2136.             png_uint_32 i;
  2137.             png_uint_32 row_width = png_ptr->width;
  2138.             png_byte m = 0x80;
  2139.             for (i = 0; i < row_width; i++)
  2140.             {
  2141.                if (m & mask)
  2142.                {
  2143.                   png_memcpy(dp, sp, pixel_bytes);
  2144.                }
  2145.                sp += pixel_bytes;
  2146.                dp += pixel_bytes;
  2147.                if (m == 1)
  2148.                   m = 0x80;
  2149.                else
  2150.                   m >>= 1;
  2151.             }
  2152.             break;
  2153.          }
  2154.       }
  2155.    }
  2156. }
  2157. #endif /* !PNG_HAVE_MMX_COMBINE_ROW */
  2158. #ifdef PNG_READ_INTERLACING_SUPPORTED
  2159. #ifndef PNG_HAVE_MMX_READ_INTERLACE   /* else in pngvcrd.c, pnggccrd.c */
  2160. /* OLD pre-1.0.9 interface:
  2161. void png_do_read_interlace(png_row_infop row_info, png_bytep row, int pass,
  2162.    png_uint_32 transformations)
  2163.  */
  2164. void /* PRIVATE */
  2165. png_do_read_interlace(png_structp png_ptr)
  2166. {
  2167.    png_row_infop row_info = &(png_ptr->row_info);
  2168.    png_bytep row = png_ptr->row_buf + 1;
  2169.    int pass = png_ptr->pass;
  2170.    png_uint_32 transformations = png_ptr->transformations;
  2171. #ifdef PNG_USE_LOCAL_ARRAYS
  2172.    /* arrays to facilitate easy interlacing - use pass (0 - 6) as index */
  2173.    /* offset to next interlace block */
  2174.    const int png_pass_inc[7] = {8, 8, 4, 4, 2, 2, 1};
  2175. #endif
  2176.    png_debug(1,"in png_do_read_interlace (stock C version)n");
  2177.    if (row != NULL && row_info != NULL)
  2178.    {
  2179.       png_uint_32 final_width;
  2180.       final_width = row_info->width * png_pass_inc[pass];
  2181.       switch (row_info->pixel_depth)
  2182.       {
  2183.          case 1:
  2184.          {
  2185.             png_bytep sp = row + (png_size_t)((row_info->width - 1) >> 3);
  2186.             png_bytep dp = row + (png_size_t)((final_width - 1) >> 3);
  2187.             int sshift, dshift;
  2188.             int s_start, s_end, s_inc;
  2189.             int jstop = png_pass_inc[pass];
  2190.             png_byte v;
  2191.             png_uint_32 i;
  2192.             int j;
  2193. #if defined(PNG_READ_PACKSWAP_SUPPORTED)
  2194.             if (transformations & PNG_PACKSWAP)
  2195.             {
  2196.                 sshift = (int)((row_info->width + 7) & 0x07);
  2197.                 dshift = (int)((final_width + 7) & 0x07);
  2198.                 s_start = 7;
  2199.                 s_end = 0;
  2200.                 s_inc = -1;
  2201.             }
  2202.             else
  2203. #endif
  2204.             {
  2205.                 sshift = 7 - (int)((row_info->width + 7) & 0x07);
  2206.                 dshift = 7 - (int)((final_width + 7) & 0x07);
  2207.                 s_start = 0;
  2208.                 s_end = 7;
  2209.                 s_inc = 1;
  2210.             }
  2211.             for (i = 0; i < row_info->width; i++)
  2212.             {
  2213.                v = (png_byte)((*sp >> sshift) & 0x01);
  2214.                for (j = 0; j < jstop; j++)
  2215.                {
  2216.                   *dp &= (png_byte)((0x7f7f >> (7 - dshift)) & 0xff);
  2217.                   *dp |= (png_byte)(v << dshift);
  2218.                   if (dshift == s_end)
  2219.                   {
  2220.                      dshift = s_start;
  2221.                      dp--;
  2222.                   }
  2223.                   else
  2224.                      dshift += s_inc;
  2225.                }
  2226.                if (sshift == s_end)
  2227.                {
  2228.                   sshift = s_start;
  2229.                   sp--;
  2230.                }
  2231.                else
  2232.                   sshift += s_inc;
  2233.             }
  2234.             break;
  2235.          }
  2236.          case 2:
  2237.          {
  2238.             png_bytep sp = row + (png_uint_32)((row_info->width - 1) >> 2);
  2239.             png_bytep dp = row + (png_uint_32)((final_width - 1) >> 2);
  2240.             int sshift, dshift;
  2241.             int s_start, s_end, s_inc;
  2242.             int jstop = png_pass_inc[pass];
  2243.             png_uint_32 i;
  2244. #if defined(PNG_READ_PACKSWAP_SUPPORTED)
  2245.             if (transformations & PNG_PACKSWAP)
  2246.             {
  2247.                sshift = (int)(((row_info->width + 3) & 0x03) << 1);
  2248.                dshift = (int)(((final_width + 3) & 0x03) << 1);
  2249.                s_start = 6;
  2250.                s_end = 0;
  2251.                s_inc = -2;
  2252.             }
  2253.             else
  2254. #endif
  2255.             {
  2256.                sshift = (int)((3 - ((row_info->width + 3) & 0x03)) << 1);
  2257.                dshift = (int)((3 - ((final_width + 3) & 0x03)) << 1);
  2258.                s_start = 0;
  2259.                s_end = 6;
  2260.                s_inc = 2;
  2261.             }
  2262.             for (i = 0; i < row_info->width; i++)
  2263.             {
  2264.                png_byte v;
  2265.                int j;
  2266.                v = (png_byte)((*sp >> sshift) & 0x03);
  2267.                for (j = 0; j < jstop; j++)
  2268.                {
  2269.                   *dp &= (png_byte)((0x3f3f >> (6 - dshift)) & 0xff);
  2270.                   *dp |= (png_byte)(v << dshift);
  2271.                   if (dshift == s_end)
  2272.                   {
  2273.                      dshift = s_start;
  2274.                      dp--;
  2275.                   }
  2276.                   else
  2277.                      dshift += s_inc;
  2278.                }
  2279.                if (sshift == s_end)
  2280.                {
  2281.                   sshift = s_start;
  2282.                   sp--;
  2283.                }
  2284.                else
  2285.                   sshift += s_inc;
  2286.             }
  2287.             break;
  2288.          }
  2289.          case 4:
  2290.          {
  2291.             png_bytep sp = row + (png_size_t)((row_info->width - 1) >> 1);
  2292.             png_bytep dp = row + (png_size_t)((final_width - 1) >> 1);
  2293.             int sshift, dshift;
  2294.             int s_start, s_end, s_inc;
  2295.             png_uint_32 i;
  2296.             int jstop = png_pass_inc[pass];
  2297. #if defined(PNG_READ_PACKSWAP_SUPPORTED)
  2298.             if (transformations & PNG_PACKSWAP)
  2299.             {
  2300.                sshift = (int)(((row_info->width + 1) & 0x01) << 2);
  2301.                dshift = (int)(((final_width + 1) & 0x01) << 2);
  2302.                s_start = 4;
  2303.                s_end = 0;
  2304.                s_inc = -4;
  2305.             }
  2306.             else
  2307. #endif
  2308.             {
  2309.                sshift = (int)((1 - ((row_info->width + 1) & 0x01)) << 2);
  2310.                dshift = (int)((1 - ((final_width + 1) & 0x01)) << 2);
  2311.                s_start = 0;
  2312.                s_end = 4;
  2313.                s_inc = 4;
  2314.             }
  2315.             for (i = 0; i < row_info->width; i++)
  2316.             {
  2317.                png_byte v = (png_byte)((*sp >> sshift) & 0xf);
  2318.                int j;
  2319.                for (j = 0; j < jstop; j++)
  2320.                {
  2321.                   *dp &= (png_byte)((0xf0f >> (4 - dshift)) & 0xff);
  2322.                   *dp |= (png_byte)(v << dshift);
  2323.                   if (dshift == s_end)
  2324.                   {
  2325.                      dshift = s_start;
  2326.                      dp--;
  2327.                   }
  2328.                   else
  2329.                      dshift += s_inc;
  2330.                }
  2331.                if (sshift == s_end)
  2332.                {
  2333.                   sshift = s_start;
  2334.                   sp--;
  2335.                }
  2336.                else
  2337.                   sshift += s_inc;
  2338.             }
  2339.             break;
  2340.          }
  2341.          default:
  2342.          {
  2343.             png_size_t pixel_bytes = (row_info->pixel_depth >> 3);
  2344.             png_bytep sp = row + (png_size_t)(row_info->width - 1) * pixel_bytes;
  2345.             png_bytep dp = row + (png_size_t)(final_width - 1) * pixel_bytes;
  2346.             int jstop = png_pass_inc[pass];
  2347.             png_uint_32 i;
  2348.             for (i = 0; i < row_info->width; i++)
  2349.             {
  2350.                png_byte v[8];
  2351.                int j;
  2352.                png_memcpy(v, sp, pixel_bytes);
  2353.                for (j = 0; j < jstop; j++)
  2354.                {
  2355.                   png_memcpy(dp, v, pixel_bytes);
  2356.                   dp -= pixel_bytes;
  2357.                }
  2358.                sp -= pixel_bytes;
  2359.             }
  2360.             break;
  2361.          }
  2362.       }
  2363.       row_info->width = final_width;
  2364.       row_info->rowbytes = PNG_ROWBYTES(row_info->pixel_depth,final_width);
  2365.    }
  2366. #if !defined(PNG_READ_PACKSWAP_SUPPORTED)
  2367.    if (&transformations == NULL) /* silence compiler warning */
  2368.       return;
  2369. #endif
  2370. }
  2371. #endif /* !PNG_HAVE_MMX_READ_INTERLACE */
  2372. #endif /* PNG_READ_INTERLACING_SUPPORTED */
  2373. #ifndef PNG_HAVE_MMX_READ_FILTER_ROW
  2374. void /* PRIVATE */
  2375. png_read_filter_row(png_structp png_ptr, png_row_infop row_info, png_bytep row,
  2376.    png_bytep prev_row, int filter)
  2377. {
  2378.    png_debug(1, "in png_read_filter_rown");
  2379.    png_debug2(2,"row = %lu, filter = %dn", png_ptr->row_number, filter);
  2380.    switch (filter)
  2381.    {
  2382.       case PNG_FILTER_VALUE_NONE:
  2383.          break;
  2384.       case PNG_FILTER_VALUE_SUB:
  2385.       {
  2386.          png_uint_32 i;
  2387.          png_uint_32 istop = row_info->rowbytes;
  2388.          png_uint_32 bpp = (row_info->pixel_depth + 7) >> 3;
  2389.          png_bytep rp = row + bpp;
  2390.          png_bytep lp = row;
  2391.          for (i = bpp; i < istop; i++)
  2392.          {
  2393.             *rp = (png_byte)(((int)(*rp) + (int)(*lp++)) & 0xff);
  2394.             rp++;
  2395.          }
  2396.          break;
  2397.       }
  2398.       case PNG_FILTER_VALUE_UP:
  2399.       {
  2400.          png_uint_32 i;
  2401.          png_uint_32 istop = row_info->rowbytes;
  2402.          png_bytep rp = row;
  2403.          png_bytep pp = prev_row;
  2404.          for (i = 0; i < istop; i++)
  2405.          {
  2406.             *rp = (png_byte)(((int)(*rp) + (int)(*pp++)) & 0xff);
  2407.             rp++;
  2408.          }
  2409.          break;
  2410.       }
  2411.       case PNG_FILTER_VALUE_AVG:
  2412.       {
  2413.          png_uint_32 i;
  2414.          png_bytep rp = row;
  2415.          png_bytep pp = prev_row;
  2416.          png_bytep lp = row;
  2417.          png_uint_32 bpp = (row_info->pixel_depth + 7) >> 3;
  2418.          png_uint_32 istop = row_info->rowbytes - bpp;
  2419.          for (i = 0; i < bpp; i++)
  2420.          {
  2421.             *rp = (png_byte)(((int)(*rp) +
  2422.                ((int)(*pp++) / 2 )) & 0xff);
  2423.             rp++;
  2424.          }
  2425.          for (i = 0; i < istop; i++)
  2426.          {
  2427.             *rp = (png_byte)(((int)(*rp) +
  2428.                (int)(*pp++ + *lp++) / 2 ) & 0xff);
  2429.             rp++;
  2430.          }
  2431.          break;
  2432.       }
  2433.       case PNG_FILTER_VALUE_PAETH:
  2434.       {
  2435.          png_uint_32 i;
  2436.          png_bytep rp = row;
  2437.          png_bytep pp = prev_row;
  2438.          png_bytep lp = row;
  2439.          png_bytep cp = prev_row;
  2440.          png_uint_32 bpp = (row_info->pixel_depth + 7) >> 3;
  2441.          png_uint_32 istop=row_info->rowbytes - bpp;
  2442.          for (i = 0; i < bpp; i++)
  2443.          {
  2444.             *rp = (png_byte)(((int)(*rp) + (int)(*pp++)) & 0xff);
  2445.             rp++;
  2446.          }
  2447.          for (i = 0; i < istop; i++)   /* use leftover rp,pp */
  2448.          {
  2449.             int a, b, c, pa, pb, pc, p;
  2450.             a = *lp++;
  2451.             b = *pp++;
  2452.             c = *cp++;
  2453.             p = b - c;
  2454.             pc = a - c;
  2455. #ifdef PNG_USE_ABS
  2456.             pa = abs(p);
  2457.             pb = abs(pc);
  2458.             pc = abs(p + pc);
  2459. #else
  2460.             pa = p < 0 ? -p : p;
  2461.             pb = pc < 0 ? -pc : pc;
  2462.             pc = (p + pc) < 0 ? -(p + pc) : p + pc;
  2463. #endif
  2464.             /*
  2465.                if (pa <= pb && pa <= pc)
  2466.                   p = a;
  2467.                else if (pb <= pc)
  2468.                   p = b;
  2469.                else
  2470.                   p = c;
  2471.              */
  2472.             p = (pa <= pb && pa <=pc) ? a : (pb <= pc) ? b : c;
  2473.             *rp = (png_byte)(((int)(*rp) + p) & 0xff);
  2474.             rp++;
  2475.          }
  2476.          break;
  2477.       }
  2478.       default:
  2479.          png_warning(png_ptr, "Ignoring bad adaptive filter type");
  2480.          *row=0;
  2481.          break;
  2482.    }
  2483. }
  2484. #endif /* !PNG_HAVE_MMX_READ_FILTER_ROW */
  2485. void /* PRIVATE */
  2486. png_read_finish_row(png_structp png_ptr)
  2487. {
  2488. #ifdef PNG_USE_LOCAL_ARRAYS
  2489.    /* arrays to facilitate easy interlacing - use pass (0 - 6) as index */
  2490.    /* start of interlace block */
  2491.    const int png_pass_start[7] = {0, 4, 0, 2, 0, 1, 0};
  2492.    /* offset to next interlace block */
  2493.    const int png_pass_inc[7] = {8, 8, 4, 4, 2, 2, 1};
  2494.    /* start of interlace block in the y direction */
  2495.    const int png_pass_ystart[7] = {0, 0, 4, 0, 2, 0, 1};
  2496.    /* offset to next interlace block in the y direction */
  2497.    const int png_pass_yinc[7] = {8, 8, 8, 4, 4, 2, 2};
  2498. #endif
  2499.    png_debug(1, "in png_read_finish_rown");
  2500.    png_ptr->row_number++;
  2501.    if (png_ptr->row_number < png_ptr->num_rows)
  2502.       return;
  2503.    if (png_ptr->interlaced)
  2504.    {
  2505.       png_ptr->row_number = 0;
  2506.       png_memset_check(png_ptr, png_ptr->prev_row, 0, png_ptr->rowbytes + 1);
  2507.       do
  2508.       {
  2509.          png_ptr->pass++;
  2510.          if (png_ptr->pass >= 7)
  2511.             break;
  2512.          png_ptr->iwidth = (png_ptr->width +
  2513.             png_pass_inc[png_ptr->pass] - 1 -
  2514.             png_pass_start[png_ptr->pass]) /
  2515.             png_pass_inc[png_ptr->pass];
  2516.          png_ptr->irowbytes = PNG_ROWBYTES(png_ptr->pixel_depth,
  2517.             png_ptr->iwidth) + 1;
  2518.          if (!(png_ptr->transformations & PNG_INTERLACE))
  2519.          {
  2520.             png_ptr->num_rows = (png_ptr->height +
  2521.                png_pass_yinc[png_ptr->pass] - 1 -
  2522.                png_pass_ystart[png_ptr->pass]) /
  2523.                png_pass_yinc[png_ptr->pass];
  2524.             if (!(png_ptr->num_rows))
  2525.                continue;
  2526.          }
  2527.          else  /* if (png_ptr->transformations & PNG_INTERLACE) */
  2528.             break;
  2529.       } while (png_ptr->iwidth == 0);
  2530.       if (png_ptr->pass < 7)
  2531.          return;
  2532.    }
  2533.    if (!(png_ptr->flags & PNG_FLAG_ZLIB_FINISHED))
  2534.    {
  2535. #ifdef PNG_USE_LOCAL_ARRAYS
  2536.       PNG_IDAT;
  2537. #endif
  2538.       char extra;
  2539.       int ret;
  2540.       png_ptr->zstream.next_out = (Byte *)&extra;
  2541.       png_ptr->zstream.avail_out = (uInt)1;
  2542.       for(;;)
  2543.       {
  2544.          if (!(png_ptr->zstream.avail_in))
  2545.          {
  2546.             while (!png_ptr->idat_size)
  2547.             {
  2548.                png_byte chunk_length[4];
  2549.                png_crc_finish(png_ptr, 0);
  2550.                png_read_data(png_ptr, chunk_length, 4);
  2551.                png_ptr->idat_size = png_get_uint_31(png_ptr, chunk_length);
  2552.                png_reset_crc(png_ptr);
  2553.                png_crc_read(png_ptr, png_ptr->chunk_name, 4);
  2554.                if (png_memcmp(png_ptr->chunk_name, (png_bytep)png_IDAT, 4))
  2555.                   png_error(png_ptr, "Not enough image data");
  2556.             }
  2557.             png_ptr->zstream.avail_in = (uInt)png_ptr->zbuf_size;
  2558.             png_ptr->zstream.next_in = png_ptr->zbuf;
  2559.             if (png_ptr->zbuf_size > png_ptr->idat_size)
  2560.                png_ptr->zstream.avail_in = (uInt)png_ptr->idat_size;
  2561.             png_crc_read(png_ptr, png_ptr->zbuf, png_ptr->zstream.avail_in);
  2562.             png_ptr->idat_size -= png_ptr->zstream.avail_in;
  2563.          }
  2564.          ret = inflate(&png_ptr->zstream, Z_PARTIAL_FLUSH);
  2565.          if (ret == Z_STREAM_END)
  2566.          {
  2567.             if (!(png_ptr->zstream.avail_out) || png_ptr->zstream.avail_in ||
  2568.                png_ptr->idat_size)
  2569.                png_warning(png_ptr, "Extra compressed data");
  2570.             png_ptr->mode |= PNG_AFTER_IDAT;
  2571.             png_ptr->flags |= PNG_FLAG_ZLIB_FINISHED;
  2572.             break;
  2573.          }
  2574.          if (ret != Z_OK)
  2575.             png_error(png_ptr, png_ptr->zstream.msg ? png_ptr->zstream.msg :
  2576.                       "Decompression Error");
  2577.          if (!(png_ptr->zstream.avail_out))
  2578.          {
  2579.             png_warning(png_ptr, "Extra compressed data.");
  2580.             png_ptr->mode |= PNG_AFTER_IDAT;
  2581.             png_ptr->flags |= PNG_FLAG_ZLIB_FINISHED;
  2582.             break;
  2583.          }
  2584.       }
  2585.       png_ptr->zstream.avail_out = 0;
  2586.    }
  2587.    if (png_ptr->idat_size || png_ptr->zstream.avail_in)
  2588.       png_warning(png_ptr, "Extra compression data");
  2589.    inflateReset(&png_ptr->zstream);
  2590.    png_ptr->mode |= PNG_AFTER_IDAT;
  2591. }
  2592. void /* PRIVATE */
  2593. png_read_start_row(png_structp png_ptr)
  2594. {
  2595. #ifdef PNG_USE_LOCAL_ARRAYS
  2596.    /* arrays to facilitate easy interlacing - use pass (0 - 6) as index */
  2597.    /* start of interlace block */
  2598.    const int png_pass_start[7] = {0, 4, 0, 2, 0, 1, 0};
  2599.    /* offset to next interlace block */
  2600.    const int png_pass_inc[7] = {8, 8, 4, 4, 2, 2, 1};
  2601.    /* start of interlace block in the y direction */
  2602.    const int png_pass_ystart[7] = {0, 0, 4, 0, 2, 0, 1};
  2603.    /* offset to next interlace block in the y direction */
  2604.    const int png_pass_yinc[7] = {8, 8, 8, 4, 4, 2, 2};
  2605. #endif
  2606.    int max_pixel_depth;
  2607.    png_uint_32 row_bytes;
  2608.    png_debug(1, "in png_read_start_rown");
  2609.    png_ptr->zstream.avail_in = 0;
  2610.    png_init_read_transformations(png_ptr);
  2611.    if (png_ptr->interlaced)
  2612.    {
  2613.       if (!(png_ptr->transformations & PNG_INTERLACE))
  2614.          png_ptr->num_rows = (png_ptr->height + png_pass_yinc[0] - 1 -
  2615.             png_pass_ystart[0]) / png_pass_yinc[0];
  2616.       else
  2617.          png_ptr->num_rows = png_ptr->height;
  2618.       png_ptr->iwidth = (png_ptr->width +
  2619.          png_pass_inc[png_ptr->pass] - 1 -
  2620.          png_pass_start[png_ptr->pass]) /
  2621.          png_pass_inc[png_ptr->pass];
  2622.          row_bytes = PNG_ROWBYTES(png_ptr->pixel_depth,png_ptr->iwidth) + 1;
  2623.          png_ptr->irowbytes = (png_size_t)row_bytes;
  2624.          if((png_uint_32)png_ptr->irowbytes != row_bytes)
  2625.             png_error(png_ptr, "Rowbytes overflow in png_read_start_row");
  2626.    }
  2627.    else
  2628.    {
  2629.       png_ptr->num_rows = png_ptr->height;
  2630.       png_ptr->iwidth = png_ptr->width;
  2631.       png_ptr->irowbytes = png_ptr->rowbytes + 1;
  2632.    }
  2633.    max_pixel_depth = png_ptr->pixel_depth;
  2634. #if defined(PNG_READ_PACK_SUPPORTED)
  2635.    if ((png_ptr->transformations & PNG_PACK) && png_ptr->bit_depth < 8)
  2636.       max_pixel_depth = 8;
  2637. #endif
  2638. #if defined(PNG_READ_EXPAND_SUPPORTED)
  2639.    if (png_ptr->transformations & PNG_EXPAND)
  2640.    {
  2641.       if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
  2642.       {
  2643.          if (png_ptr->num_trans)
  2644.             max_pixel_depth = 32;
  2645.          else
  2646.             max_pixel_depth = 24;
  2647.       }
  2648.       else if (png_ptr->color_type == PNG_COLOR_TYPE_GRAY)
  2649.       {
  2650.          if (max_pixel_depth < 8)
  2651.             max_pixel_depth = 8;
  2652.          if (png_ptr->num_trans)
  2653.             max_pixel_depth *= 2;
  2654.       }
  2655.       else if (png_ptr->color_type == PNG_COLOR_TYPE_RGB)
  2656.       {
  2657.          if (png_ptr->num_trans)
  2658.          {
  2659.             max_pixel_depth *= 4;
  2660.             max_pixel_depth /= 3;
  2661.          }
  2662.       }
  2663.    }
  2664. #endif
  2665. #if defined(PNG_READ_FILLER_SUPPORTED)
  2666.    if (png_ptr->transformations & (PNG_FILLER))
  2667.    {
  2668.       if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
  2669.          max_pixel_depth = 32;
  2670.       else if (png_ptr->color_type == PNG_COLOR_TYPE_GRAY)
  2671.       {
  2672.          if (max_pixel_depth <= 8)
  2673.             max_pixel_depth = 16;
  2674.          else
  2675.             max_pixel_depth = 32;
  2676.       }
  2677.       else if (png_ptr->color_type == PNG_COLOR_TYPE_RGB)
  2678.       {
  2679.          if (max_pixel_depth <= 32)
  2680.             max_pixel_depth = 32;
  2681.          else
  2682.             max_pixel_depth = 64;
  2683.       }
  2684.    }
  2685. #endif
  2686. #if defined(PNG_READ_GRAY_TO_RGB_SUPPORTED)
  2687.    if (png_ptr->transformations & PNG_GRAY_TO_RGB)
  2688.    {
  2689.       if (
  2690. #if defined(PNG_READ_EXPAND_SUPPORTED)
  2691.         (png_ptr->num_trans && (png_ptr->transformations & PNG_EXPAND)) ||
  2692. #endif
  2693. #if defined(PNG_READ_FILLER_SUPPORTED)
  2694.         (png_ptr->transformations & (PNG_FILLER)) ||
  2695. #endif
  2696.         png_ptr->color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
  2697.       {
  2698.          if (max_pixel_depth <= 16)
  2699.             max_pixel_depth = 32;
  2700.          else
  2701.             max_pixel_depth = 64;
  2702.       }
  2703.       else
  2704.       {
  2705.          if (max_pixel_depth <= 8)
  2706.            {
  2707.              if (png_ptr->color_type == PNG_COLOR_TYPE_RGB_ALPHA)
  2708.                max_pixel_depth = 32;
  2709.              else
  2710.                max_pixel_depth = 24;
  2711.            }
  2712.          else if (png_ptr->color_type == PNG_COLOR_TYPE_RGB_ALPHA)
  2713.             max_pixel_depth = 64;
  2714.          else
  2715.             max_pixel_depth = 48;
  2716.       }
  2717.    }
  2718. #endif
  2719. #if defined(PNG_READ_USER_TRANSFORM_SUPPORTED) && 
  2720. defined(PNG_USER_TRANSFORM_PTR_SUPPORTED)
  2721.    if(png_ptr->transformations & PNG_USER_TRANSFORM)
  2722.      {
  2723.        int user_pixel_depth=png_ptr->user_transform_depth*
  2724.          png_ptr->user_transform_channels;
  2725.        if(user_pixel_depth > max_pixel_depth)
  2726.          max_pixel_depth=user_pixel_depth;
  2727.      }
  2728. #endif
  2729.    /* align the width on the next larger 8 pixels.  Mainly used
  2730.       for interlacing */
  2731.    row_bytes = ((png_ptr->width + 7) & ~((png_uint_32)7));
  2732.    /* calculate the maximum bytes needed, adding a byte and a pixel
  2733.       for safety's sake */
  2734.    row_bytes = PNG_ROWBYTES(max_pixel_depth,row_bytes) +
  2735.       1 + ((max_pixel_depth + 7) >> 3);
  2736. #ifdef PNG_MAX_MALLOC_64K
  2737.    if (row_bytes > (png_uint_32)65536L)
  2738.       png_error(png_ptr, "This image requires a row greater than 64KB");
  2739. #endif
  2740.    png_ptr->big_row_buf = (png_bytep)png_malloc(png_ptr, row_bytes+64);
  2741.    png_ptr->row_buf = png_ptr->big_row_buf+32;
  2742. #if defined(PNG_DEBUG) && defined(PNG_USE_PNGGCCRD)
  2743.    png_ptr->row_buf_size = row_bytes;
  2744. #endif
  2745. #ifdef PNG_MAX_MALLOC_64K
  2746.    if ((png_uint_32)png_ptr->rowbytes + 1 > (png_uint_32)65536L)
  2747.       png_error(png_ptr, "This image requires a row greater than 64KB");
  2748. #endif
  2749.    if ((png_uint_32)png_ptr->rowbytes > (png_uint_32)(PNG_SIZE_MAX - 1))
  2750.       png_error(png_ptr, "Row has too many bytes to allocate in memory.");
  2751.    png_ptr->prev_row = (png_bytep)png_malloc(png_ptr, (png_uint_32)(
  2752.       png_ptr->rowbytes + 1));
  2753.    png_memset_check(png_ptr, png_ptr->prev_row, 0, png_ptr->rowbytes + 1);
  2754.    png_debug1(3, "width = %lu,n", png_ptr->width);
  2755.    png_debug1(3, "height = %lu,n", png_ptr->height);
  2756.    png_debug1(3, "iwidth = %lu,n", png_ptr->iwidth);
  2757.    png_debug1(3, "num_rows = %lun", png_ptr->num_rows);
  2758.    png_debug1(3, "rowbytes = %lu,n", png_ptr->rowbytes);
  2759.    png_debug1(3, "irowbytes = %lu,n", png_ptr->irowbytes);
  2760.    png_ptr->flags |= PNG_FLAG_ROW_INIT;
  2761. }
  2762. #endif /* PNG_READ_SUPPORTED */