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

游戏引擎

开发平台:

Visual C++

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