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

对话框与窗口

开发平台:

Visual C++

  1. /* pngread.c - 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 an application calls directly to
  10.  * read a PNG file or stream.
  11.  */
  12. #define PNG_INTERNAL
  13. #include "png.h"
  14. #if defined(PNG_READ_SUPPORTED)
  15. /* Create a PNG structure for reading, and allocate any memory needed. */
  16. png_structp PNGAPI
  17. png_create_read_struct(png_const_charp user_png_ver, png_voidp error_ptr,
  18.    png_error_ptr error_fn, png_error_ptr warn_fn)
  19. {
  20. #ifdef PNG_USER_MEM_SUPPORTED
  21.    return (png_create_read_struct_2(user_png_ver, error_ptr, error_fn,
  22.       warn_fn, png_voidp_NULL, png_malloc_ptr_NULL, png_free_ptr_NULL));
  23. }
  24. /* Alternate create PNG structure for reading, and allocate any memory needed. */
  25. png_structp PNGAPI
  26. png_create_read_struct_2(png_const_charp user_png_ver, png_voidp error_ptr,
  27.    png_error_ptr error_fn, png_error_ptr warn_fn, png_voidp mem_ptr,
  28.    png_malloc_ptr malloc_fn, png_free_ptr free_fn)
  29. {
  30. #endif /* PNG_USER_MEM_SUPPORTED */
  31.    png_structp png_ptr;
  32. #ifdef PNG_SETJMP_SUPPORTED
  33. #ifdef USE_FAR_KEYWORD
  34.    jmp_buf jmpbuf;
  35. #endif
  36. #endif
  37.    int i;
  38.    png_debug(1, "in png_create_read_structn");
  39. #ifdef PNG_USER_MEM_SUPPORTED
  40.    png_ptr = (png_structp)png_create_struct_2(PNG_STRUCT_PNG,
  41.       (png_malloc_ptr)malloc_fn, (png_voidp)mem_ptr);
  42. #else
  43.    png_ptr = (png_structp)png_create_struct(PNG_STRUCT_PNG);
  44. #endif
  45.    if (png_ptr == NULL)
  46.       return (NULL);
  47. #if !defined(PNG_1_0_X)
  48. #ifdef PNG_ASSEMBLER_CODE_SUPPORTED
  49.    png_init_mmx_flags(png_ptr);   /* 1.2.0 addition */
  50. #endif
  51. #endif /* PNG_1_0_X */
  52.    /* added at libpng-1.2.6 */
  53. #ifdef PNG_SET_USER_LIMITS_SUPPORTED
  54.    png_ptr->user_width_max=PNG_USER_WIDTH_MAX;
  55.    png_ptr->user_height_max=PNG_USER_HEIGHT_MAX;
  56. #endif
  57. #ifdef PNG_SETJMP_SUPPORTED
  58. #ifdef USE_FAR_KEYWORD
  59.    if (setjmp(jmpbuf))
  60. #else
  61.    if (setjmp(png_ptr->jmpbuf))
  62. #endif
  63.    {
  64.       png_free(png_ptr, png_ptr->zbuf);
  65.       png_ptr->zbuf=NULL;
  66. #ifdef PNG_USER_MEM_SUPPORTED
  67.       png_destroy_struct_2((png_voidp)png_ptr,
  68.          (png_free_ptr)free_fn, (png_voidp)mem_ptr);
  69. #else
  70.       png_destroy_struct((png_voidp)png_ptr);
  71. #endif
  72.       return (NULL);
  73.    }
  74. #ifdef USE_FAR_KEYWORD
  75.    png_memcpy(png_ptr->jmpbuf,jmpbuf,png_sizeof(jmp_buf));
  76. #endif
  77. #endif
  78. #ifdef PNG_USER_MEM_SUPPORTED
  79.    png_set_mem_fn(png_ptr, mem_ptr, malloc_fn, free_fn);
  80. #endif
  81.    png_set_error_fn(png_ptr, error_ptr, error_fn, warn_fn);
  82.    i=0;
  83.    do
  84.    {
  85.      if(user_png_ver[i] != png_libpng_ver[i])
  86.         png_ptr->flags |= PNG_FLAG_LIBRARY_MISMATCH;
  87.    } while (png_libpng_ver[i++]);
  88.    if (png_ptr->flags & PNG_FLAG_LIBRARY_MISMATCH)
  89.    {
  90.      /* Libpng 0.90 and later are binary incompatible with libpng 0.89, so
  91.       * we must recompile any applications that use any older library version.
  92.       * For versions after libpng 1.0, we will be compatible, so we need
  93.       * only check the first digit.
  94.       */
  95.      if (user_png_ver == NULL || user_png_ver[0] != png_libpng_ver[0] ||
  96.          (user_png_ver[0] == '1' && user_png_ver[2] != png_libpng_ver[2]) ||
  97.          (user_png_ver[0] == '0' && user_png_ver[2] < '9'))
  98.      {
  99. #if !defined(PNG_NO_STDIO) && !defined(_WIN32_WCE)
  100.         char msg[80];
  101.         if (user_png_ver)
  102.         {
  103.           sprintf(msg, "Application was compiled with png.h from libpng-%.20s",
  104.              user_png_ver);
  105.           png_warning(png_ptr, msg);
  106.         }
  107.         sprintf(msg, "Application  is  running with png.c from libpng-%.20s",
  108.            png_libpng_ver);
  109.         png_warning(png_ptr, msg);
  110. #endif
  111. #ifdef PNG_ERROR_NUMBERS_SUPPORTED
  112.         png_ptr->flags=0;
  113. #endif
  114.         png_error(png_ptr,
  115.            "Incompatible libpng version in application and library");
  116.      }
  117.    }
  118.    /* initialize zbuf - compression buffer */
  119.    png_ptr->zbuf_size = PNG_ZBUF_SIZE;
  120.    png_ptr->zbuf = (png_bytep)png_malloc(png_ptr,
  121.      (png_uint_32)png_ptr->zbuf_size);
  122.    png_ptr->zstream.zalloc = png_zalloc;
  123.    png_ptr->zstream.zfree = png_zfree;
  124.    png_ptr->zstream.opaque = (voidpf)png_ptr;
  125.    switch (inflateInit(&png_ptr->zstream))
  126.    {
  127.      case Z_OK: /* Do nothing */ break;
  128.      case Z_MEM_ERROR:
  129.      case Z_STREAM_ERROR: png_error(png_ptr, "zlib memory error"); break;
  130.      case Z_VERSION_ERROR: png_error(png_ptr, "zlib version error"); break;
  131.      default: png_error(png_ptr, "Unknown zlib error");
  132.    }
  133.    png_ptr->zstream.next_out = png_ptr->zbuf;
  134.    png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
  135.    png_set_read_fn(png_ptr, png_voidp_NULL, png_rw_ptr_NULL);
  136. #ifdef PNG_SETJMP_SUPPORTED
  137. /* Applications that neglect to set up their own setjmp() and then encounter
  138.    a png_error() will longjmp here.  Since the jmpbuf is then meaningless we
  139.    abort instead of returning. */
  140. #ifdef USE_FAR_KEYWORD
  141.    if (setjmp(jmpbuf))
  142.       PNG_ABORT();
  143.    png_memcpy(png_ptr->jmpbuf,jmpbuf,png_sizeof(jmp_buf));
  144. #else
  145.    if (setjmp(png_ptr->jmpbuf))
  146.       PNG_ABORT();
  147. #endif
  148. #endif
  149.    return (png_ptr);
  150. }
  151. #if defined(PNG_1_0_X) || defined(PNG_1_2_X)
  152. /* Initialize PNG structure for reading, and allocate any memory needed.
  153.    This interface is deprecated in favour of the png_create_read_struct(),
  154.    and it will disappear as of libpng-1.3.0. */
  155. #undef png_read_init
  156. void PNGAPI
  157. png_read_init(png_structp png_ptr)
  158. {
  159.    /* We only come here via pre-1.0.7-compiled applications */
  160.    png_read_init_2(png_ptr, "1.0.6 or earlier", 0, 0);
  161. }
  162. void PNGAPI
  163. png_read_init_2(png_structp png_ptr, png_const_charp user_png_ver,
  164.    png_size_t png_struct_size, png_size_t png_info_size)
  165. {
  166.    /* We only come here via pre-1.0.12-compiled applications */
  167. #if !defined(PNG_NO_STDIO) && !defined(_WIN32_WCE)
  168.    if(png_sizeof(png_struct) > png_struct_size ||
  169.       png_sizeof(png_info) > png_info_size)
  170.    {
  171.       char msg[80];
  172.       png_ptr->warning_fn=NULL;
  173.       if (user_png_ver)
  174.       {
  175.         sprintf(msg, "Application was compiled with png.h from libpng-%.20s",
  176.            user_png_ver);
  177.         png_warning(png_ptr, msg);
  178.       }
  179.       sprintf(msg, "Application  is  running with png.c from libpng-%.20s",
  180.          png_libpng_ver);
  181.       png_warning(png_ptr, msg);
  182.    }
  183. #endif
  184.    if(png_sizeof(png_struct) > png_struct_size)
  185.      {
  186.        png_ptr->error_fn=NULL;
  187. #ifdef PNG_ERROR_NUMBERS_SUPPORTED
  188.        png_ptr->flags=0;
  189. #endif
  190.        png_error(png_ptr,
  191.        "The png struct allocated by the application for reading is too small.");
  192.      }
  193.    if(png_sizeof(png_info) > png_info_size)
  194.      {
  195.        png_ptr->error_fn=NULL;
  196. #ifdef PNG_ERROR_NUMBERS_SUPPORTED
  197.        png_ptr->flags=0;
  198. #endif
  199.        png_error(png_ptr,
  200.          "The info struct allocated by application for reading is too small.");
  201.      }
  202.    png_read_init_3(&png_ptr, user_png_ver, png_struct_size);
  203. }
  204. #endif /* PNG_1_0_X || PNG_1_2_X */
  205. void PNGAPI
  206. png_read_init_3(png_structpp ptr_ptr, png_const_charp user_png_ver,
  207.    png_size_t png_struct_size)
  208. {
  209. #ifdef PNG_SETJMP_SUPPORTED
  210.    jmp_buf tmp_jmp;  /* to save current jump buffer */
  211. #endif
  212.    int i=0;
  213.    png_structp png_ptr=*ptr_ptr;
  214.    do
  215.    {
  216.      if(user_png_ver[i] != png_libpng_ver[i])
  217.      {
  218. #ifdef PNG_LEGACY_SUPPORTED
  219.        png_ptr->flags |= PNG_FLAG_LIBRARY_MISMATCH;
  220. #else
  221.        png_ptr->warning_fn=NULL;
  222.        png_warning(png_ptr,
  223.         "Application uses deprecated png_read_init() and should be recompiled.");
  224.        break;
  225. #endif
  226.      }
  227.    } while (png_libpng_ver[i++]);
  228.    png_debug(1, "in png_read_init_3n");
  229. #ifdef PNG_SETJMP_SUPPORTED
  230.    /* save jump buffer and error functions */
  231.    png_memcpy(tmp_jmp, png_ptr->jmpbuf, png_sizeof (jmp_buf));
  232. #endif
  233.    if(png_sizeof(png_struct) > png_struct_size)
  234.      {
  235.        png_destroy_struct(png_ptr);
  236.        *ptr_ptr = (png_structp)png_create_struct(PNG_STRUCT_PNG);
  237.        png_ptr = *ptr_ptr;
  238.      }
  239.    /* reset all variables to 0 */
  240.    png_memset(png_ptr, 0, png_sizeof (png_struct));
  241. #ifdef PNG_SETJMP_SUPPORTED
  242.    /* restore jump buffer */
  243.    png_memcpy(png_ptr->jmpbuf, tmp_jmp, png_sizeof (jmp_buf));
  244. #endif
  245.    /* added at libpng-1.2.6 */
  246. #ifdef PNG_SET_USER_LIMITS_SUPPORTED
  247.    png_ptr->user_width_max=PNG_USER_WIDTH_MAX;
  248.    png_ptr->user_height_max=PNG_USER_HEIGHT_MAX;
  249. #endif
  250.    /* initialize zbuf - compression buffer */
  251.    png_ptr->zbuf_size = PNG_ZBUF_SIZE;
  252.    png_ptr->zbuf = (png_bytep)png_malloc(png_ptr,
  253.      (png_uint_32)png_ptr->zbuf_size);
  254.    png_ptr->zstream.zalloc = png_zalloc;
  255.    png_ptr->zstream.zfree = png_zfree;
  256.    png_ptr->zstream.opaque = (voidpf)png_ptr;
  257.    switch (inflateInit(&png_ptr->zstream))
  258.    {
  259.      case Z_OK: /* Do nothing */ break;
  260.      case Z_MEM_ERROR:
  261.      case Z_STREAM_ERROR: png_error(png_ptr, "zlib memory"); break;
  262.      case Z_VERSION_ERROR: png_error(png_ptr, "zlib version"); break;
  263.      default: png_error(png_ptr, "Unknown zlib error");
  264.    }
  265.    png_ptr->zstream.next_out = png_ptr->zbuf;
  266.    png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
  267.    png_set_read_fn(png_ptr, png_voidp_NULL, png_rw_ptr_NULL);
  268. }
  269. #ifndef PNG_NO_SEQUENTIAL_READ_SUPPORTED
  270. /* Read the information before the actual image data.  This has been
  271.  * changed in v0.90 to allow reading a file that already has the magic
  272.  * bytes read from the stream.  You can tell libpng how many bytes have
  273.  * been read from the beginning of the stream (up to the maximum of 8)
  274.  * via png_set_sig_bytes(), and we will only check the remaining bytes
  275.  * here.  The application can then have access to the signature bytes we
  276.  * read if it is determined that this isn't a valid PNG file.
  277.  */
  278. void PNGAPI
  279. png_read_info(png_structp png_ptr, png_infop info_ptr)
  280. {
  281.    png_debug(1, "in png_read_infon");
  282.    /* If we haven't checked all of the PNG signature bytes, do so now. */
  283.    if (png_ptr->sig_bytes < 8)
  284.    {
  285.       png_size_t num_checked = png_ptr->sig_bytes,
  286.                  num_to_check = 8 - num_checked;
  287.       png_read_data(png_ptr, &(info_ptr->signature[num_checked]), num_to_check);
  288.       png_ptr->sig_bytes = 8;
  289.       if (png_sig_cmp(info_ptr->signature, num_checked, num_to_check))
  290.       {
  291.          if (num_checked < 4 &&
  292.              png_sig_cmp(info_ptr->signature, num_checked, num_to_check - 4))
  293.             png_error(png_ptr, "Not a PNG file");
  294.          else
  295.             png_error(png_ptr, "PNG file corrupted by ASCII conversion");
  296.       }
  297.       if (num_checked < 3)
  298.          png_ptr->mode |= PNG_HAVE_PNG_SIGNATURE;
  299.    }
  300.    for(;;)
  301.    {
  302. #ifdef PNG_USE_LOCAL_ARRAYS
  303.       PNG_IHDR;
  304.       PNG_IDAT;
  305.       PNG_IEND;
  306.       PNG_PLTE;
  307. #if defined(PNG_READ_bKGD_SUPPORTED)
  308.       PNG_bKGD;
  309. #endif
  310. #if defined(PNG_READ_cHRM_SUPPORTED)
  311.       PNG_cHRM;
  312. #endif
  313. #if defined(PNG_READ_gAMA_SUPPORTED)
  314.       PNG_gAMA;
  315. #endif
  316. #if defined(PNG_READ_hIST_SUPPORTED)
  317.       PNG_hIST;
  318. #endif
  319. #if defined(PNG_READ_iCCP_SUPPORTED)
  320.       PNG_iCCP;
  321. #endif
  322. #if defined(PNG_READ_iTXt_SUPPORTED)
  323.       PNG_iTXt;
  324. #endif
  325. #if defined(PNG_READ_oFFs_SUPPORTED)
  326.       PNG_oFFs;
  327. #endif
  328. #if defined(PNG_READ_pCAL_SUPPORTED)
  329.       PNG_pCAL;
  330. #endif
  331. #if defined(PNG_READ_pHYs_SUPPORTED)
  332.       PNG_pHYs;
  333. #endif
  334. #if defined(PNG_READ_sBIT_SUPPORTED)
  335.       PNG_sBIT;
  336. #endif
  337. #if defined(PNG_READ_sCAL_SUPPORTED)
  338.       PNG_sCAL;
  339. #endif
  340. #if defined(PNG_READ_sPLT_SUPPORTED)
  341.       PNG_sPLT;
  342. #endif
  343. #if defined(PNG_READ_sRGB_SUPPORTED)
  344.       PNG_sRGB;
  345. #endif
  346. #if defined(PNG_READ_tEXt_SUPPORTED)
  347.       PNG_tEXt;
  348. #endif
  349. #if defined(PNG_READ_tIME_SUPPORTED)
  350.       PNG_tIME;
  351. #endif
  352. #if defined(PNG_READ_tRNS_SUPPORTED)
  353.       PNG_tRNS;
  354. #endif
  355. #if defined(PNG_READ_zTXt_SUPPORTED)
  356.       PNG_zTXt;
  357. #endif
  358. #endif /* PNG_USE_LOCAL_ARRAYS */
  359.       png_byte chunk_length[4];
  360.       png_uint_32 length;
  361.       png_read_data(png_ptr, chunk_length, 4);
  362.       length = png_get_uint_31(png_ptr,chunk_length);
  363.       png_reset_crc(png_ptr);
  364.       png_crc_read(png_ptr, png_ptr->chunk_name, 4);
  365.       png_debug2(0, "Reading %s chunk, length=%lu.n", png_ptr->chunk_name,
  366.          length);
  367.       /* This should be a binary subdivision search or a hash for
  368.        * matching the chunk name rather than a linear search.
  369.        */
  370.       if (!png_memcmp(png_ptr->chunk_name, png_IHDR, 4))
  371.          png_handle_IHDR(png_ptr, info_ptr, length);
  372.       else if (!png_memcmp(png_ptr->chunk_name, png_IEND, 4))
  373.          png_handle_IEND(png_ptr, info_ptr, length);
  374. #ifdef PNG_HANDLE_AS_UNKNOWN_SUPPORTED
  375.       else if (png_handle_as_unknown(png_ptr, png_ptr->chunk_name))
  376.       {
  377.          if (!png_memcmp(png_ptr->chunk_name, png_IDAT, 4))
  378.             png_ptr->mode |= PNG_HAVE_IDAT;
  379.          png_handle_unknown(png_ptr, info_ptr, length);
  380.          if (!png_memcmp(png_ptr->chunk_name, png_PLTE, 4))
  381.             png_ptr->mode |= PNG_HAVE_PLTE;
  382.          else if (!png_memcmp(png_ptr->chunk_name, png_IDAT, 4))
  383.          {
  384.             if (!(png_ptr->mode & PNG_HAVE_IHDR))
  385.                png_error(png_ptr, "Missing IHDR before IDAT");
  386.             else if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE &&
  387.                      !(png_ptr->mode & PNG_HAVE_PLTE))
  388.                png_error(png_ptr, "Missing PLTE before IDAT");
  389.             break;
  390.          }
  391.       }
  392. #endif
  393.       else if (!png_memcmp(png_ptr->chunk_name, png_PLTE, 4))
  394.          png_handle_PLTE(png_ptr, info_ptr, length);
  395.       else if (!png_memcmp(png_ptr->chunk_name, png_IDAT, 4))
  396.       {
  397.          if (!(png_ptr->mode & PNG_HAVE_IHDR))
  398.             png_error(png_ptr, "Missing IHDR before IDAT");
  399.          else if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE &&
  400.                   !(png_ptr->mode & PNG_HAVE_PLTE))
  401.             png_error(png_ptr, "Missing PLTE before IDAT");
  402.          png_ptr->idat_size = length;
  403.          png_ptr->mode |= PNG_HAVE_IDAT;
  404.          break;
  405.       }
  406. #if defined(PNG_READ_bKGD_SUPPORTED)
  407.       else if (!png_memcmp(png_ptr->chunk_name, png_bKGD, 4))
  408.          png_handle_bKGD(png_ptr, info_ptr, length);
  409. #endif
  410. #if defined(PNG_READ_cHRM_SUPPORTED)
  411.       else if (!png_memcmp(png_ptr->chunk_name, png_cHRM, 4))
  412.          png_handle_cHRM(png_ptr, info_ptr, length);
  413. #endif
  414. #if defined(PNG_READ_gAMA_SUPPORTED)
  415.       else if (!png_memcmp(png_ptr->chunk_name, png_gAMA, 4))
  416.          png_handle_gAMA(png_ptr, info_ptr, length);
  417. #endif
  418. #if defined(PNG_READ_hIST_SUPPORTED)
  419.       else if (!png_memcmp(png_ptr->chunk_name, png_hIST, 4))
  420.          png_handle_hIST(png_ptr, info_ptr, length);
  421. #endif
  422. #if defined(PNG_READ_oFFs_SUPPORTED)
  423.       else if (!png_memcmp(png_ptr->chunk_name, png_oFFs, 4))
  424.          png_handle_oFFs(png_ptr, info_ptr, length);
  425. #endif
  426. #if defined(PNG_READ_pCAL_SUPPORTED)
  427.       else if (!png_memcmp(png_ptr->chunk_name, png_pCAL, 4))
  428.          png_handle_pCAL(png_ptr, info_ptr, length);
  429. #endif
  430. #if defined(PNG_READ_sCAL_SUPPORTED)
  431.       else if (!png_memcmp(png_ptr->chunk_name, png_sCAL, 4))
  432.          png_handle_sCAL(png_ptr, info_ptr, length);
  433. #endif
  434. #if defined(PNG_READ_pHYs_SUPPORTED)
  435.       else if (!png_memcmp(png_ptr->chunk_name, png_pHYs, 4))
  436.          png_handle_pHYs(png_ptr, info_ptr, length);
  437. #endif
  438. #if defined(PNG_READ_sBIT_SUPPORTED)
  439.       else if (!png_memcmp(png_ptr->chunk_name, png_sBIT, 4))
  440.          png_handle_sBIT(png_ptr, info_ptr, length);
  441. #endif
  442. #if defined(PNG_READ_sRGB_SUPPORTED)
  443.       else if (!png_memcmp(png_ptr->chunk_name, png_sRGB, 4))
  444.          png_handle_sRGB(png_ptr, info_ptr, length);
  445. #endif
  446. #if defined(PNG_READ_iCCP_SUPPORTED)
  447.       else if (!png_memcmp(png_ptr->chunk_name, png_iCCP, 4))
  448.          png_handle_iCCP(png_ptr, info_ptr, length);
  449. #endif
  450. #if defined(PNG_READ_sPLT_SUPPORTED)
  451.       else if (!png_memcmp(png_ptr->chunk_name, png_sPLT, 4))
  452.          png_handle_sPLT(png_ptr, info_ptr, length);
  453. #endif
  454. #if defined(PNG_READ_tEXt_SUPPORTED)
  455.       else if (!png_memcmp(png_ptr->chunk_name, png_tEXt, 4))
  456.          png_handle_tEXt(png_ptr, info_ptr, length);
  457. #endif
  458. #if defined(PNG_READ_tIME_SUPPORTED)
  459.       else if (!png_memcmp(png_ptr->chunk_name, png_tIME, 4))
  460.          png_handle_tIME(png_ptr, info_ptr, length);
  461. #endif
  462. #if defined(PNG_READ_tRNS_SUPPORTED)
  463.       else if (!png_memcmp(png_ptr->chunk_name, png_tRNS, 4))
  464.          png_handle_tRNS(png_ptr, info_ptr, length);
  465. #endif
  466. #if defined(PNG_READ_zTXt_SUPPORTED)
  467.       else if (!png_memcmp(png_ptr->chunk_name, png_zTXt, 4))
  468.          png_handle_zTXt(png_ptr, info_ptr, length);
  469. #endif
  470. #if defined(PNG_READ_iTXt_SUPPORTED)
  471.       else if (!png_memcmp(png_ptr->chunk_name, png_iTXt, 4))
  472.          png_handle_iTXt(png_ptr, info_ptr, length);
  473. #endif
  474.       else
  475.          png_handle_unknown(png_ptr, info_ptr, length);
  476.    }
  477. }
  478. #endif /* PNG_NO_SEQUENTIAL_READ_SUPPORTED */
  479. /* optional call to update the users info_ptr structure */
  480. void PNGAPI
  481. png_read_update_info(png_structp png_ptr, png_infop info_ptr)
  482. {
  483.    png_debug(1, "in png_read_update_infon");
  484.    if (!(png_ptr->flags & PNG_FLAG_ROW_INIT))
  485.       png_read_start_row(png_ptr);
  486.    else
  487.       png_warning(png_ptr,
  488.       "Ignoring extra png_read_update_info() call; row buffer not reallocated");
  489.    png_read_transform_info(png_ptr, info_ptr);
  490. }
  491. #ifndef PNG_NO_SEQUENTIAL_READ_SUPPORTED
  492. /* Initialize palette, background, etc, after transformations
  493.  * are set, but before any reading takes place.  This allows
  494.  * the user to obtain a gamma-corrected palette, for example.
  495.  * If the user doesn't call this, we will do it ourselves.
  496.  */
  497. void PNGAPI
  498. png_start_read_image(png_structp png_ptr)
  499. {
  500.    png_debug(1, "in png_start_read_imagen");
  501.    if (!(png_ptr->flags & PNG_FLAG_ROW_INIT))
  502.       png_read_start_row(png_ptr);
  503. }
  504. #endif /* PNG_NO_SEQUENTIAL_READ_SUPPORTED */
  505. #ifndef PNG_NO_SEQUENTIAL_READ_SUPPORTED
  506. void PNGAPI
  507. png_read_row(png_structp png_ptr, png_bytep row, png_bytep dsp_row)
  508. {
  509. #ifdef PNG_USE_LOCAL_ARRAYS
  510.    PNG_IDAT;
  511.    const int png_pass_dsp_mask[7] = {0xff, 0x0f, 0xff, 0x33, 0xff, 0x55, 0xff};
  512.    const int png_pass_mask[7] = {0x80, 0x08, 0x88, 0x22, 0xaa, 0x55, 0xff};
  513. #endif
  514.    int ret;
  515.    png_debug2(1, "in png_read_row (row %lu, pass %d)n",
  516.       png_ptr->row_number, png_ptr->pass);
  517.    if (!(png_ptr->flags & PNG_FLAG_ROW_INIT))
  518.       png_read_start_row(png_ptr);
  519.    if (png_ptr->row_number == 0 && png_ptr->pass == 0)
  520.    {
  521.    /* check for transforms that have been set but were defined out */
  522. #if defined(PNG_WRITE_INVERT_SUPPORTED) && !defined(PNG_READ_INVERT_SUPPORTED)
  523.    if (png_ptr->transformations & PNG_INVERT_MONO)
  524.       png_warning(png_ptr, "PNG_READ_INVERT_SUPPORTED is not defined.");
  525. #endif
  526. #if defined(PNG_WRITE_FILLER_SUPPORTED) && !defined(PNG_READ_FILLER_SUPPORTED)
  527.    if (png_ptr->transformations & PNG_FILLER)
  528.       png_warning(png_ptr, "PNG_READ_FILLER_SUPPORTED is not defined.");
  529. #endif
  530. #if defined(PNG_WRITE_PACKSWAP_SUPPORTED) && !defined(PNG_READ_PACKSWAP_SUPPORTED)
  531.    if (png_ptr->transformations & PNG_PACKSWAP)
  532.       png_warning(png_ptr, "PNG_READ_PACKSWAP_SUPPORTED is not defined.");
  533. #endif
  534. #if defined(PNG_WRITE_PACK_SUPPORTED) && !defined(PNG_READ_PACK_SUPPORTED)
  535.    if (png_ptr->transformations & PNG_PACK)
  536.       png_warning(png_ptr, "PNG_READ_PACK_SUPPORTED is not defined.");
  537. #endif
  538. #if defined(PNG_WRITE_SHIFT_SUPPORTED) && !defined(PNG_READ_SHIFT_SUPPORTED)
  539.    if (png_ptr->transformations & PNG_SHIFT)
  540.       png_warning(png_ptr, "PNG_READ_SHIFT_SUPPORTED is not defined.");
  541. #endif
  542. #if defined(PNG_WRITE_BGR_SUPPORTED) && !defined(PNG_READ_BGR_SUPPORTED)
  543.    if (png_ptr->transformations & PNG_BGR)
  544.       png_warning(png_ptr, "PNG_READ_BGR_SUPPORTED is not defined.");
  545. #endif
  546. #if defined(PNG_WRITE_SWAP_SUPPORTED) && !defined(PNG_READ_SWAP_SUPPORTED)
  547.    if (png_ptr->transformations & PNG_SWAP_BYTES)
  548.       png_warning(png_ptr, "PNG_READ_SWAP_SUPPORTED is not defined.");
  549. #endif
  550.    }
  551. #if defined(PNG_READ_INTERLACING_SUPPORTED)
  552.    /* if interlaced and we do not need a new row, combine row and return */
  553.    if (png_ptr->interlaced && (png_ptr->transformations & PNG_INTERLACE))
  554.    {
  555.       switch (png_ptr->pass)
  556.       {
  557.          case 0:
  558.             if (png_ptr->row_number & 0x07)
  559.             {
  560.                if (dsp_row != NULL)
  561.                   png_combine_row(png_ptr, dsp_row,
  562.                      png_pass_dsp_mask[png_ptr->pass]);
  563.                png_read_finish_row(png_ptr);
  564.                return;
  565.             }
  566.             break;
  567.          case 1:
  568.             if ((png_ptr->row_number & 0x07) || png_ptr->width < 5)
  569.             {
  570.                if (dsp_row != NULL)
  571.                   png_combine_row(png_ptr, dsp_row,
  572.                      png_pass_dsp_mask[png_ptr->pass]);
  573.                png_read_finish_row(png_ptr);
  574.                return;
  575.             }
  576.             break;
  577.          case 2:
  578.             if ((png_ptr->row_number & 0x07) != 4)
  579.             {
  580.                if (dsp_row != NULL && (png_ptr->row_number & 4))
  581.                   png_combine_row(png_ptr, dsp_row,
  582.                      png_pass_dsp_mask[png_ptr->pass]);
  583.                png_read_finish_row(png_ptr);
  584.                return;
  585.             }
  586.             break;
  587.          case 3:
  588.             if ((png_ptr->row_number & 3) || png_ptr->width < 3)
  589.             {
  590.                if (dsp_row != NULL)
  591.                   png_combine_row(png_ptr, dsp_row,
  592.                      png_pass_dsp_mask[png_ptr->pass]);
  593.                png_read_finish_row(png_ptr);
  594.                return;
  595.             }
  596.             break;
  597.          case 4:
  598.             if ((png_ptr->row_number & 3) != 2)
  599.             {
  600.                if (dsp_row != NULL && (png_ptr->row_number & 2))
  601.                   png_combine_row(png_ptr, dsp_row,
  602.                      png_pass_dsp_mask[png_ptr->pass]);
  603.                png_read_finish_row(png_ptr);
  604.                return;
  605.             }
  606.             break;
  607.          case 5:
  608.             if ((png_ptr->row_number & 1) || png_ptr->width < 2)
  609.             {
  610.                if (dsp_row != NULL)
  611.                   png_combine_row(png_ptr, dsp_row,
  612.                      png_pass_dsp_mask[png_ptr->pass]);
  613.                png_read_finish_row(png_ptr);
  614.                return;
  615.             }
  616.             break;
  617.          case 6:
  618.             if (!(png_ptr->row_number & 1))
  619.             {
  620.                png_read_finish_row(png_ptr);
  621.                return;
  622.             }
  623.             break;
  624.       }
  625.    }
  626. #endif
  627.    if (!(png_ptr->mode & PNG_HAVE_IDAT))
  628.       png_error(png_ptr, "Invalid attempt to read row data");
  629.    png_ptr->zstream.next_out = png_ptr->row_buf;
  630.    png_ptr->zstream.avail_out = (uInt)png_ptr->irowbytes;
  631.    do
  632.    {
  633.       if (!(png_ptr->zstream.avail_in))
  634.       {
  635.          while (!png_ptr->idat_size)
  636.          {
  637.             png_byte chunk_length[4];
  638.             png_crc_finish(png_ptr, 0);
  639.             png_read_data(png_ptr, chunk_length, 4);
  640.             png_ptr->idat_size = png_get_uint_31(png_ptr,chunk_length);
  641.             png_reset_crc(png_ptr);
  642.             png_crc_read(png_ptr, png_ptr->chunk_name, 4);
  643.             if (png_memcmp(png_ptr->chunk_name, png_IDAT, 4))
  644.                png_error(png_ptr, "Not enough image data");
  645.          }
  646.          png_ptr->zstream.avail_in = (uInt)png_ptr->zbuf_size;
  647.          png_ptr->zstream.next_in = png_ptr->zbuf;
  648.          if (png_ptr->zbuf_size > png_ptr->idat_size)
  649.             png_ptr->zstream.avail_in = (uInt)png_ptr->idat_size;
  650.          png_crc_read(png_ptr, png_ptr->zbuf,
  651.             (png_size_t)png_ptr->zstream.avail_in);
  652.          png_ptr->idat_size -= png_ptr->zstream.avail_in;
  653.       }
  654.       ret = inflate(&png_ptr->zstream, Z_PARTIAL_FLUSH);
  655.       if (ret == Z_STREAM_END)
  656.       {
  657.          if (png_ptr->zstream.avail_out || png_ptr->zstream.avail_in ||
  658.             png_ptr->idat_size)
  659.             png_error(png_ptr, "Extra compressed data");
  660.          png_ptr->mode |= PNG_AFTER_IDAT;
  661.          png_ptr->flags |= PNG_FLAG_ZLIB_FINISHED;
  662.          break;
  663.       }
  664.       if (ret != Z_OK)
  665.          png_error(png_ptr, png_ptr->zstream.msg ? png_ptr->zstream.msg :
  666.                    "Decompression error");
  667.    } while (png_ptr->zstream.avail_out);
  668.    png_ptr->row_info.color_type = png_ptr->color_type;
  669.    png_ptr->row_info.width = png_ptr->iwidth;
  670.    png_ptr->row_info.channels = png_ptr->channels;
  671.    png_ptr->row_info.bit_depth = png_ptr->bit_depth;
  672.    png_ptr->row_info.pixel_depth = png_ptr->pixel_depth;
  673.    png_ptr->row_info.rowbytes = PNG_ROWBYTES(png_ptr->row_info.pixel_depth,
  674.        png_ptr->row_info.width);
  675.    if(png_ptr->row_buf[0])
  676.    png_read_filter_row(png_ptr, &(png_ptr->row_info),
  677.       png_ptr->row_buf + 1, png_ptr->prev_row + 1,
  678.       (int)(png_ptr->row_buf[0]));
  679.    png_memcpy_check(png_ptr, png_ptr->prev_row, png_ptr->row_buf,
  680.       png_ptr->rowbytes + 1);
  681. #if defined(PNG_MNG_FEATURES_SUPPORTED)
  682.    if((png_ptr->mng_features_permitted & PNG_FLAG_MNG_FILTER_64) &&
  683.       (png_ptr->filter_type == PNG_INTRAPIXEL_DIFFERENCING))
  684.    {
  685.       /* Intrapixel differencing */
  686.       png_do_read_intrapixel(&(png_ptr->row_info), png_ptr->row_buf + 1);
  687.    }
  688. #endif
  689.    if (png_ptr->transformations || (png_ptr->flags&PNG_FLAG_STRIP_ALPHA))
  690.       png_do_read_transformations(png_ptr);
  691. #if defined(PNG_READ_INTERLACING_SUPPORTED)
  692.    /* blow up interlaced rows to full size */
  693.    if (png_ptr->interlaced &&
  694.       (png_ptr->transformations & PNG_INTERLACE))
  695.    {
  696.       if (png_ptr->pass < 6)
  697. /*       old interface (pre-1.0.9):
  698.          png_do_read_interlace(&(png_ptr->row_info),
  699.             png_ptr->row_buf + 1, png_ptr->pass, png_ptr->transformations);
  700.  */
  701.          png_do_read_interlace(png_ptr);
  702.       if (dsp_row != NULL)
  703.          png_combine_row(png_ptr, dsp_row,
  704.             png_pass_dsp_mask[png_ptr->pass]);
  705.       if (row != NULL)
  706.          png_combine_row(png_ptr, row,
  707.             png_pass_mask[png_ptr->pass]);
  708.    }
  709.    else
  710. #endif
  711.    {
  712.       if (row != NULL)
  713.          png_combine_row(png_ptr, row, 0xff);
  714.       if (dsp_row != NULL)
  715.          png_combine_row(png_ptr, dsp_row, 0xff);
  716.    }
  717.    png_read_finish_row(png_ptr);
  718.    if (png_ptr->read_row_fn != NULL)
  719.       (*(png_ptr->read_row_fn))(png_ptr, png_ptr->row_number, png_ptr->pass);
  720. }
  721. #endif /* PNG_NO_SEQUENTIAL_READ_SUPPORTED */
  722. #ifndef PNG_NO_SEQUENTIAL_READ_SUPPORTED
  723. /* Read one or more rows of image data.  If the image is interlaced,
  724.  * and png_set_interlace_handling() has been called, the rows need to
  725.  * contain the contents of the rows from the previous pass.  If the
  726.  * image has alpha or transparency, and png_handle_alpha()[*] has been
  727.  * called, the rows contents must be initialized to the contents of the
  728.  * screen.
  729.  *
  730.  * "row" holds the actual image, and pixels are placed in it
  731.  * as they arrive.  If the image is displayed after each pass, it will
  732.  * appear to "sparkle" in.  "display_row" can be used to display a
  733.  * "chunky" progressive image, with finer detail added as it becomes
  734.  * available.  If you do not want this "chunky" display, you may pass
  735.  * NULL for display_row.  If you do not want the sparkle display, and
  736.  * you have not called png_handle_alpha(), you may pass NULL for rows.
  737.  * If you have called png_handle_alpha(), and the image has either an
  738.  * alpha channel or a transparency chunk, you must provide a buffer for
  739.  * rows.  In this case, you do not have to provide a display_row buffer
  740.  * also, but you may.  If the image is not interlaced, or if you have
  741.  * not called png_set_interlace_handling(), the display_row buffer will
  742.  * be ignored, so pass NULL to it.
  743.  *
  744.  * [*] png_handle_alpha() does not exist yet, as of this version of libpng
  745.  */
  746. void PNGAPI
  747. png_read_rows(png_structp png_ptr, png_bytepp row,
  748.    png_bytepp display_row, png_uint_32 num_rows)
  749. {
  750.    png_uint_32 i;
  751.    png_bytepp rp;
  752.    png_bytepp dp;
  753.    png_debug(1, "in png_read_rowsn");
  754.    rp = row;
  755.    dp = display_row;
  756.    if (rp != NULL && dp != NULL)
  757.       for (i = 0; i < num_rows; i++)
  758.       {
  759.          png_bytep rptr = *rp++;
  760.          png_bytep dptr = *dp++;
  761.          png_read_row(png_ptr, rptr, dptr);
  762.       }
  763.    else if(rp != NULL)
  764.       for (i = 0; i < num_rows; i++)
  765.       {
  766.          png_bytep rptr = *rp;
  767.          png_read_row(png_ptr, rptr, png_bytep_NULL);
  768.          rp++;
  769.       }
  770.    else if(dp != NULL)
  771.       for (i = 0; i < num_rows; i++)
  772.       {
  773.          png_bytep dptr = *dp;
  774.          png_read_row(png_ptr, png_bytep_NULL, dptr);
  775.          dp++;
  776.       }
  777. }
  778. #endif /* PNG_NO_SEQUENTIAL_READ_SUPPORTED */
  779. #ifndef PNG_NO_SEQUENTIAL_READ_SUPPORTED
  780. /* Read the entire image.  If the image has an alpha channel or a tRNS
  781.  * chunk, and you have called png_handle_alpha()[*], you will need to
  782.  * initialize the image to the current image that PNG will be overlaying.
  783.  * We set the num_rows again here, in case it was incorrectly set in
  784.  * png_read_start_row() by a call to png_read_update_info() or
  785.  * png_start_read_image() if png_set_interlace_handling() wasn't called
  786.  * prior to either of these functions like it should have been.  You can
  787.  * only call this function once.  If you desire to have an image for
  788.  * each pass of a interlaced image, use png_read_rows() instead.
  789.  *
  790.  * [*] png_handle_alpha() does not exist yet, as of this version of libpng
  791.  */
  792. void PNGAPI
  793. png_read_image(png_structp png_ptr, png_bytepp image)
  794. {
  795.    png_uint_32 i,image_height;
  796.    int pass, j;
  797.    png_bytepp rp;
  798.    png_debug(1, "in png_read_imagen");
  799. #ifdef PNG_READ_INTERLACING_SUPPORTED
  800.    pass = png_set_interlace_handling(png_ptr);
  801. #else
  802.    if (png_ptr->interlaced)
  803.       png_error(png_ptr,
  804.         "Cannot read interlaced image -- interlace handler disabled.");
  805.    pass = 1;
  806. #endif
  807.    image_height=png_ptr->height;
  808.    png_ptr->num_rows = image_height; /* Make sure this is set correctly */
  809.    for (j = 0; j < pass; j++)
  810.    {
  811.       rp = image;
  812.       for (i = 0; i < image_height; i++)
  813.       {
  814.          png_read_row(png_ptr, *rp, png_bytep_NULL);
  815.          rp++;
  816.       }
  817.    }
  818. }
  819. #endif /* PNG_NO_SEQUENTIAL_READ_SUPPORTED */
  820. #ifndef PNG_NO_SEQUENTIAL_READ_SUPPORTED
  821. /* Read the end of the PNG file.  Will not read past the end of the
  822.  * file, will verify the end is accurate, and will read any comments
  823.  * or time information at the end of the file, if info is not NULL.
  824.  */
  825. void PNGAPI
  826. png_read_end(png_structp png_ptr, png_infop info_ptr)
  827. {
  828.    png_byte chunk_length[4];
  829.    png_uint_32 length;
  830.    png_debug(1, "in png_read_endn");
  831.    png_crc_finish(png_ptr, 0); /* Finish off CRC from last IDAT chunk */
  832.    do
  833.    {
  834. #ifdef PNG_USE_LOCAL_ARRAYS
  835.       PNG_IHDR;
  836.       PNG_IDAT;
  837.       PNG_IEND;
  838.       PNG_PLTE;
  839. #if defined(PNG_READ_bKGD_SUPPORTED)
  840.       PNG_bKGD;
  841. #endif
  842. #if defined(PNG_READ_cHRM_SUPPORTED)
  843.       PNG_cHRM;
  844. #endif
  845. #if defined(PNG_READ_gAMA_SUPPORTED)
  846.       PNG_gAMA;
  847. #endif
  848. #if defined(PNG_READ_hIST_SUPPORTED)
  849.       PNG_hIST;
  850. #endif
  851. #if defined(PNG_READ_iCCP_SUPPORTED)
  852.       PNG_iCCP;
  853. #endif
  854. #if defined(PNG_READ_iTXt_SUPPORTED)
  855.       PNG_iTXt;
  856. #endif
  857. #if defined(PNG_READ_oFFs_SUPPORTED)
  858.       PNG_oFFs;
  859. #endif
  860. #if defined(PNG_READ_pCAL_SUPPORTED)
  861.       PNG_pCAL;
  862. #endif
  863. #if defined(PNG_READ_pHYs_SUPPORTED)
  864.       PNG_pHYs;
  865. #endif
  866. #if defined(PNG_READ_sBIT_SUPPORTED)
  867.       PNG_sBIT;
  868. #endif
  869. #if defined(PNG_READ_sCAL_SUPPORTED)
  870.       PNG_sCAL;
  871. #endif
  872. #if defined(PNG_READ_sPLT_SUPPORTED)
  873.       PNG_sPLT;
  874. #endif
  875. #if defined(PNG_READ_sRGB_SUPPORTED)
  876.       PNG_sRGB;
  877. #endif
  878. #if defined(PNG_READ_tEXt_SUPPORTED)
  879.       PNG_tEXt;
  880. #endif
  881. #if defined(PNG_READ_tIME_SUPPORTED)
  882.       PNG_tIME;
  883. #endif
  884. #if defined(PNG_READ_tRNS_SUPPORTED)
  885.       PNG_tRNS;
  886. #endif
  887. #if defined(PNG_READ_zTXt_SUPPORTED)
  888.       PNG_zTXt;
  889. #endif
  890. #endif /* PNG_USE_LOCAL_ARRAYS */
  891.       png_read_data(png_ptr, chunk_length, 4);
  892.       length = png_get_uint_31(png_ptr,chunk_length);
  893.       png_reset_crc(png_ptr);
  894.       png_crc_read(png_ptr, png_ptr->chunk_name, 4);
  895.       png_debug1(0, "Reading %s chunk.n", png_ptr->chunk_name);
  896.       if (!png_memcmp(png_ptr->chunk_name, png_IHDR, 4))
  897.          png_handle_IHDR(png_ptr, info_ptr, length);
  898.       else if (!png_memcmp(png_ptr->chunk_name, png_IEND, 4))
  899.          png_handle_IEND(png_ptr, info_ptr, length);
  900. #ifdef PNG_HANDLE_AS_UNKNOWN_SUPPORTED
  901.       else if (png_handle_as_unknown(png_ptr, png_ptr->chunk_name))
  902.       {
  903.          if (!png_memcmp(png_ptr->chunk_name, png_IDAT, 4))
  904.          {
  905.             if (length > 0 || png_ptr->mode & PNG_AFTER_IDAT)
  906.                png_error(png_ptr, "Too many IDAT's found");
  907.          }
  908.          else
  909.             png_ptr->mode |= PNG_AFTER_IDAT;
  910.          png_handle_unknown(png_ptr, info_ptr, length);
  911.          if (!png_memcmp(png_ptr->chunk_name, png_PLTE, 4))
  912.             png_ptr->mode |= PNG_HAVE_PLTE;
  913.       }
  914. #endif
  915.       else if (!png_memcmp(png_ptr->chunk_name, png_IDAT, 4))
  916.       {
  917.          /* Zero length IDATs are legal after the last IDAT has been
  918.           * read, but not after other chunks have been read.
  919.           */
  920.          if (length > 0 || png_ptr->mode & PNG_AFTER_IDAT)
  921.             png_error(png_ptr, "Too many IDAT's found");
  922.          png_crc_finish(png_ptr, length);
  923.       }
  924.       else if (!png_memcmp(png_ptr->chunk_name, png_PLTE, 4))
  925.          png_handle_PLTE(png_ptr, info_ptr, length);
  926. #if defined(PNG_READ_bKGD_SUPPORTED)
  927.       else if (!png_memcmp(png_ptr->chunk_name, png_bKGD, 4))
  928.          png_handle_bKGD(png_ptr, info_ptr, length);
  929. #endif
  930. #if defined(PNG_READ_cHRM_SUPPORTED)
  931.       else if (!png_memcmp(png_ptr->chunk_name, png_cHRM, 4))
  932.          png_handle_cHRM(png_ptr, info_ptr, length);
  933. #endif
  934. #if defined(PNG_READ_gAMA_SUPPORTED)
  935.       else if (!png_memcmp(png_ptr->chunk_name, png_gAMA, 4))
  936.          png_handle_gAMA(png_ptr, info_ptr, length);
  937. #endif
  938. #if defined(PNG_READ_hIST_SUPPORTED)
  939.       else if (!png_memcmp(png_ptr->chunk_name, png_hIST, 4))
  940.          png_handle_hIST(png_ptr, info_ptr, length);
  941. #endif
  942. #if defined(PNG_READ_oFFs_SUPPORTED)
  943.       else if (!png_memcmp(png_ptr->chunk_name, png_oFFs, 4))
  944.          png_handle_oFFs(png_ptr, info_ptr, length);
  945. #endif
  946. #if defined(PNG_READ_pCAL_SUPPORTED)
  947.       else if (!png_memcmp(png_ptr->chunk_name, png_pCAL, 4))
  948.          png_handle_pCAL(png_ptr, info_ptr, length);
  949. #endif
  950. #if defined(PNG_READ_sCAL_SUPPORTED)
  951.       else if (!png_memcmp(png_ptr->chunk_name, png_sCAL, 4))
  952.          png_handle_sCAL(png_ptr, info_ptr, length);
  953. #endif
  954. #if defined(PNG_READ_pHYs_SUPPORTED)
  955.       else if (!png_memcmp(png_ptr->chunk_name, png_pHYs, 4))
  956.          png_handle_pHYs(png_ptr, info_ptr, length);
  957. #endif
  958. #if defined(PNG_READ_sBIT_SUPPORTED)
  959.       else if (!png_memcmp(png_ptr->chunk_name, png_sBIT, 4))
  960.          png_handle_sBIT(png_ptr, info_ptr, length);
  961. #endif
  962. #if defined(PNG_READ_sRGB_SUPPORTED)
  963.       else if (!png_memcmp(png_ptr->chunk_name, png_sRGB, 4))
  964.          png_handle_sRGB(png_ptr, info_ptr, length);
  965. #endif
  966. #if defined(PNG_READ_iCCP_SUPPORTED)
  967.       else if (!png_memcmp(png_ptr->chunk_name, png_iCCP, 4))
  968.          png_handle_iCCP(png_ptr, info_ptr, length);
  969. #endif
  970. #if defined(PNG_READ_sPLT_SUPPORTED)
  971.       else if (!png_memcmp(png_ptr->chunk_name, png_sPLT, 4))
  972.          png_handle_sPLT(png_ptr, info_ptr, length);
  973. #endif
  974. #if defined(PNG_READ_tEXt_SUPPORTED)
  975.       else if (!png_memcmp(png_ptr->chunk_name, png_tEXt, 4))
  976.          png_handle_tEXt(png_ptr, info_ptr, length);
  977. #endif
  978. #if defined(PNG_READ_tIME_SUPPORTED)
  979.       else if (!png_memcmp(png_ptr->chunk_name, png_tIME, 4))
  980.          png_handle_tIME(png_ptr, info_ptr, length);
  981. #endif
  982. #if defined(PNG_READ_tRNS_SUPPORTED)
  983.       else if (!png_memcmp(png_ptr->chunk_name, png_tRNS, 4))
  984.          png_handle_tRNS(png_ptr, info_ptr, length);
  985. #endif
  986. #if defined(PNG_READ_zTXt_SUPPORTED)
  987.       else if (!png_memcmp(png_ptr->chunk_name, png_zTXt, 4))
  988.          png_handle_zTXt(png_ptr, info_ptr, length);
  989. #endif
  990. #if defined(PNG_READ_iTXt_SUPPORTED)
  991.       else if (!png_memcmp(png_ptr->chunk_name, png_iTXt, 4))
  992.          png_handle_iTXt(png_ptr, info_ptr, length);
  993. #endif
  994.       else
  995.          png_handle_unknown(png_ptr, info_ptr, length);
  996.    } while (!(png_ptr->mode & PNG_HAVE_IEND));
  997. }
  998. #endif /* PNG_NO_SEQUENTIAL_READ_SUPPORTED */
  999. /* free all memory used by the read */
  1000. void PNGAPI
  1001. png_destroy_read_struct(png_structpp png_ptr_ptr, png_infopp info_ptr_ptr,
  1002.    png_infopp end_info_ptr_ptr)
  1003. {
  1004.    png_structp png_ptr = NULL;
  1005.    png_infop info_ptr = NULL, end_info_ptr = NULL;
  1006. #ifdef PNG_USER_MEM_SUPPORTED
  1007.    png_free_ptr free_fn;
  1008.    png_voidp mem_ptr;
  1009. #endif
  1010.    png_debug(1, "in png_destroy_read_structn");
  1011.    if (png_ptr_ptr != NULL)
  1012.       png_ptr = *png_ptr_ptr;
  1013.    if (info_ptr_ptr != NULL)
  1014.       info_ptr = *info_ptr_ptr;
  1015.    if (end_info_ptr_ptr != NULL)
  1016.       end_info_ptr = *end_info_ptr_ptr;
  1017. #ifdef PNG_USER_MEM_SUPPORTED
  1018.    free_fn = png_ptr->free_fn;
  1019.    mem_ptr = png_ptr->mem_ptr;
  1020. #endif
  1021.    png_read_destroy(png_ptr, info_ptr, end_info_ptr);
  1022.    if (info_ptr != NULL)
  1023.    {
  1024. #if defined(PNG_TEXT_SUPPORTED)
  1025.       png_free_data(png_ptr, info_ptr, PNG_FREE_TEXT, -1);
  1026. #endif
  1027. #ifdef PNG_USER_MEM_SUPPORTED
  1028.       png_destroy_struct_2((png_voidp)info_ptr, (png_free_ptr)free_fn,
  1029.           (png_voidp)mem_ptr);
  1030. #else
  1031.       png_destroy_struct((png_voidp)info_ptr);
  1032. #endif
  1033.       *info_ptr_ptr = NULL;
  1034.    }
  1035.    if (end_info_ptr != NULL)
  1036.    {
  1037. #if defined(PNG_READ_TEXT_SUPPORTED)
  1038.       png_free_data(png_ptr, end_info_ptr, PNG_FREE_TEXT, -1);
  1039. #endif
  1040. #ifdef PNG_USER_MEM_SUPPORTED
  1041.       png_destroy_struct_2((png_voidp)end_info_ptr, (png_free_ptr)free_fn,
  1042.          (png_voidp)mem_ptr);
  1043. #else
  1044.       png_destroy_struct((png_voidp)end_info_ptr);
  1045. #endif
  1046.       *end_info_ptr_ptr = NULL;
  1047.    }
  1048.    if (png_ptr != NULL)
  1049.    {
  1050. #ifdef PNG_USER_MEM_SUPPORTED
  1051.       png_destroy_struct_2((png_voidp)png_ptr, (png_free_ptr)free_fn,
  1052.           (png_voidp)mem_ptr);
  1053. #else
  1054.       png_destroy_struct((png_voidp)png_ptr);
  1055. #endif
  1056.       *png_ptr_ptr = NULL;
  1057.    }
  1058. }
  1059. /* free all memory used by the read (old method) */
  1060. void /* PRIVATE */
  1061. png_read_destroy(png_structp png_ptr, png_infop info_ptr, png_infop end_info_ptr)
  1062. {
  1063. #ifdef PNG_SETJMP_SUPPORTED
  1064.    jmp_buf tmp_jmp;
  1065. #endif
  1066.    png_error_ptr error_fn;
  1067.    png_error_ptr warning_fn;
  1068.    png_voidp error_ptr;
  1069. #ifdef PNG_USER_MEM_SUPPORTED
  1070.    png_free_ptr free_fn;
  1071. #endif
  1072.    png_debug(1, "in png_read_destroyn");
  1073.    if (info_ptr != NULL)
  1074.       png_info_destroy(png_ptr, info_ptr);
  1075.    if (end_info_ptr != NULL)
  1076.       png_info_destroy(png_ptr, end_info_ptr);
  1077.    png_free(png_ptr, png_ptr->zbuf);
  1078.    png_free(png_ptr, png_ptr->big_row_buf);
  1079.    png_free(png_ptr, png_ptr->prev_row);
  1080. #if defined(PNG_READ_DITHER_SUPPORTED)
  1081.    png_free(png_ptr, png_ptr->palette_lookup);
  1082.    png_free(png_ptr, png_ptr->dither_index);
  1083. #endif
  1084. #if defined(PNG_READ_GAMMA_SUPPORTED)
  1085.    png_free(png_ptr, png_ptr->gamma_table);
  1086. #endif
  1087. #if defined(PNG_READ_BACKGROUND_SUPPORTED)
  1088.    png_free(png_ptr, png_ptr->gamma_from_1);
  1089.    png_free(png_ptr, png_ptr->gamma_to_1);
  1090. #endif
  1091. #ifdef PNG_FREE_ME_SUPPORTED
  1092.    if (png_ptr->free_me & PNG_FREE_PLTE)
  1093.       png_zfree(png_ptr, png_ptr->palette);
  1094.    png_ptr->free_me &= ~PNG_FREE_PLTE;
  1095. #else
  1096.    if (png_ptr->flags & PNG_FLAG_FREE_PLTE)
  1097.       png_zfree(png_ptr, png_ptr->palette);
  1098.    png_ptr->flags &= ~PNG_FLAG_FREE_PLTE;
  1099. #endif
  1100. #if defined(PNG_tRNS_SUPPORTED) || 
  1101.     defined(PNG_READ_EXPAND_SUPPORTED) || defined(PNG_READ_BACKGROUND_SUPPORTED)
  1102. #ifdef PNG_FREE_ME_SUPPORTED
  1103.    if (png_ptr->free_me & PNG_FREE_TRNS)
  1104.       png_free(png_ptr, png_ptr->trans);
  1105.    png_ptr->free_me &= ~PNG_FREE_TRNS;
  1106. #else
  1107.    if (png_ptr->flags & PNG_FLAG_FREE_TRNS)
  1108.       png_free(png_ptr, png_ptr->trans);
  1109.    png_ptr->flags &= ~PNG_FLAG_FREE_TRNS;
  1110. #endif
  1111. #endif
  1112. #if defined(PNG_READ_hIST_SUPPORTED)
  1113. #ifdef PNG_FREE_ME_SUPPORTED
  1114.    if (png_ptr->free_me & PNG_FREE_HIST)
  1115.       png_free(png_ptr, png_ptr->hist);
  1116.    png_ptr->free_me &= ~PNG_FREE_HIST;
  1117. #else
  1118.    if (png_ptr->flags & PNG_FLAG_FREE_HIST)
  1119.       png_free(png_ptr, png_ptr->hist);
  1120.    png_ptr->flags &= ~PNG_FLAG_FREE_HIST;
  1121. #endif
  1122. #endif
  1123. #if defined(PNG_READ_GAMMA_SUPPORTED)
  1124.    if (png_ptr->gamma_16_table != NULL)
  1125.    {
  1126.       int i;
  1127.       int istop = (1 << (8 - png_ptr->gamma_shift));
  1128.       for (i = 0; i < istop; i++)
  1129.       {
  1130.          png_free(png_ptr, png_ptr->gamma_16_table[i]);
  1131.       }
  1132.    png_free(png_ptr, png_ptr->gamma_16_table);
  1133.    }
  1134. #if defined(PNG_READ_BACKGROUND_SUPPORTED)
  1135.    if (png_ptr->gamma_16_from_1 != NULL)
  1136.    {
  1137.       int i;
  1138.       int istop = (1 << (8 - png_ptr->gamma_shift));
  1139.       for (i = 0; i < istop; i++)
  1140.       {
  1141.          png_free(png_ptr, png_ptr->gamma_16_from_1[i]);
  1142.       }
  1143.    png_free(png_ptr, png_ptr->gamma_16_from_1);
  1144.    }
  1145.    if (png_ptr->gamma_16_to_1 != NULL)
  1146.    {
  1147.       int i;
  1148.       int istop = (1 << (8 - png_ptr->gamma_shift));
  1149.       for (i = 0; i < istop; i++)
  1150.       {
  1151.          png_free(png_ptr, png_ptr->gamma_16_to_1[i]);
  1152.       }
  1153.    png_free(png_ptr, png_ptr->gamma_16_to_1);
  1154.    }
  1155. #endif
  1156. #endif
  1157. #if defined(PNG_TIME_RFC1123_SUPPORTED)
  1158.    png_free(png_ptr, png_ptr->time_buffer);
  1159. #endif
  1160.    inflateEnd(&png_ptr->zstream);
  1161. #ifdef PNG_PROGRESSIVE_READ_SUPPORTED
  1162.    png_free(png_ptr, png_ptr->save_buffer);
  1163. #endif
  1164. #ifdef PNG_PROGRESSIVE_READ_SUPPORTED
  1165. #ifdef PNG_TEXT_SUPPORTED
  1166.    png_free(png_ptr, png_ptr->current_text);
  1167. #endif /* PNG_TEXT_SUPPORTED */
  1168. #endif /* PNG_PROGRESSIVE_READ_SUPPORTED */
  1169.    /* Save the important info out of the png_struct, in case it is
  1170.     * being used again.
  1171.     */
  1172. #ifdef PNG_SETJMP_SUPPORTED
  1173.    png_memcpy(tmp_jmp, png_ptr->jmpbuf, png_sizeof (jmp_buf));
  1174. #endif
  1175.    error_fn = png_ptr->error_fn;
  1176.    warning_fn = png_ptr->warning_fn;
  1177.    error_ptr = png_ptr->error_ptr;
  1178. #ifdef PNG_USER_MEM_SUPPORTED
  1179.    free_fn = png_ptr->free_fn;
  1180. #endif
  1181.    png_memset(png_ptr, 0, png_sizeof (png_struct));
  1182.    png_ptr->error_fn = error_fn;
  1183.    png_ptr->warning_fn = warning_fn;
  1184.    png_ptr->error_ptr = error_ptr;
  1185. #ifdef PNG_USER_MEM_SUPPORTED
  1186.    png_ptr->free_fn = free_fn;
  1187. #endif
  1188. #ifdef PNG_SETJMP_SUPPORTED
  1189.    png_memcpy(png_ptr->jmpbuf, tmp_jmp, png_sizeof (jmp_buf));
  1190. #endif
  1191. }
  1192. void PNGAPI
  1193. png_set_read_status_fn(png_structp png_ptr, png_read_status_ptr read_row_fn)
  1194. {
  1195.    png_ptr->read_row_fn = read_row_fn;
  1196. }
  1197. #ifndef PNG_NO_SEQUENTIAL_READ_SUPPORTED
  1198. #if defined(PNG_INFO_IMAGE_SUPPORTED)
  1199. void PNGAPI
  1200. png_read_png(png_structp png_ptr, png_infop info_ptr,
  1201.                            int transforms,
  1202.                            voidp params)
  1203. {
  1204.    int row;
  1205. #if defined(PNG_READ_INVERT_ALPHA_SUPPORTED)
  1206.    /* invert the alpha channel from opacity to transparency
  1207.     */
  1208.    if (transforms & PNG_TRANSFORM_INVERT_ALPHA)
  1209.        png_set_invert_alpha(png_ptr);
  1210. #endif
  1211.    /* png_read_info() gives us all of the information from the
  1212.     * PNG file before the first IDAT (image data chunk).
  1213.     */
  1214.    png_read_info(png_ptr, info_ptr);
  1215.    if (info_ptr->height > PNG_UINT_32_MAX/png_sizeof(png_bytep))
  1216.       png_error(png_ptr,"Image is too high to process with png_read_png()");
  1217.    /* -------------- image transformations start here ------------------- */
  1218. #if defined(PNG_READ_16_TO_8_SUPPORTED)
  1219.    /* tell libpng to strip 16 bit/color files down to 8 bits per color
  1220.     */
  1221.    if (transforms & PNG_TRANSFORM_STRIP_16)
  1222.        png_set_strip_16(png_ptr);
  1223. #endif
  1224. #if defined(PNG_READ_STRIP_ALPHA_SUPPORTED)
  1225.    /* Strip alpha bytes from the input data without combining with
  1226.     * the background (not recommended).
  1227.     */
  1228.    if (transforms & PNG_TRANSFORM_STRIP_ALPHA)
  1229.        png_set_strip_alpha(png_ptr);
  1230. #endif
  1231. #if defined(PNG_READ_PACK_SUPPORTED) && !defined(PNG_READ_EXPAND_SUPPORTED)
  1232.    /* Extract multiple pixels with bit depths of 1, 2, or 4 from a single
  1233.     * byte into separate bytes (useful for paletted and grayscale images).
  1234.     */
  1235.    if (transforms & PNG_TRANSFORM_PACKING)
  1236.        png_set_packing(png_ptr);
  1237. #endif
  1238. #if defined(PNG_READ_PACKSWAP_SUPPORTED)
  1239.    /* Change the order of packed pixels to least significant bit first
  1240.     * (not useful if you are using png_set_packing).
  1241.     */
  1242.    if (transforms & PNG_TRANSFORM_PACKSWAP)
  1243.        png_set_packswap(png_ptr);
  1244. #endif
  1245. #if defined(PNG_READ_EXPAND_SUPPORTED)
  1246.    /* Expand paletted colors into true RGB triplets
  1247.     * Expand grayscale images to full 8 bits from 1, 2, or 4 bits/pixel
  1248.     * Expand paletted or RGB images with transparency to full alpha
  1249.     * channels so the data will be available as RGBA quartets.
  1250.     */
  1251.    if (transforms & PNG_TRANSFORM_EXPAND)
  1252.        if ((png_ptr->bit_depth < 8) ||
  1253.            (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE) ||
  1254.            (png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS)))
  1255.          png_set_expand(png_ptr);
  1256. #endif
  1257.    /* We don't handle background color or gamma transformation or dithering.
  1258.     */
  1259. #if defined(PNG_READ_INVERT_SUPPORTED)
  1260.    /* invert monochrome files to have 0 as white and 1 as black
  1261.     */
  1262.    if (transforms & PNG_TRANSFORM_INVERT_MONO)
  1263.        png_set_invert_mono(png_ptr);
  1264. #endif
  1265. #if defined(PNG_READ_SHIFT_SUPPORTED)
  1266.    /* If you want to shift the pixel values from the range [0,255] or
  1267.     * [0,65535] to the original [0,7] or [0,31], or whatever range the
  1268.     * colors were originally in:
  1269.     */
  1270.    if ((transforms & PNG_TRANSFORM_SHIFT)
  1271.        && png_get_valid(png_ptr, info_ptr, PNG_INFO_sBIT))
  1272.    {
  1273.       png_color_8p sig_bit;
  1274.       png_get_sBIT(png_ptr, info_ptr, &sig_bit);
  1275.       png_set_shift(png_ptr, sig_bit);
  1276.    }
  1277. #endif
  1278. #if defined(PNG_READ_BGR_SUPPORTED)
  1279.    /* flip the RGB pixels to BGR (or RGBA to BGRA)
  1280.     */
  1281.    if (transforms & PNG_TRANSFORM_BGR)
  1282.        png_set_bgr(png_ptr);
  1283. #endif
  1284. #if defined(PNG_READ_SWAP_ALPHA_SUPPORTED)
  1285.    /* swap the RGBA or GA data to ARGB or AG (or BGRA to ABGR)
  1286.     */
  1287.    if (transforms & PNG_TRANSFORM_SWAP_ALPHA)
  1288.        png_set_swap_alpha(png_ptr);
  1289. #endif
  1290. #if defined(PNG_READ_SWAP_SUPPORTED)
  1291.    /* swap bytes of 16 bit files to least significant byte first
  1292.     */
  1293.    if (transforms & PNG_TRANSFORM_SWAP_ENDIAN)
  1294.        png_set_swap(png_ptr);
  1295. #endif
  1296.    /* We don't handle adding filler bytes */
  1297.    /* Optional call to gamma correct and add the background to the palette
  1298.     * and update info structure.  REQUIRED if you are expecting libpng to
  1299.     * update the palette for you (i.e., you selected such a transform above).
  1300.     */
  1301.    png_read_update_info(png_ptr, info_ptr);
  1302.    /* -------------- image transformations end here ------------------- */
  1303. #ifdef PNG_FREE_ME_SUPPORTED
  1304.    png_free_data(png_ptr, info_ptr, PNG_FREE_ROWS, 0);
  1305. #endif
  1306.    if(info_ptr->row_pointers == NULL)
  1307.    {
  1308.       info_ptr->row_pointers = (png_bytepp)png_malloc(png_ptr,
  1309.          info_ptr->height * png_sizeof(png_bytep));
  1310. #ifdef PNG_FREE_ME_SUPPORTED
  1311.       info_ptr->free_me |= PNG_FREE_ROWS;
  1312. #endif
  1313.       for (row = 0; row < (int)info_ptr->height; row++)
  1314.       {
  1315.          info_ptr->row_pointers[row] = (png_bytep)png_malloc(png_ptr,
  1316.             png_get_rowbytes(png_ptr, info_ptr));
  1317.       }
  1318.    }
  1319.    png_read_image(png_ptr, info_ptr->row_pointers);
  1320.    info_ptr->valid |= PNG_INFO_IDAT;
  1321.    /* read rest of file, and get additional chunks in info_ptr - REQUIRED */
  1322.    png_read_end(png_ptr, info_ptr);
  1323.    if(transforms == 0 || params == NULL)
  1324.       /* quiet compiler warnings */ return;
  1325. }
  1326. #endif /* PNG_INFO_IMAGE_SUPPORTED */
  1327. #endif /* PNG_NO_SEQUENTIAL_READ_SUPPORTED */
  1328. #endif /* PNG_READ_SUPPORTED */