PNGREAD.C
上传用户:wep9318
上传日期:2007-01-07
资源大小:893k
文件大小:26k
源码类别:

图片显示

开发平台:

Visual C++

  1. /* pngread.c - read a png file
  2.    libpng 1.0 beta 3 - version 0.89
  3.    For conditions of distribution and use, see copyright notice in png.h
  4.    Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.
  5.    May 25, 1996
  6.    */
  7. #define PNG_INTERNAL
  8. #include "png.h"
  9. /* Create a png structure for reading, and allocate any memory needed. */
  10. png_structp
  11. png_create_read_struct(png_const_charp user_png_ver, voidp error_ptr,
  12.    png_error_ptr warn_fn, png_error_ptr error_fn)
  13. {
  14.    png_structp png_ptr;
  15.    if ((png_ptr = (png_structp)png_create_struct(PNG_STRUCT_PNG)) == NULL)
  16.    {
  17.       return (png_structp)NULL;
  18.    }
  19.    if (setjmp(png_ptr->jmpbuf))
  20.    {
  21.       png_large_free(png_ptr, png_ptr->zbuf);
  22.       png_free(png_ptr, png_ptr->zstream);
  23.       png_destroy_struct(png_ptr);
  24.       return (png_structp)NULL;
  25.    }
  26.    png_set_error_fn(png_ptr, error_ptr, warn_fn, error_fn);
  27.    if (user_png_ver == NULL || strcmp(user_png_ver, png_libpng_ver))
  28.    {
  29.       if (user_png_ver == NULL || user_png_ver[0] != png_libpng_ver[0])
  30.       {
  31.          png_error(png_ptr, "Incompatible libpng versions");
  32.       }
  33.       else
  34.       {
  35.          png_warning(png_ptr, "Different libpng versions");
  36.       }
  37.    }
  38.    /* initialize zbuf - compression buffer */
  39.    png_ptr->zbuf_size = PNG_ZBUF_SIZE;
  40.    png_ptr->zbuf = png_large_malloc(png_ptr, png_ptr->zbuf_size);
  41.    png_ptr->zstream = (z_stream *)png_malloc(png_ptr, sizeof (z_stream));
  42.    png_ptr->zstream->zalloc = png_zalloc;
  43.    png_ptr->zstream->zfree = png_zfree;
  44.    png_ptr->zstream->opaque = (voidpf)png_ptr;
  45.    switch (inflateInit(png_ptr->zstream))
  46.    {
  47.      case Z_OK: /* Do nothing */ break;
  48.      case Z_MEM_ERROR:
  49.      case Z_STREAM_ERROR: png_error(png_ptr, "zlib memory error"); break;
  50.      case Z_VERSION_ERROR: png_error(png_ptr, "zlib version error"); break;
  51.      default: png_error(png_ptr, "Unknown zlib error");
  52.    }
  53.    png_ptr->zstream->next_out = png_ptr->zbuf;
  54.    png_ptr->zstream->avail_out = (uInt)png_ptr->zbuf_size;
  55.    png_set_read_fn(png_ptr, NULL, NULL);
  56.    png_ptr->do_free |= PNG_FREE_STRUCT;
  57.    return (png_ptr);
  58. }
  59. /* initialize png structure for reading, and allocate any memory needed */
  60. /* This interface is depreciated in favour of the png_create_read_struct() */
  61. void
  62. png_read_init(png_structp png_ptr)
  63. {
  64.    jmp_buf tmp_jmp;  /* to save current jump buffer */
  65.    /* save jump buffer and error functions */
  66.    png_memcpy(tmp_jmp, png_ptr->jmpbuf, sizeof (jmp_buf));
  67.    /* reset all variables to 0 */
  68.    png_memset(png_ptr, 0, sizeof (png_struct));
  69.    /* restore jump buffer */
  70.    png_memcpy(png_ptr->jmpbuf, tmp_jmp, sizeof (jmp_buf));
  71.    /* initialize zbuf - compression buffer */
  72.    png_ptr->zbuf_size = PNG_ZBUF_SIZE;
  73.    png_ptr->zbuf = png_large_malloc(png_ptr, png_ptr->zbuf_size);
  74.    png_ptr->zstream = (z_stream *)png_malloc(png_ptr, sizeof (z_stream));
  75.    png_ptr->zstream->zalloc = png_zalloc;
  76.    png_ptr->zstream->zfree = png_zfree;
  77.    png_ptr->zstream->opaque = (voidpf)png_ptr;
  78.    switch (inflateInit(png_ptr->zstream))
  79.    {
  80.      case Z_OK: /* Do nothing */ break;
  81.      case Z_MEM_ERROR:
  82.      case Z_STREAM_ERROR: png_error(png_ptr, "zlib memory"); break;
  83.      case Z_VERSION_ERROR: png_error(png_ptr, "zlib version"); break;
  84.      default: png_error(png_ptr, "Unknown zlib error");
  85.    }
  86.    png_ptr->zstream->next_out = png_ptr->zbuf;
  87.    png_ptr->zstream->avail_out = (uInt)png_ptr->zbuf_size;
  88.    png_set_read_fn(png_ptr, NULL, NULL);
  89. }
  90. /* read the information before the actual image data. */
  91. void
  92. png_read_info(png_structp png_ptr, png_infop info)
  93. {
  94.    png_byte chunk_start[8];
  95.    png_uint_32 length;
  96.    png_read_data(png_ptr, chunk_start, 8);
  97.    if (!png_check_sig(chunk_start, 8))
  98.    {
  99.       if (!png_check_sig(chunk_start, 4))
  100.          png_error(png_ptr, "Not a PNG file");
  101.       else
  102.          png_error(png_ptr, "PNG file corrupted by ASCII conversion");
  103.    }
  104.    while (1)
  105.    {
  106.       png_uint_32 crc;
  107.       png_read_data(png_ptr, chunk_start, 8);
  108.       length = png_get_uint_32(chunk_start);
  109.       png_reset_crc(png_ptr);
  110.       png_calculate_crc(png_ptr, chunk_start + 4, 4);
  111.       if (!png_memcmp(chunk_start + 4, png_IHDR, 4))
  112.          png_handle_IHDR(png_ptr, info, length);
  113.       else if (!png_memcmp(chunk_start + 4, png_PLTE, 4))
  114.          png_handle_PLTE(png_ptr, info, length);
  115.       else if (!png_memcmp(chunk_start + 4, png_IDAT, 4))
  116.       {
  117.          if (!(png_ptr->mode & PNG_HAVE_IHDR))
  118.             png_error(png_ptr, "Missing IHDR before IDAT");
  119.          else if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE &&
  120.                   !(png_ptr->mode & PNG_HAVE_PLTE))
  121.             png_error(png_ptr, "Missing PLTE before IDAT");
  122.          png_ptr->idat_size = length;
  123.          png_ptr->mode |= PNG_HAVE_IDAT;
  124.          break;
  125.       }
  126.       else if (!png_memcmp(chunk_start + 4, png_IEND, 4))
  127.          png_error(png_ptr, "No image in file");
  128. #if defined(PNG_READ_gAMA_SUPPORTED)
  129.       else if (!png_memcmp(chunk_start + 4, png_gAMA, 4))
  130.          png_handle_gAMA(png_ptr, info, length);
  131. #endif
  132. #if defined(PNG_READ_sBIT_SUPPORTED)
  133.       else if (!png_memcmp(chunk_start + 4, png_sBIT, 4))
  134.          png_handle_sBIT(png_ptr, info, length);
  135. #endif
  136. #if defined(PNG_READ_cHRM_SUPPORTED)
  137.       else if (!png_memcmp(chunk_start + 4, png_cHRM, 4))
  138.          png_handle_cHRM(png_ptr, info, length);
  139. #endif
  140. #if defined(PNG_READ_tRNS_SUPPORTED)
  141.       else if (!png_memcmp(chunk_start + 4, png_tRNS, 4))
  142.          png_handle_tRNS(png_ptr, info, length);
  143. #endif
  144. #if defined(PNG_READ_bKGD_SUPPORTED)
  145.       else if (!png_memcmp(chunk_start + 4, png_bKGD, 4))
  146.          png_handle_bKGD(png_ptr, info, length);
  147. #endif
  148. #if defined(PNG_READ_hIST_SUPPORTED)
  149.       else if (!png_memcmp(chunk_start + 4, png_hIST, 4))
  150.          png_handle_hIST(png_ptr, info, length);
  151. #endif
  152. #if defined(PNG_READ_pHYs_SUPPORTED)
  153.       else if (!png_memcmp(chunk_start + 4, png_pHYs, 4))
  154.          png_handle_pHYs(png_ptr, info, length);
  155. #endif
  156. #if defined(PNG_READ_oFFs_SUPPORTED)
  157.       else if (!png_memcmp(chunk_start + 4, png_oFFs, 4))
  158.          png_handle_oFFs(png_ptr, info, length);
  159. #endif
  160. #if defined(PNG_READ_tIME_SUPPORTED)
  161.       else if (!png_memcmp(chunk_start + 4, png_tIME, 4))
  162.          png_handle_tIME(png_ptr, info, length);
  163. #endif
  164. #if defined(PNG_READ_tEXt_SUPPORTED)
  165.       else if (!png_memcmp(chunk_start + 4, png_tEXt, 4))
  166.          png_handle_tEXt(png_ptr, info, length);
  167. #endif
  168. #if defined(PNG_READ_zTXt_SUPPORTED)
  169.       else if (!png_memcmp(chunk_start + 4, png_zTXt, 4))
  170.          png_handle_zTXt(png_ptr, info, length);
  171. #endif
  172.       else
  173.       {
  174.          if (chunk_start[4] < 41 || chunk_start[4] > 122  ||
  175.              (chunk_start[4] > 90 && chunk_start[4] < 97) ||
  176.              chunk_start[5] < 41 || chunk_start[5] > 122  ||
  177.              (chunk_start[5] > 90 && chunk_start[5] < 97) ||
  178.              chunk_start[6] < 41 || chunk_start[6] > 122  ||
  179.              (chunk_start[6] > 90 && chunk_start[6] < 97) ||
  180.              chunk_start[7] < 41 || chunk_start[7] > 122  ||
  181.              (chunk_start[7] > 90 && chunk_start[7] < 97))
  182.          {
  183.             char msg[45];
  184.             sprintf(msg, "Invalid chunk type 0x%02X 0x%02X 0x%02X 0x%02X",
  185.                chunk_start[4], chunk_start[5], chunk_start[6], chunk_start[7]);
  186.             png_error(png_ptr, msg);
  187.          }
  188.          if ((chunk_start[4] & 0x20) == 0)
  189.          {
  190.             char msg[40];
  191.             sprintf(msg, "Unknown critical chunk %c%c%c%c",
  192.                chunk_start[4], chunk_start[5], chunk_start[6], chunk_start[7]);
  193.             png_error(png_ptr, msg);
  194.          }
  195.          png_crc_skip(png_ptr, length);
  196.       }
  197.       png_read_data(png_ptr, chunk_start, 4);
  198.       crc = png_get_uint_32(chunk_start);
  199.       if (((crc ^ 0xffffffffL) & 0xffffffffL) != (png_ptr->crc & 0xffffffffL))
  200.          png_error(png_ptr, "Bad CRC value");
  201.    }
  202. }
  203. /* optional call to update the users info structure */
  204. void
  205. png_read_update_info(png_structp png_ptr, png_infop info)
  206. {
  207.    if (!(png_ptr->flags & PNG_FLAG_ROW_INIT))
  208.       png_read_start_row(png_ptr);
  209.    png_read_transform_info(png_ptr, info);
  210. }
  211. /* initialize palette, background, etc, after transformations
  212.    are set, but before any reading takes place.  This allows
  213.    the user to obtail a gamma corrected palette, for example.
  214.    If the user doesn't call this, we will do it ourselves. */
  215. void
  216. png_start_read_image(png_structp png_ptr)
  217. {
  218.    if (!(png_ptr->flags & PNG_FLAG_ROW_INIT))
  219.       png_read_start_row(png_ptr);
  220. }
  221. void
  222. png_read_row(png_structp png_ptr, png_bytep row, png_bytep dsp_row)
  223. {
  224.    int ret;
  225.    if (!(png_ptr->flags & PNG_FLAG_ROW_INIT))
  226.       png_read_start_row(png_ptr);
  227. #if defined(PNG_READ_INTERLACING_SUPPORTED)
  228.    /* if interlaced and we do not need a new row, combine row and return */
  229.    if (png_ptr->interlaced && (png_ptr->transformations & PNG_INTERLACE))
  230.    {
  231.       switch (png_ptr->pass)
  232.       {
  233.          case 0:
  234.             if (png_ptr->row_number & 7)
  235.             {
  236.                if (dsp_row)
  237.                   png_combine_row(png_ptr, dsp_row,
  238.                      png_pass_dsp_mask[png_ptr->pass]);
  239.                png_read_finish_row(png_ptr);
  240.                return;
  241.             }
  242.             break;
  243.          case 1:
  244.             if ((png_ptr->row_number & 7) || png_ptr->width < 5)
  245.             {
  246.                if (dsp_row)
  247.                   png_combine_row(png_ptr, dsp_row,
  248.                      png_pass_dsp_mask[png_ptr->pass]);
  249.                png_read_finish_row(png_ptr);
  250.                return;
  251.             }
  252.             break;
  253.          case 2:
  254.             if ((png_ptr->row_number & 7) != 4)
  255.             {
  256.                if (dsp_row && (png_ptr->row_number & 4))
  257.                   png_combine_row(png_ptr, dsp_row,
  258.                      png_pass_dsp_mask[png_ptr->pass]);
  259.                png_read_finish_row(png_ptr);
  260.                return;
  261.             }
  262.             break;
  263.          case 3:
  264.             if ((png_ptr->row_number & 3) || png_ptr->width < 3)
  265.             {
  266.                if (dsp_row)
  267.                   png_combine_row(png_ptr, dsp_row,
  268.                      png_pass_dsp_mask[png_ptr->pass]);
  269.                png_read_finish_row(png_ptr);
  270.                return;
  271.             }
  272.             break;
  273.          case 4:
  274.             if ((png_ptr->row_number & 3) != 2)
  275.             {
  276.                if (dsp_row && (png_ptr->row_number & 2))
  277.                   png_combine_row(png_ptr, dsp_row,
  278.                      png_pass_dsp_mask[png_ptr->pass]);
  279.                png_read_finish_row(png_ptr);
  280.                return;
  281.             }
  282.             break;
  283.          case 5:
  284.             if ((png_ptr->row_number & 1) || png_ptr->width < 2)
  285.             {
  286.                if (dsp_row)
  287.                   png_combine_row(png_ptr, dsp_row,
  288.                      png_pass_dsp_mask[png_ptr->pass]);
  289.                png_read_finish_row(png_ptr);
  290.                return;
  291.             }
  292.             break;
  293.          case 6:
  294.             if (!(png_ptr->row_number & 1))
  295.             {
  296.                png_read_finish_row(png_ptr);
  297.                return;
  298.             }
  299.             break;
  300.       }
  301.    }
  302. #endif
  303.    if (!(png_ptr->mode & PNG_HAVE_IDAT))
  304.       png_error(png_ptr, "Invalid attempt to read row data");
  305.    png_ptr->zstream->next_out = png_ptr->row_buf;
  306.    png_ptr->zstream->avail_out = (uInt)png_ptr->irowbytes;
  307.    do
  308.    {
  309.       if (!(png_ptr->zstream->avail_in))
  310.       {
  311.          while (!png_ptr->idat_size)
  312.          {
  313.             png_byte buf[4];
  314.             png_uint_32 crc;
  315.             png_read_data(png_ptr, buf, 4);
  316.             crc = png_get_uint_32(buf);
  317.             if (((crc ^ 0xffffffffL) & 0xffffffffL) !=
  318.                (png_ptr->crc & 0xffffffffL))
  319.                png_error(png_ptr, "Bad CRC value");
  320.             png_read_data(png_ptr, buf, 4);
  321.             png_ptr->idat_size = png_get_uint_32(buf);
  322.             png_reset_crc(png_ptr);
  323.             png_crc_read(png_ptr, buf, 4);
  324.             if (png_memcmp(buf, png_IDAT, 4))
  325.                png_error(png_ptr, "Not enough IDATs for image");
  326.          }
  327.          png_ptr->zstream->avail_in = (uInt)png_ptr->zbuf_size;
  328.          png_ptr->zstream->next_in = png_ptr->zbuf;
  329.          if (png_ptr->zbuf_size > png_ptr->idat_size)
  330.             png_ptr->zstream->avail_in = (uInt)png_ptr->idat_size;
  331.          png_crc_read(png_ptr, png_ptr->zbuf, png_ptr->zstream->avail_in);
  332.          png_ptr->idat_size -= png_ptr->zstream->avail_in;
  333.       }
  334.       ret = inflate(png_ptr->zstream, Z_PARTIAL_FLUSH);
  335.       if (ret == Z_STREAM_END)
  336.       {
  337.          if (png_ptr->zstream->avail_out || png_ptr->zstream->avail_in ||
  338.             png_ptr->idat_size)
  339.             png_error(png_ptr, "Extra compressed data");
  340.          png_ptr->mode |= PNG_AT_LAST_IDAT;
  341.          png_ptr->flags |= PNG_FLAG_ZLIB_FINISHED;
  342.          break;
  343.       }
  344.       if (ret != Z_OK)
  345.          png_error(png_ptr, png_ptr->zstream->msg ? png_ptr->zstream->msg :
  346.                    "Decompression error");
  347.    } while (png_ptr->zstream->avail_out);
  348.    png_ptr->row_info.color_type = png_ptr->color_type;
  349.    png_ptr->row_info.width = png_ptr->iwidth;
  350.    png_ptr->row_info.channels = png_ptr->channels;
  351.    png_ptr->row_info.bit_depth = png_ptr->bit_depth;
  352.    png_ptr->row_info.pixel_depth = png_ptr->pixel_depth;
  353.    png_ptr->row_info.rowbytes = ((png_ptr->row_info.width *
  354.       (png_uint_32)png_ptr->row_info.pixel_depth + 7) >> 3);
  355.    png_read_filter_row(png_ptr, &(png_ptr->row_info),
  356.       png_ptr->row_buf + 1, png_ptr->prev_row + 1,
  357.       (int)(png_ptr->row_buf[0]));
  358.    png_memcpy(png_ptr->prev_row, png_ptr->row_buf, (png_size_t)png_ptr->rowbytes + 1);
  359.    if (png_ptr->transformations)
  360.       png_do_read_transformations(png_ptr);
  361. #if defined(PNG_READ_INTERLACING_SUPPORTED)
  362.    /* blow up interlaced rows to full size */
  363.    if (png_ptr->interlaced &&
  364.       (png_ptr->transformations & PNG_INTERLACE))
  365.    {
  366.       if (png_ptr->pass < 6)
  367.          png_do_read_interlace(&(png_ptr->row_info),
  368.             png_ptr->row_buf + 1, png_ptr->pass);
  369.       if (dsp_row)
  370.          png_combine_row(png_ptr, dsp_row,
  371.             png_pass_dsp_mask[png_ptr->pass]);
  372.       if (row)
  373.          png_combine_row(png_ptr, row,
  374.             png_pass_mask[png_ptr->pass]);
  375.    }
  376.    else
  377. #endif
  378.    {
  379.       if (row)
  380.          png_combine_row(png_ptr, row, 0xff);
  381.       if (dsp_row)
  382.          png_combine_row(png_ptr, dsp_row, 0xff);
  383.    }
  384.    png_read_finish_row(png_ptr);
  385. }
  386. /* read a one or more rows of image data.   If the image is interlaced,
  387.    and png_set_interlace_handling() has been called, the rows need to
  388.    to contain the contents of the rows from the previous pass.  If
  389.    the image has alpha or transparency, and png_handle_alpha() has been
  390.    called, the rows contents must be initialized to the contents of the
  391.    screen.  row holds the actual image, and pixels are placed in it
  392.    as they arrive.  If the image is displayed after each pass, it will
  393.    appear to "sparkle" in.  display_row can be used to display a
  394.    "chunky" progressive image, with finer detail added as it becomes
  395.    available.  If you do not want this "chunky" display, you may pass
  396.    NULL for display_rows.  If you do not want the sparkle display, and
  397.    you have not called png_handle_alpha(), you may pass NULL for rows.
  398.    If you have called png_handle_alpha(), and the image has either an
  399.    alpha channel or a transparency chunk, you must provide a buffer for
  400.    rows.  In this case, you do not have to provide a display_rows buffer
  401.    also, but you may.  If the image is not interlaced, or if you have
  402.    not called png_set_interlace_handling(), the display_row buffer will
  403.    be ignored, so pass NULL to it. */
  404. void
  405. png_read_rows(png_structp png_ptr, png_bytepp row,
  406.    png_bytepp display_row, png_uint_32 num_rows)
  407. {
  408.    png_uint_32 i;
  409.    png_bytepp rp;
  410.    png_bytepp dp;
  411.    rp = row;
  412.    dp = display_row;
  413.    for (i = 0; i < num_rows; i++)
  414.    {
  415.       png_bytep rptr;
  416.       png_bytep dptr;
  417.       if (rp)
  418.          rptr = *rp;
  419.       else
  420.          rptr = NULL;
  421.       if (dp)
  422.          dptr = *dp;
  423.       else
  424.          dptr = NULL;
  425.       png_read_row(png_ptr, rptr, dptr);
  426.       if (row)
  427.          rp++;
  428.       if (display_row)
  429.          dp++;
  430.    }
  431. }
  432. /* read the image.  If the image has an alpha channel or a transparency
  433.    chunk, and you have called png_handle_alpha(), you will need to
  434.    initialize the image to the current image that png will be overlaying.
  435.    We set the num_rows again here, in case it was incorrectly set in
  436.    png_read_start_row() by a call to png_read_update_info() or
  437.    png_start_read_image() if png_set_interlace_handling() wasn't called
  438.    prior to either of these functions like it should have been.  You only
  439.    need to call this function once.  If you desire to have an image for
  440.    each pass of a interlaced image, use png_read_rows() instead */
  441. void
  442. png_read_image(png_structp png_ptr, png_bytepp image)
  443. {
  444.    png_uint_32 i;
  445.    int pass, j;
  446.    png_bytepp rp;
  447.    pass = png_set_interlace_handling(png_ptr);
  448.    png_ptr->num_rows = png_ptr->height; /* Make sure this is set correctly */
  449.    for (j = 0; j < pass; j++)
  450.    {
  451.       rp = image;
  452.       for (i = 0; i < png_ptr->height; i++)
  453.       {
  454.          png_read_row(png_ptr, *rp, NULL);
  455.          rp++;
  456.       }
  457.    }
  458. }
  459. /* read the end of the png file.  Will not read past the end of the
  460.    file, will verify the end is accurate, and will read any comments
  461.    or time information at the end of the file, if info is not NULL. */
  462. void
  463. png_read_end(png_structp png_ptr, png_infop info)
  464. {
  465.    png_byte chunk_start[8];
  466.    png_uint_32 length;
  467.    png_uint_32 crc;
  468.    png_read_data(png_ptr, chunk_start, 4);
  469.    crc = png_get_uint_32(chunk_start);
  470.    if (((crc ^ 0xffffffffL) & 0xffffffffL) !=
  471.       (png_ptr->crc & 0xffffffffL))
  472.       png_error(png_ptr, "Bad CRC value");
  473.    do
  474.    {
  475.       png_read_data(png_ptr, chunk_start, 8);
  476.       length = png_get_uint_32(chunk_start);
  477.       png_reset_crc(png_ptr);
  478.       png_calculate_crc(png_ptr, chunk_start + 4, 4);
  479.       if (!png_memcmp(chunk_start + 4, png_IHDR, 4))
  480.       {
  481.          png_error(png_ptr, "Invalid IHDR after IDAT");
  482.       }
  483.       else if (!png_memcmp(chunk_start + 4, png_PLTE, 4))
  484.       {
  485.          png_error(png_ptr, "Invalid PLTE after IDAT");
  486.       }
  487.       else if (!png_memcmp(chunk_start + 4, png_gAMA, 4))
  488.       {
  489.          png_error(png_ptr, "Invalid gAMA after IDAT");
  490.       }
  491.       else if (!png_memcmp(chunk_start + 4, png_sBIT, 4))
  492.       {
  493.          png_error(png_ptr, "Invalid sBIT after IDAT");
  494.       }
  495.       else if (!png_memcmp(chunk_start + 4, png_cHRM, 4))
  496.       {
  497.          png_error(png_ptr, "Invalid cHRM after IDAT");
  498.       }
  499.       else if (!png_memcmp(chunk_start + 4, png_tRNS, 4))
  500.       {
  501.          png_error(png_ptr, "Invalid tRNS after IDAT");
  502.       }
  503.       else if (!png_memcmp(chunk_start + 4, png_bKGD, 4))
  504.       {
  505.          png_error(png_ptr, "Invalid bKGD after IDAT");
  506.       }
  507.       else if (!png_memcmp(chunk_start + 4, png_hIST, 4))
  508.       {
  509.          png_error(png_ptr, "Invalid hIST after IDAT");
  510.       }
  511.       else if (!png_memcmp(chunk_start + 4, png_IDAT, 4))
  512.       {
  513.          if (length > 0 || png_ptr->mode & PNG_AFTER_IDAT)
  514.             png_error(png_ptr, "Too many IDAT's found");
  515.       }
  516.       else if (!png_memcmp(chunk_start + 4, png_pHYs, 4))
  517.       {
  518.          png_error(png_ptr, "Invalid pHYs after IDAT");
  519.       }
  520.       else if (!png_memcmp(chunk_start + 4, png_oFFs, 4))
  521.       {
  522.          png_error(png_ptr, "Invalid oFFs after IDAT");
  523.       }
  524. #if defined(PNG_READ_tIME_SUPPORTED)
  525.       else if (!png_memcmp(chunk_start + 4, png_tIME, 4))
  526.       {
  527.          png_ptr->mode |= PNG_AFTER_IDAT;
  528.          if (info)
  529.             png_handle_tIME(png_ptr, info, length);
  530.          else
  531.             png_crc_skip(png_ptr, length);
  532.       }
  533. #endif
  534. #if defined(PNG_READ_tEXt_SUPPORTED)
  535.       else if (!png_memcmp(chunk_start + 4, png_tEXt, 4))
  536.       {
  537.          png_ptr->mode |= PNG_AFTER_IDAT;
  538.          if (info)
  539.             png_handle_tEXt(png_ptr, info, length);
  540.          else
  541.             png_crc_skip(png_ptr, length);
  542.       }
  543. #endif
  544. #if defined(PNG_READ_zTXt_SUPPORTED)
  545.       else if (!png_memcmp(chunk_start + 4, png_zTXt, 4))
  546.       {
  547.          png_ptr->mode |= PNG_AFTER_IDAT;
  548.          if (info)
  549.             png_handle_zTXt(png_ptr, info, length);
  550.          else
  551.             png_crc_skip(png_ptr, length);
  552.       }
  553. #endif
  554.       else if (!png_memcmp(chunk_start + 4, png_IEND, 4))
  555.       {
  556.          png_ptr->mode |= PNG_AFTER_IDAT;
  557.          png_ptr->mode |= PNG_AFTER_IEND;
  558.       }
  559.       else
  560.       {
  561.          if (chunk_start[4] < 41 || chunk_start[4] > 122  ||
  562.              (chunk_start[4] > 90 && chunk_start[4] < 97) ||
  563.              chunk_start[5] < 41 || chunk_start[5] > 122  ||
  564.              (chunk_start[5] > 90 && chunk_start[5] < 97) ||
  565.              chunk_start[6] < 41 || chunk_start[6] > 122  ||
  566.              (chunk_start[6] > 90 && chunk_start[6] < 97) ||
  567.              chunk_start[7] < 41 || chunk_start[7] > 122  ||
  568.              (chunk_start[7] > 90 && chunk_start[7] < 97))
  569.          {
  570.            png_error(png_ptr, "Invalid chunk type");
  571.          }
  572.          if ((chunk_start[4] & 0x20) == 0)
  573.             png_error(png_ptr, "Unknown critical chunk");
  574.          png_ptr->mode |= PNG_AFTER_IDAT;
  575.          png_crc_skip(png_ptr, length);
  576.       }
  577.       png_read_data(png_ptr, chunk_start, 4);
  578.       crc = png_get_uint_32(chunk_start);
  579.       if (((crc ^ 0xffffffffL) & 0xffffffffL) != (png_ptr->crc & 0xffffffffL))
  580.          png_error(png_ptr, "Bad CRC value");
  581.    } while (!(png_ptr->mode & PNG_AFTER_IEND));
  582. }
  583. /* free all memory used by the read */
  584. void
  585. png_destroy_read_struct(png_structpp png_ptr_ptr, png_infopp info_ptr_ptr,
  586.    png_infopp end_info_ptr)
  587. {
  588.    png_structp png_ptr = NULL;
  589.    png_infop info_ptr = NULL, end_info = NULL;
  590.    if (png_ptr_ptr)
  591.       png_ptr = *png_ptr_ptr;
  592.    if (info_ptr_ptr)
  593.       info_ptr = *info_ptr_ptr;
  594.    if (end_info_ptr)
  595.       end_info = *end_info_ptr;
  596.    png_read_destroy(png_ptr, info_ptr, end_info);
  597.    if (info_ptr)
  598.    {
  599.       png_destroy_struct((voidp)info_ptr);
  600.       *info_ptr_ptr = (png_infop)NULL;
  601.    }
  602.    if (end_info)
  603.    {
  604.       png_destroy_struct((voidp)end_info);
  605.       *end_info_ptr = (png_infop)NULL;
  606.    }
  607.    if (png_ptr)
  608.    {
  609.       png_destroy_struct((voidp)png_ptr);
  610.       *png_ptr_ptr = (png_structp)NULL;
  611.    }
  612. }
  613. /* free all memory used by the read (old) */
  614. void
  615. png_read_destroy(png_structp png_ptr, png_infop info, png_infop end_info)
  616. {
  617.    int i;
  618.    jmp_buf tmp_jmp;
  619.    png_error_ptr error_fn;
  620.    png_error_ptr warning_fn;
  621.    png_voidp error_ptr;
  622.    if (info)
  623.    {
  624. #if defined(PNG_READ_tEXt_SUPPORTED) || defined(PNG_READ_zTXt_SUPPORTED)
  625.       for (i = 0; i < info->num_text; i++)
  626.       {
  627.          png_large_free(png_ptr, info->text[i].key);
  628.       }
  629.       png_large_free(png_ptr, info->text);
  630. #endif
  631.       png_memset(info, 0, sizeof(png_info));
  632.    }
  633.    if (end_info)
  634.    {
  635. #if defined(PNG_READ_tEXt_SUPPORTED) || defined(PNG_READ_zTXt_SUPPORTED)
  636.       for (i = 0; i < end_info->num_text; i++)
  637.       {
  638.          png_large_free(png_ptr, end_info->text[i].key);
  639.       }
  640.       png_large_free(png_ptr, end_info->text);
  641. #endif
  642.       png_memset(end_info, 0, sizeof(png_info));
  643.    }
  644.    png_large_free(png_ptr, png_ptr->zbuf);
  645.    png_large_free(png_ptr, png_ptr->row_buf);
  646.    png_large_free(png_ptr, png_ptr->prev_row);
  647. #if defined(PNG_READ_DITHER_SUPPORTED)
  648.    png_large_free(png_ptr, png_ptr->palette_lookup);
  649.    png_large_free(png_ptr, png_ptr->dither_index);
  650. #endif
  651. #if defined(PNG_READ_GAMMA_SUPPORTED)
  652.    png_large_free(png_ptr, png_ptr->gamma_table);
  653. #endif
  654. #if defined(PNG_READ_BACKGROUND_SUPPORTED)
  655.    png_large_free(png_ptr, png_ptr->gamma_from_1);
  656.    png_large_free(png_ptr, png_ptr->gamma_to_1);
  657. #endif
  658.    if (png_ptr->do_free & PNG_FREE_PALETTE)
  659.       png_large_free(png_ptr, png_ptr->palette);
  660. #if defined(PNG_READ_BACKGROUND_SUPPORTED) && defined(PNG_READ_bKGD_SUPPORTED)
  661.    if (png_ptr->do_free & PNG_FREE_TRANS)
  662.       png_large_free(png_ptr, png_ptr->trans);
  663. #endif
  664. #if defined(PNG_READ_hIST_SUPPORTED)
  665.    if (png_ptr->do_free & PNG_FREE_HIST)
  666.       png_large_free(png_ptr, png_ptr->hist);
  667. #endif
  668. #if defined(PNG_READ_GAMMA_SUPPORTED)
  669.    if (png_ptr->gamma_16_table)
  670.    {
  671.       for (i = 0; i < (1 << (8 - png_ptr->gamma_shift)); i++)
  672.       {
  673.          png_large_free(png_ptr, png_ptr->gamma_16_table[i]);
  674.       }
  675.    }
  676. #endif
  677. #if defined(PNG_READ_BACKGROUND_SUPPORTED)
  678.    png_large_free(png_ptr, png_ptr->gamma_16_table);
  679.    if (png_ptr->gamma_16_from_1)
  680.    {
  681.       for (i = 0; i < (1 << (8 - png_ptr->gamma_shift)); i++)
  682.       {
  683.          png_large_free(png_ptr, png_ptr->gamma_16_from_1[i]);
  684.       }
  685.    }
  686.    png_large_free(png_ptr, png_ptr->gamma_16_from_1);
  687.    if (png_ptr->gamma_16_to_1)
  688.    {
  689.       for (i = 0; i < (1 << (8 - png_ptr->gamma_shift)); i++)
  690.       {
  691.          png_large_free(png_ptr, png_ptr->gamma_16_to_1[i]);
  692.       }
  693.    }
  694.    png_large_free(png_ptr, png_ptr->gamma_16_to_1);
  695. #endif
  696.    inflateEnd(png_ptr->zstream);
  697.    png_free(png_ptr, png_ptr->zstream);
  698. #ifdef PNG_PROGRESSIVE_READ_SUPPORTED
  699.    png_large_free(png_ptr, png_ptr->save_buffer);
  700. #endif
  701.    /* Save the important info out of the png_struct, in case it is
  702.     * being used again.
  703.     */
  704.    png_memcpy(tmp_jmp, png_ptr->jmpbuf, sizeof (jmp_buf));
  705.    error_fn = png_ptr->error_fn;
  706.    warning_fn = png_ptr->warning_fn;
  707.    error_ptr = png_ptr->error_ptr;
  708.    png_memset(png_ptr, 0, sizeof (png_struct));
  709.    png_ptr->error_fn = error_fn;
  710.    png_ptr->warning_fn = warning_fn;
  711.    png_ptr->error_ptr = error_ptr;
  712.    png_memcpy(png_ptr->jmpbuf, tmp_jmp, sizeof (jmp_buf));
  713. }