pngread.c
上传用户:sesekoo
上传日期:2020-07-18
资源大小:21543k
文件大小:47k
源码类别:

界面编程

开发平台:

Visual C++

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