png.c
上传用户:looem2003
上传日期:2014-07-20
资源大小:13733k
文件大小:24k
源码类别:

打印编程

开发平台:

Visual C++

  1. /* png.c - location for general purpose libpng functions
  2.  *
  3.  * Last changed in libpng 1.2.15 December 31, 2006
  4.  * For conditions of distribution and use, see copyright notice in png.h
  5.  * Copyright (c) 1998-2006 Glenn Randers-Pehrson
  6.  * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
  7.  * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
  8.  */
  9. #define PNG_INTERNAL
  10. #define PNG_NO_EXTERN
  11. #include "png.h"
  12. /* Generate a compiler error if there is an old png.h in the search path. */
  13. typedef version_1_0_23rc3 Your_png_h_is_not_version_1_0_23rc3;
  14. /* Version information for C files.  This had better match the version
  15.  * string defined in png.h.  */
  16. #ifdef PNG_USE_GLOBAL_ARRAYS
  17. /* png_libpng_ver was changed to a function in version 1.0.5c */
  18. const char png_libpng_ver[18] = PNG_LIBPNG_VER_STRING;
  19. #ifdef PNG_READ_SUPPORTED
  20. /* png_sig was changed to a function in version 1.0.5c */
  21. /* Place to hold the signature string for a PNG file. */
  22. const png_byte FARDATA png_sig[8] = {137, 80, 78, 71, 13, 10, 26, 10};
  23. #endif /* PNG_READ_SUPPORTED */
  24. /* Invoke global declarations for constant strings for known chunk types */
  25. PNG_IHDR;
  26. PNG_IDAT;
  27. PNG_IEND;
  28. PNG_PLTE;
  29. PNG_bKGD;
  30. PNG_cHRM;
  31. PNG_gAMA;
  32. PNG_hIST;
  33. PNG_iCCP;
  34. PNG_iTXt;
  35. PNG_oFFs;
  36. PNG_pCAL;
  37. PNG_sCAL;
  38. PNG_pHYs;
  39. PNG_sBIT;
  40. PNG_sPLT;
  41. PNG_sRGB;
  42. PNG_tEXt;
  43. PNG_tIME;
  44. PNG_tRNS;
  45. PNG_zTXt;
  46. #ifdef PNG_READ_SUPPORTED
  47. /* arrays to facilitate easy interlacing - use pass (0 - 6) as index */
  48. /* start of interlace block */
  49. const int FARDATA png_pass_start[] = {0, 4, 0, 2, 0, 1, 0};
  50. /* offset to next interlace block */
  51. const int FARDATA png_pass_inc[] = {8, 8, 4, 4, 2, 2, 1};
  52. /* start of interlace block in the y direction */
  53. const int FARDATA png_pass_ystart[] = {0, 0, 4, 0, 2, 0, 1};
  54. /* offset to next interlace block in the y direction */
  55. const int FARDATA png_pass_yinc[] = {8, 8, 8, 4, 4, 2, 2};
  56. /* width of interlace block (used in assembler routines only) */
  57. #ifdef PNG_HAVE_ASSEMBLER_COMBINE_ROW
  58. const int FARDATA png_pass_width[] = {8, 4, 4, 2, 2, 1, 1};
  59. #endif
  60. /* Height of interlace block.  This is not currently used - if you need
  61.  * it, uncomment it here and in png.h
  62. const int FARDATA png_pass_height[] = {8, 8, 4, 4, 2, 2, 1};
  63. */
  64. /* Mask to determine which pixels are valid in a pass */
  65. const int FARDATA png_pass_mask[] = {0x80, 0x08, 0x88, 0x22, 0xaa, 0x55, 0xff};
  66. /* Mask to determine which pixels to overwrite while displaying */
  67. const int FARDATA png_pass_dsp_mask[]
  68.    = {0xff, 0x0f, 0xff, 0x33, 0xff, 0x55, 0xff};
  69. #endif /* PNG_READ_SUPPORTED */
  70. #endif /* PNG_USE_GLOBAL_ARRAYS */
  71. /* Tells libpng that we have already handled the first "num_bytes" bytes
  72.  * of the PNG file signature.  If the PNG data is embedded into another
  73.  * stream we can set num_bytes = 8 so that libpng will not attempt to read
  74.  * or write any of the magic bytes before it starts on the IHDR.
  75.  */
  76. #ifdef PNG_READ_SUPPORTED
  77. void PNGAPI
  78. png_set_sig_bytes(png_structp png_ptr, int num_bytes)
  79. {
  80.    if(png_ptr == NULL) return;
  81.    png_debug(1, "in png_set_sig_bytesn");
  82.    if (num_bytes > 8)
  83.       png_error(png_ptr, "Too many bytes for PNG signature.");
  84.    png_ptr->sig_bytes = (png_byte)(num_bytes < 0 ? 0 : num_bytes);
  85. }
  86. /* Checks whether the supplied bytes match the PNG signature.  We allow
  87.  * checking less than the full 8-byte signature so that those apps that
  88.  * already read the first few bytes of a file to determine the file type
  89.  * can simply check the remaining bytes for extra assurance.  Returns
  90.  * an integer less than, equal to, or greater than zero if sig is found,
  91.  * respectively, to be less than, to match, or be greater than the correct
  92.  * PNG signature (this is the same behaviour as strcmp, memcmp, etc).
  93.  */
  94. int PNGAPI
  95. png_sig_cmp(png_bytep sig, png_size_t start, png_size_t num_to_check)
  96. {
  97.    png_byte png_signature[8] = {137, 80, 78, 71, 13, 10, 26, 10};
  98.    if (num_to_check > 8)
  99.       num_to_check = 8;
  100.    else if (num_to_check < 1)
  101.       return (-1);
  102.    if (start > 7)
  103.       return (-1);
  104.    if (start + num_to_check > 8)
  105.       num_to_check = 8 - start;
  106.    return ((int)(png_memcmp(&sig[start], &png_signature[start], num_to_check)));
  107. }
  108. #if defined(PNG_1_0_X) || defined(PNG_1_2_X)
  109. /* (Obsolete) function to check signature bytes.  It does not allow one
  110.  * to check a partial signature.  This function might be removed in the
  111.  * future - use png_sig_cmp().  Returns true (nonzero) if the file is a PNG.
  112.  */
  113. int PNGAPI
  114. png_check_sig(png_bytep sig, int num)
  115. {
  116.   return ((int)!png_sig_cmp(sig, (png_size_t)0, (png_size_t)num));
  117. }
  118. #endif
  119. #endif /* PNG_READ_SUPPORTED */
  120. #if defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED)
  121. /* Function to allocate memory for zlib and clear it to 0. */
  122. #ifdef PNG_1_0_X
  123. voidpf PNGAPI
  124. #else
  125. voidpf /* private */
  126. #endif
  127. png_zalloc(voidpf png_ptr, uInt items, uInt size)
  128. {
  129.    png_voidp ptr;
  130.    png_structp p=(png_structp)png_ptr;
  131.    png_uint_32 save_flags=p->flags;
  132.    png_uint_32 num_bytes;
  133.    if(png_ptr == NULL) return (NULL);
  134.    if (items > PNG_UINT_32_MAX/size)
  135.    {
  136.      png_warning (p, "Potential overflow in png_zalloc()");
  137.      return (NULL);
  138.    }
  139.    num_bytes = (png_uint_32)items * size;
  140.    p->flags|=PNG_FLAG_MALLOC_NULL_MEM_OK;
  141.    ptr = (png_voidp)png_malloc((png_structp)png_ptr, num_bytes);
  142.    p->flags=save_flags;
  143. #if defined(PNG_1_0_X) && !defined(PNG_NO_ZALLOC_ZERO)
  144.    if (ptr == NULL)
  145.        return ((voidpf)ptr);
  146.    if (num_bytes > (png_uint_32)0x8000L)
  147.    {
  148.       png_memset(ptr, 0, (png_size_t)0x8000L);
  149.       png_memset((png_bytep)ptr + (png_size_t)0x8000L, 0,
  150.          (png_size_t)(num_bytes - (png_uint_32)0x8000L));
  151.    }
  152.    else
  153.    {
  154.       png_memset(ptr, 0, (png_size_t)num_bytes);
  155.    }
  156. #endif
  157.    return ((voidpf)ptr);
  158. }
  159. /* function to free memory for zlib */
  160. #ifdef PNG_1_0_X
  161. void PNGAPI
  162. #else
  163. void /* private */
  164. #endif
  165. png_zfree(voidpf png_ptr, voidpf ptr)
  166. {
  167.    png_free((png_structp)png_ptr, (png_voidp)ptr);
  168. }
  169. /* Reset the CRC variable to 32 bits of 1's.  Care must be taken
  170.  * in case CRC is > 32 bits to leave the top bits 0.
  171.  */
  172. void /* PRIVATE */
  173. png_reset_crc(png_structp png_ptr)
  174. {
  175.    png_ptr->crc = crc32(0, Z_NULL, 0);
  176. }
  177. /* Calculate the CRC over a section of data.  We can only pass as
  178.  * much data to this routine as the largest single buffer size.  We
  179.  * also check that this data will actually be used before going to the
  180.  * trouble of calculating it.
  181.  */
  182. void /* PRIVATE */
  183. png_calculate_crc(png_structp png_ptr, png_bytep ptr, png_size_t length)
  184. {
  185.    int need_crc = 1;
  186.    if (png_ptr->chunk_name[0] & 0x20)                     /* ancillary */
  187.    {
  188.       if ((png_ptr->flags & PNG_FLAG_CRC_ANCILLARY_MASK) ==
  189.           (PNG_FLAG_CRC_ANCILLARY_USE | PNG_FLAG_CRC_ANCILLARY_NOWARN))
  190.          need_crc = 0;
  191.    }
  192.    else                                                    /* critical */
  193.    {
  194.       if (png_ptr->flags & PNG_FLAG_CRC_CRITICAL_IGNORE)
  195.          need_crc = 0;
  196.    }
  197.    if (need_crc)
  198.       png_ptr->crc = crc32(png_ptr->crc, ptr, (uInt)length);
  199. }
  200. /* Allocate the memory for an info_struct for the application.  We don't
  201.  * really need the png_ptr, but it could potentially be useful in the
  202.  * future.  This should be used in favour of malloc(png_sizeof(png_info))
  203.  * and png_info_init() so that applications that want to use a shared
  204.  * libpng don't have to be recompiled if png_info changes size.
  205.  */
  206. png_infop PNGAPI
  207. png_create_info_struct(png_structp png_ptr)
  208. {
  209.    png_infop info_ptr;
  210.    png_debug(1, "in png_create_info_structn");
  211.    if(png_ptr == NULL) return (NULL);
  212. #ifdef PNG_USER_MEM_SUPPORTED
  213.    info_ptr = (png_infop)png_create_struct_2(PNG_STRUCT_INFO,
  214.       png_ptr->malloc_fn, png_ptr->mem_ptr);
  215. #else
  216.    info_ptr = (png_infop)png_create_struct(PNG_STRUCT_INFO);
  217. #endif
  218.    if (info_ptr != NULL)
  219.       png_info_init_3(&info_ptr, png_sizeof(png_info));
  220.    return (info_ptr);
  221. }
  222. /* This function frees the memory associated with a single info struct.
  223.  * Normally, one would use either png_destroy_read_struct() or
  224.  * png_destroy_write_struct() to free an info struct, but this may be
  225.  * useful for some applications.
  226.  */
  227. void PNGAPI
  228. png_destroy_info_struct(png_structp png_ptr, png_infopp info_ptr_ptr)
  229. {
  230.    png_infop info_ptr = NULL;
  231.    if(png_ptr == NULL) return;
  232.    png_debug(1, "in png_destroy_info_structn");
  233.    if (info_ptr_ptr != NULL)
  234.       info_ptr = *info_ptr_ptr;
  235.    if (info_ptr != NULL)
  236.    {
  237.       png_info_destroy(png_ptr, info_ptr);
  238. #ifdef PNG_USER_MEM_SUPPORTED
  239.       png_destroy_struct_2((png_voidp)info_ptr, png_ptr->free_fn,
  240.           png_ptr->mem_ptr);
  241. #else
  242.       png_destroy_struct((png_voidp)info_ptr);
  243. #endif
  244.       *info_ptr_ptr = NULL;
  245.    }
  246. }
  247. /* Initialize the info structure.  This is now an internal function (0.89)
  248.  * and applications using it are urged to use png_create_info_struct()
  249.  * instead.
  250.  */
  251. #if defined(PNG_1_0_X) || defined(PNG_1_2_X)
  252. #undef png_info_init
  253. void PNGAPI
  254. png_info_init(png_infop info_ptr)
  255. {
  256.    /* We only come here via pre-1.0.12-compiled applications */
  257.    png_info_init_3(&info_ptr, 0);
  258. }
  259. #endif
  260. void PNGAPI
  261. png_info_init_3(png_infopp ptr_ptr, png_size_t png_info_struct_size)
  262. {
  263.    png_infop info_ptr = *ptr_ptr;
  264.    if(info_ptr == NULL) return;
  265.    png_debug(1, "in png_info_init_3n");
  266.    if(png_sizeof(png_info) > png_info_struct_size)
  267.      {
  268.        png_destroy_struct(info_ptr);
  269.        info_ptr = (png_infop)png_create_struct(PNG_STRUCT_INFO);
  270.        *ptr_ptr = info_ptr;
  271.      }
  272.    /* set everything to 0 */
  273.    png_memset(info_ptr, 0, png_sizeof (png_info));
  274. }
  275. #ifdef PNG_FREE_ME_SUPPORTED
  276. void PNGAPI
  277. png_data_freer(png_structp png_ptr, png_infop info_ptr,
  278.    int freer, png_uint_32 mask)
  279. {
  280.    png_debug(1, "in png_data_freern");
  281.    if (png_ptr == NULL || info_ptr == NULL)
  282.       return;
  283.    if(freer == PNG_DESTROY_WILL_FREE_DATA)
  284.       info_ptr->free_me |= mask;
  285.    else if(freer == PNG_USER_WILL_FREE_DATA)
  286.       info_ptr->free_me &= ~mask;
  287.    else
  288.       png_warning(png_ptr,
  289.          "Unknown freer parameter in png_data_freer.");
  290. }
  291. #endif
  292. void PNGAPI
  293. png_free_data(png_structp png_ptr, png_infop info_ptr, png_uint_32 mask,
  294.    int num)
  295. {
  296.    png_debug(1, "in png_free_datan");
  297.    if (png_ptr == NULL || info_ptr == NULL)
  298.       return;
  299. #if defined(PNG_TEXT_SUPPORTED)
  300. /* free text item num or (if num == -1) all text items */
  301. #ifdef PNG_FREE_ME_SUPPORTED
  302. if ((mask & PNG_FREE_TEXT) & info_ptr->free_me)
  303. #else
  304. if (mask & PNG_FREE_TEXT)
  305. #endif
  306. {
  307.    if (num != -1)
  308.    {
  309.      if (info_ptr->text && info_ptr->text[num].key)
  310.      {
  311.          png_free(png_ptr, info_ptr->text[num].key);
  312.          info_ptr->text[num].key = NULL;
  313.      }
  314.    }
  315.    else
  316.    {
  317.        int i;
  318.        for (i = 0; i < info_ptr->num_text; i++)
  319.            png_free_data(png_ptr, info_ptr, PNG_FREE_TEXT, i);
  320.        png_free(png_ptr, info_ptr->text);
  321.        info_ptr->text = NULL;
  322.        info_ptr->num_text=0;
  323.    }
  324. }
  325. #endif
  326. #if defined(PNG_tRNS_SUPPORTED)
  327. /* free any tRNS entry */
  328. #ifdef PNG_FREE_ME_SUPPORTED
  329. if ((mask & PNG_FREE_TRNS) & info_ptr->free_me)
  330. #else
  331. if ((mask & PNG_FREE_TRNS) && (png_ptr->flags & PNG_FLAG_FREE_TRNS))
  332. #endif
  333. {
  334.     png_free(png_ptr, info_ptr->trans);
  335.     info_ptr->valid &= ~PNG_INFO_tRNS;
  336. #ifndef PNG_FREE_ME_SUPPORTED
  337.     png_ptr->flags &= ~PNG_FLAG_FREE_TRNS;
  338. #endif
  339.     info_ptr->trans = NULL;
  340. }
  341. #endif
  342. #if defined(PNG_sCAL_SUPPORTED)
  343. /* free any sCAL entry */
  344. #ifdef PNG_FREE_ME_SUPPORTED
  345. if ((mask & PNG_FREE_SCAL) & info_ptr->free_me)
  346. #else
  347. if (mask & PNG_FREE_SCAL)
  348. #endif
  349. {
  350. #if defined(PNG_FIXED_POINT_SUPPORTED) && !defined(PNG_FLOATING_POINT_SUPPORTED)
  351.     png_free(png_ptr, info_ptr->scal_s_width);
  352.     png_free(png_ptr, info_ptr->scal_s_height);
  353.     info_ptr->scal_s_width = NULL;
  354.     info_ptr->scal_s_height = NULL;
  355. #endif
  356.     info_ptr->valid &= ~PNG_INFO_sCAL;
  357. }
  358. #endif
  359. #if defined(PNG_pCAL_SUPPORTED)
  360. /* free any pCAL entry */
  361. #ifdef PNG_FREE_ME_SUPPORTED
  362. if ((mask & PNG_FREE_PCAL) & info_ptr->free_me)
  363. #else
  364. if (mask & PNG_FREE_PCAL)
  365. #endif
  366. {
  367.     png_free(png_ptr, info_ptr->pcal_purpose);
  368.     png_free(png_ptr, info_ptr->pcal_units);
  369.     info_ptr->pcal_purpose = NULL;
  370.     info_ptr->pcal_units = NULL;
  371.     if (info_ptr->pcal_params != NULL)
  372.     {
  373.         int i;
  374.         for (i = 0; i < (int)info_ptr->pcal_nparams; i++)
  375.         {
  376.           png_free(png_ptr, info_ptr->pcal_params[i]);
  377.           info_ptr->pcal_params[i]=NULL;
  378.         }
  379.         png_free(png_ptr, info_ptr->pcal_params);
  380.         info_ptr->pcal_params = NULL;
  381.     }
  382.     info_ptr->valid &= ~PNG_INFO_pCAL;
  383. }
  384. #endif
  385. #if defined(PNG_iCCP_SUPPORTED)
  386. /* free any iCCP entry */
  387. #ifdef PNG_FREE_ME_SUPPORTED
  388. if ((mask & PNG_FREE_ICCP) & info_ptr->free_me)
  389. #else
  390. if (mask & PNG_FREE_ICCP)
  391. #endif
  392. {
  393.     png_free(png_ptr, info_ptr->iccp_name);
  394.     png_free(png_ptr, info_ptr->iccp_profile);
  395.     info_ptr->iccp_name = NULL;
  396.     info_ptr->iccp_profile = NULL;
  397.     info_ptr->valid &= ~PNG_INFO_iCCP;
  398. }
  399. #endif
  400. #if defined(PNG_sPLT_SUPPORTED)
  401. /* free a given sPLT entry, or (if num == -1) all sPLT entries */
  402. #ifdef PNG_FREE_ME_SUPPORTED
  403. if ((mask & PNG_FREE_SPLT) & info_ptr->free_me)
  404. #else
  405. if (mask & PNG_FREE_SPLT)
  406. #endif
  407. {
  408.    if (num != -1)
  409.    {
  410.       if(info_ptr->splt_palettes)
  411.       {
  412.           png_free(png_ptr, info_ptr->splt_palettes[num].name);
  413.           png_free(png_ptr, info_ptr->splt_palettes[num].entries);
  414.           info_ptr->splt_palettes[num].name = NULL;
  415.           info_ptr->splt_palettes[num].entries = NULL;
  416.       }
  417.    }
  418.    else
  419.    {
  420.        if(info_ptr->splt_palettes_num)
  421.        {
  422.          int i;
  423.          for (i = 0; i < (int)info_ptr->splt_palettes_num; i++)
  424.             png_free_data(png_ptr, info_ptr, PNG_FREE_SPLT, i);
  425.          png_free(png_ptr, info_ptr->splt_palettes);
  426.          info_ptr->splt_palettes = NULL;
  427.          info_ptr->splt_palettes_num = 0;
  428.        }
  429.        info_ptr->valid &= ~PNG_INFO_sPLT;
  430.    }
  431. }
  432. #endif
  433. #if defined(PNG_UNKNOWN_CHUNKS_SUPPORTED)
  434. #ifdef PNG_FREE_ME_SUPPORTED
  435. if ((mask & PNG_FREE_UNKN) & info_ptr->free_me)
  436. #else
  437. if (mask & PNG_FREE_UNKN)
  438. #endif
  439. {
  440.    if (num != -1)
  441.    {
  442.        if(info_ptr->unknown_chunks)
  443.        {
  444.           png_free(png_ptr, info_ptr->unknown_chunks[num].data);
  445.           info_ptr->unknown_chunks[num].data = NULL;
  446.        }
  447.    }
  448.    else
  449.    {
  450.        int i;
  451.        if(info_ptr->unknown_chunks_num)
  452.        {
  453.          for (i = 0; i < (int)info_ptr->unknown_chunks_num; i++)
  454.             png_free_data(png_ptr, info_ptr, PNG_FREE_UNKN, i);
  455.          png_free(png_ptr, info_ptr->unknown_chunks);
  456.          info_ptr->unknown_chunks = NULL;
  457.          info_ptr->unknown_chunks_num = 0;
  458.        }
  459.    }
  460. }
  461. #endif
  462. #if defined(PNG_hIST_SUPPORTED)
  463. /* free any hIST entry */
  464. #ifdef PNG_FREE_ME_SUPPORTED
  465. if ((mask & PNG_FREE_HIST)  & info_ptr->free_me)
  466. #else
  467. if ((mask & PNG_FREE_HIST) && (png_ptr->flags & PNG_FLAG_FREE_HIST))
  468. #endif
  469. {
  470.     png_free(png_ptr, info_ptr->hist);
  471.     info_ptr->hist = NULL;
  472.     info_ptr->valid &= ~PNG_INFO_hIST;
  473. #ifndef PNG_FREE_ME_SUPPORTED
  474.     png_ptr->flags &= ~PNG_FLAG_FREE_HIST;
  475. #endif
  476. }
  477. #endif
  478. /* free any PLTE entry that was internally allocated */
  479. #ifdef PNG_FREE_ME_SUPPORTED
  480. if ((mask & PNG_FREE_PLTE) & info_ptr->free_me)
  481. #else
  482. if ((mask & PNG_FREE_PLTE) && (png_ptr->flags & PNG_FLAG_FREE_PLTE))
  483. #endif
  484. {
  485.     png_zfree(png_ptr, info_ptr->palette);
  486.     info_ptr->palette = NULL;
  487.     info_ptr->valid &= ~PNG_INFO_PLTE;
  488. #ifndef PNG_FREE_ME_SUPPORTED
  489.     png_ptr->flags &= ~PNG_FLAG_FREE_PLTE;
  490. #endif
  491.     info_ptr->num_palette = 0;
  492. }
  493. #if defined(PNG_INFO_IMAGE_SUPPORTED)
  494. /* free any image bits attached to the info structure */
  495. #ifdef PNG_FREE_ME_SUPPORTED
  496. if ((mask & PNG_FREE_ROWS) & info_ptr->free_me)
  497. #else
  498. if (mask & PNG_FREE_ROWS)
  499. #endif
  500. {
  501.     if(info_ptr->row_pointers)
  502.     {
  503.        int row;
  504.        for (row = 0; row < (int)info_ptr->height; row++)
  505.        {
  506.           png_free(png_ptr, info_ptr->row_pointers[row]);
  507.           info_ptr->row_pointers[row]=NULL;
  508.        }
  509.        png_free(png_ptr, info_ptr->row_pointers);
  510.        info_ptr->row_pointers=NULL;
  511.     }
  512.     info_ptr->valid &= ~PNG_INFO_IDAT;
  513. }
  514. #endif
  515. #ifdef PNG_FREE_ME_SUPPORTED
  516.    if(num == -1)
  517.      info_ptr->free_me &= ~mask;
  518.    else
  519.      info_ptr->free_me &= ~(mask & ~PNG_FREE_MUL);
  520. #endif
  521. }
  522. /* This is an internal routine to free any memory that the info struct is
  523.  * pointing to before re-using it or freeing the struct itself.  Recall
  524.  * that png_free() checks for NULL pointers for us.
  525.  */
  526. void /* PRIVATE */
  527. png_info_destroy(png_structp png_ptr, png_infop info_ptr)
  528. {
  529.    png_debug(1, "in png_info_destroyn");
  530.    png_free_data(png_ptr, info_ptr, PNG_FREE_ALL, -1);
  531. #if defined(PNG_UNKNOWN_CHUNKS_SUPPORTED)
  532.    if (png_ptr->num_chunk_list)
  533.    {
  534.        png_free(png_ptr, png_ptr->chunk_list);
  535.        png_ptr->chunk_list=NULL;
  536.        png_ptr->num_chunk_list=0;
  537.    }
  538. #endif
  539.    png_info_init_3(&info_ptr, png_sizeof(png_info));
  540. }
  541. #endif /* defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED) */
  542. /* This function returns a pointer to the io_ptr associated with the user
  543.  * functions.  The application should free any memory associated with this
  544.  * pointer before png_write_destroy() or png_read_destroy() are called.
  545.  */
  546. png_voidp PNGAPI
  547. png_get_io_ptr(png_structp png_ptr)
  548. {
  549.    if(png_ptr == NULL) return (NULL);
  550.    return (png_ptr->io_ptr);
  551. }
  552. #if defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED)
  553. #if !defined(PNG_NO_STDIO)
  554. /* Initialize the default input/output functions for the PNG file.  If you
  555.  * use your own read or write routines, you can call either png_set_read_fn()
  556.  * or png_set_write_fn() instead of png_init_io().  If you have defined
  557.  * PNG_NO_STDIO, you must use a function of your own because "FILE *" isn't
  558.  * necessarily available.
  559.  */
  560. void PNGAPI
  561. png_init_io(png_structp png_ptr, png_FILE_p fp)
  562. {
  563.    png_debug(1, "in png_init_ion");
  564.    if(png_ptr == NULL) return;
  565.    png_ptr->io_ptr = (png_voidp)fp;
  566. }
  567. #endif
  568. #if defined(PNG_TIME_RFC1123_SUPPORTED)
  569. /* Convert the supplied time into an RFC 1123 string suitable for use in
  570.  * a "Creation Time" or other text-based time string.
  571.  */
  572. png_charp PNGAPI
  573. png_convert_to_rfc1123(png_structp png_ptr, png_timep ptime)
  574. {
  575.    static PNG_CONST char short_months[12][4] =
  576.         {"Jan", "Feb", "Mar", "Apr", "May", "Jun",
  577.          "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"};
  578.    if(png_ptr == NULL) return (NULL);
  579.    if (png_ptr->time_buffer == NULL)
  580.    {
  581.       png_ptr->time_buffer = (png_charp)png_malloc(png_ptr, (png_uint_32)(29*
  582.          png_sizeof(char)));
  583.    }
  584. #if defined(_WIN32_WCE)
  585.    {
  586.       wchar_t time_buf[29];
  587.       wsprintf(time_buf, TEXT("%d %S %d %02d:%02d:%02d +0000"),
  588.           ptime->day % 32, short_months[(ptime->month - 1) % 12],
  589.         ptime->year, ptime->hour % 24, ptime->minute % 60,
  590.           ptime->second % 61);
  591.       WideCharToMultiByte(CP_ACP, 0, time_buf, -1, png_ptr->time_buffer, 29,
  592.           NULL, NULL);
  593.    }
  594. #else
  595. #ifdef USE_FAR_KEYWORD
  596.    {
  597.       char near_time_buf[29];
  598.       sprintf(near_time_buf, "%d %s %d %02d:%02d:%02d +0000",
  599.           ptime->day % 32, short_months[(ptime->month - 1) % 12],
  600.           ptime->year, ptime->hour % 24, ptime->minute % 60,
  601.           ptime->second % 61);
  602.       png_memcpy(png_ptr->time_buffer, near_time_buf,
  603.           29*png_sizeof(char));
  604.    }
  605. #else
  606.    sprintf(png_ptr->time_buffer, "%d %s %d %02d:%02d:%02d +0000",
  607.        ptime->day % 32, short_months[(ptime->month - 1) % 12],
  608.        ptime->year, ptime->hour % 24, ptime->minute % 60,
  609.        ptime->second % 61);
  610. #endif
  611. #endif /* _WIN32_WCE */
  612.    return ((png_charp)png_ptr->time_buffer);
  613. }
  614. #endif /* PNG_TIME_RFC1123_SUPPORTED */
  615. #if 0
  616. /* Signature string for a PNG file. */
  617. png_bytep PNGAPI
  618. png_sig_bytes(void)
  619. {
  620.    return ((png_bytep)"21112011610715123212");
  621. }
  622. #endif
  623. #endif /* defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED) */
  624. png_charp PNGAPI
  625. png_get_copyright(png_structp png_ptr)
  626. {
  627.    if (&png_ptr != NULL)  /* silence compiler warning about unused png_ptr */
  628.    return ((png_charp) "n libpng version 1.0.23rc3 - December 25, 2006n
  629.    Copyright (c) 1998-2006 Glenn Randers-Pehrsonn
  630.    Copyright (c) 1996-1997 Andreas Dilgern
  631.    Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc.n");
  632.    return ((png_charp) "");
  633. }
  634. /* The following return the library version as a short string in the
  635.  * format 1.0.0 through 99.99.99zz.  To get the version of *.h files
  636.  * used with your application, print out PNG_LIBPNG_VER_STRING, which
  637.  * is defined in png.h.
  638.  * Note: now there is no difference between png_get_libpng_ver() and
  639.  * png_get_header_ver().  Due to the version_nn_nn_nn typedef guard,
  640.  * it is guaranteed that png.c uses the correct version of png.h.
  641.  */
  642. png_charp PNGAPI
  643. png_get_libpng_ver(png_structp png_ptr)
  644. {
  645.    /* Version of *.c files used when building libpng */
  646.    if (&png_ptr != NULL)  /* silence compiler warning about unused png_ptr */
  647.       return ((png_charp) PNG_LIBPNG_VER_STRING);
  648.    return ((png_charp) "");
  649. }
  650. png_charp PNGAPI
  651. png_get_header_ver(png_structp png_ptr)
  652. {
  653.    /* Version of *.h files used when building libpng */
  654.    if (&png_ptr != NULL)  /* silence compiler warning about unused png_ptr */
  655.       return ((png_charp) PNG_LIBPNG_VER_STRING);
  656.    return ((png_charp) "");
  657. }
  658. png_charp PNGAPI
  659. png_get_header_version(png_structp png_ptr)
  660. {
  661.    /* Returns longer string containing both version and date */
  662.    if (&png_ptr != NULL)  /* silence compiler warning about unused png_ptr */
  663.       return ((png_charp) PNG_HEADER_VERSION_STRING);
  664.    return ((png_charp) "");
  665. }
  666. #if defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED)
  667. #ifdef PNG_HANDLE_AS_UNKNOWN_SUPPORTED
  668. int PNGAPI
  669. png_handle_as_unknown(png_structp png_ptr, png_bytep chunk_name)
  670. {
  671.    /* check chunk_name and return "keep" value if it's on the list, else 0 */
  672.    int i;
  673.    png_bytep p;
  674.    if((png_ptr == NULL && chunk_name == NULL) || png_ptr->num_chunk_list<=0)
  675.       return 0;
  676.    p=png_ptr->chunk_list+png_ptr->num_chunk_list*5-5;
  677.    for (i = png_ptr->num_chunk_list; i; i--, p-=5)
  678.       if (!png_memcmp(chunk_name, p, 4))
  679.         return ((int)*(p+4));
  680.    return 0;
  681. }
  682. #endif
  683. /* This function, added to libpng-1.0.6g, is untested. */
  684. int PNGAPI
  685. png_reset_zstream(png_structp png_ptr)
  686. {
  687.    if (png_ptr == NULL) return Z_STREAM_ERROR;
  688.    return (inflateReset(&png_ptr->zstream));
  689. }
  690. #endif /* defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED) */
  691. /* This function was added to libpng-1.0.7 */
  692. png_uint_32 PNGAPI
  693. png_access_version_number(void)
  694. {
  695.    /* Version of *.c files used when building libpng */
  696.    return((png_uint_32) PNG_LIBPNG_VER);
  697. }
  698. #if defined(PNG_READ_SUPPORTED) && defined(PNG_ASSEMBLER_CODE_SUPPORTED)
  699. #if !defined(PNG_1_0_X)
  700. #if defined(PNG_MMX_CODE_SUPPORTED)
  701. /* this INTERNAL function was added to libpng 1.2.0 */
  702. void /* PRIVATE */
  703. png_init_mmx_flags (png_structp png_ptr)
  704. {
  705.     if(png_ptr == NULL) return;
  706.     png_ptr->mmx_rowbytes_threshold = 0;
  707.     png_ptr->mmx_bitdepth_threshold = 0;
  708. #  if (defined(PNG_USE_PNGVCRD) || defined(PNG_USE_PNGGCCRD))
  709.     png_ptr->asm_flags |= PNG_ASM_FLAG_MMX_SUPPORT_COMPILED;
  710.     if (png_mmx_support() > 0) {
  711.         png_ptr->asm_flags |= PNG_ASM_FLAG_MMX_SUPPORT_IN_CPU
  712. #    ifdef PNG_HAVE_ASSEMBLER_COMBINE_ROW
  713.                               | PNG_ASM_FLAG_MMX_READ_COMBINE_ROW
  714. #    endif
  715. #    ifdef PNG_HAVE_ASSEMBLER_READ_INTERLACE
  716.                               | PNG_ASM_FLAG_MMX_READ_INTERLACE
  717. #    endif
  718. #    ifndef PNG_HAVE_ASSEMBLER_READ_FILTER_ROW
  719.                               ;
  720. #    else
  721.                               | PNG_ASM_FLAG_MMX_READ_FILTER_SUB
  722.                               | PNG_ASM_FLAG_MMX_READ_FILTER_UP
  723.                               | PNG_ASM_FLAG_MMX_READ_FILTER_AVG
  724.                               | PNG_ASM_FLAG_MMX_READ_FILTER_PAETH ;
  725.         png_ptr->mmx_rowbytes_threshold = PNG_MMX_ROWBYTES_THRESHOLD_DEFAULT;
  726.         png_ptr->mmx_bitdepth_threshold = PNG_MMX_BITDEPTH_THRESHOLD_DEFAULT;
  727. #    endif
  728.     } else {
  729.         png_ptr->asm_flags &= ~( PNG_ASM_FLAG_MMX_SUPPORT_IN_CPU
  730.                                | PNG_MMX_READ_FLAGS
  731.                                | PNG_MMX_WRITE_FLAGS );
  732.     }
  733. #  else /* !(PNGVCRD || PNGGCCRD) */
  734.     /* clear all MMX flags; no support is compiled in */
  735.     png_ptr->asm_flags &= ~( PNG_MMX_FLAGS );
  736. #  endif /* ?(PNGVCRD || PNGGCCRD) */
  737. }
  738. #endif /* !(PNG_MMX_CODE_SUPPORTED) */
  739. /* this function was added to libpng 1.2.0 */
  740. #if !defined(PNG_USE_PNGGCCRD) && 
  741.     !(defined(PNG_MMX_CODE_SUPPORTED) && defined(PNG_USE_PNGVCRD))
  742. int PNGAPI
  743. png_mmx_support(void)
  744. {
  745.     return -1;
  746. }
  747. #endif
  748. #endif /* PNG_1_0_X  && PNG_ASSEMBLER_CODE_SUPPORTED */
  749. #endif /* PNG_READ_SUPPORTED */
  750. #if defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED)
  751. #ifdef PNG_SIZE_T
  752. /* Added at libpng version 1.2.6 */
  753.    PNG_EXTERN png_size_t PNGAPI png_convert_size PNGARG((size_t size));
  754. png_size_t PNGAPI
  755. png_convert_size(size_t size)
  756. {
  757.   if (size > (png_size_t)-1)
  758.      PNG_ABORT();  /* We haven't got access to png_ptr, so no png_error() */
  759.   return ((png_size_t)size);
  760. }
  761. #endif /* PNG_SIZE_T */
  762. #endif /* defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED) */