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

对话框与窗口

开发平台:

Visual C++

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