pngrutil.c
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:92k
源码类别:

对话框与窗口

开发平台:

Visual C++

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