pngread.c
上传用户:jnfxsk
上传日期:2022-06-16
资源大小:3675k
文件大小:47k
源码类别:

游戏引擎

开发平台:

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