pngread.c
上传用户:hmc_gdtv
上传日期:2013-08-04
资源大小:798k
文件大小:47k
源码类别:

Windows Mobile

开发平台:

Visual C++

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