1
0

png.c 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861
  1. /* png.c - location for general purpose libpng functions
  2. *
  3. * Last changed in libpng 1.2.17 May 15, 2007
  4. * For conditions of distribution and use, see copyright notice in png.h
  5. * Copyright (c) 1998-2007 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_18 Your_png_h_is_not_version_1_2_18;
  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_MMX_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_bytes\n");
  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_struct\n");
  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_struct\n");
  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_3\n");
  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_freer\n");
  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_data\n");
  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. if(png_ptr->unknown_chunk.data)
  435. {
  436. png_free(png_ptr, png_ptr->unknown_chunk.data);
  437. png_ptr->unknown_chunk.data = NULL;
  438. }
  439. #ifdef PNG_FREE_ME_SUPPORTED
  440. if ((mask & PNG_FREE_UNKN) & info_ptr->free_me)
  441. #else
  442. if (mask & PNG_FREE_UNKN)
  443. #endif
  444. {
  445. if (num != -1)
  446. {
  447. if(info_ptr->unknown_chunks)
  448. {
  449. png_free(png_ptr, info_ptr->unknown_chunks[num].data);
  450. info_ptr->unknown_chunks[num].data = NULL;
  451. }
  452. }
  453. else
  454. {
  455. int i;
  456. if(info_ptr->unknown_chunks_num)
  457. {
  458. for (i = 0; i < (int)info_ptr->unknown_chunks_num; i++)
  459. png_free_data(png_ptr, info_ptr, PNG_FREE_UNKN, i);
  460. png_free(png_ptr, info_ptr->unknown_chunks);
  461. info_ptr->unknown_chunks = NULL;
  462. info_ptr->unknown_chunks_num = 0;
  463. }
  464. }
  465. }
  466. #endif
  467. #if defined(PNG_hIST_SUPPORTED)
  468. /* free any hIST entry */
  469. #ifdef PNG_FREE_ME_SUPPORTED
  470. if ((mask & PNG_FREE_HIST) & info_ptr->free_me)
  471. #else
  472. if ((mask & PNG_FREE_HIST) && (png_ptr->flags & PNG_FLAG_FREE_HIST))
  473. #endif
  474. {
  475. png_free(png_ptr, info_ptr->hist);
  476. info_ptr->hist = NULL;
  477. info_ptr->valid &= ~PNG_INFO_hIST;
  478. #ifndef PNG_FREE_ME_SUPPORTED
  479. png_ptr->flags &= ~PNG_FLAG_FREE_HIST;
  480. #endif
  481. }
  482. #endif
  483. /* free any PLTE entry that was internally allocated */
  484. #ifdef PNG_FREE_ME_SUPPORTED
  485. if ((mask & PNG_FREE_PLTE) & info_ptr->free_me)
  486. #else
  487. if ((mask & PNG_FREE_PLTE) && (png_ptr->flags & PNG_FLAG_FREE_PLTE))
  488. #endif
  489. {
  490. png_zfree(png_ptr, info_ptr->palette);
  491. info_ptr->palette = NULL;
  492. info_ptr->valid &= ~PNG_INFO_PLTE;
  493. #ifndef PNG_FREE_ME_SUPPORTED
  494. png_ptr->flags &= ~PNG_FLAG_FREE_PLTE;
  495. #endif
  496. info_ptr->num_palette = 0;
  497. }
  498. #if defined(PNG_INFO_IMAGE_SUPPORTED)
  499. /* free any image bits attached to the info structure */
  500. #ifdef PNG_FREE_ME_SUPPORTED
  501. if ((mask & PNG_FREE_ROWS) & info_ptr->free_me)
  502. #else
  503. if (mask & PNG_FREE_ROWS)
  504. #endif
  505. {
  506. if(info_ptr->row_pointers)
  507. {
  508. int row;
  509. for (row = 0; row < (int)info_ptr->height; row++)
  510. {
  511. png_free(png_ptr, info_ptr->row_pointers[row]);
  512. info_ptr->row_pointers[row]=NULL;
  513. }
  514. png_free(png_ptr, info_ptr->row_pointers);
  515. info_ptr->row_pointers=NULL;
  516. }
  517. info_ptr->valid &= ~PNG_INFO_IDAT;
  518. }
  519. #endif
  520. #ifdef PNG_FREE_ME_SUPPORTED
  521. if(num == -1)
  522. info_ptr->free_me &= ~mask;
  523. else
  524. info_ptr->free_me &= ~(mask & ~PNG_FREE_MUL);
  525. #endif
  526. }
  527. /* This is an internal routine to free any memory that the info struct is
  528. * pointing to before re-using it or freeing the struct itself. Recall
  529. * that png_free() checks for NULL pointers for us.
  530. */
  531. void /* PRIVATE */
  532. png_info_destroy(png_structp png_ptr, png_infop info_ptr)
  533. {
  534. png_debug(1, "in png_info_destroy\n");
  535. png_free_data(png_ptr, info_ptr, PNG_FREE_ALL, -1);
  536. #if defined(PNG_UNKNOWN_CHUNKS_SUPPORTED)
  537. if (png_ptr->num_chunk_list)
  538. {
  539. png_free(png_ptr, png_ptr->chunk_list);
  540. png_ptr->chunk_list=NULL;
  541. png_ptr->num_chunk_list=0;
  542. }
  543. #endif
  544. png_info_init_3(&info_ptr, png_sizeof(png_info));
  545. }
  546. #endif /* defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED) */
  547. /* This function returns a pointer to the io_ptr associated with the user
  548. * functions. The application should free any memory associated with this
  549. * pointer before png_write_destroy() or png_read_destroy() are called.
  550. */
  551. png_voidp PNGAPI
  552. png_get_io_ptr(png_structp png_ptr)
  553. {
  554. if(png_ptr == NULL) return (NULL);
  555. return (png_ptr->io_ptr);
  556. }
  557. #if defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED)
  558. #if !defined(PNG_NO_STDIO)
  559. /* Initialize the default input/output functions for the PNG file. If you
  560. * use your own read or write routines, you can call either png_set_read_fn()
  561. * or png_set_write_fn() instead of png_init_io(). If you have defined
  562. * PNG_NO_STDIO, you must use a function of your own because "FILE *" isn't
  563. * necessarily available.
  564. */
  565. void PNGAPI
  566. png_init_io(png_structp png_ptr, png_FILE_p fp)
  567. {
  568. png_debug(1, "in png_init_io\n");
  569. if(png_ptr == NULL) return;
  570. png_ptr->io_ptr = (png_voidp)fp;
  571. }
  572. #endif
  573. #if defined(PNG_TIME_RFC1123_SUPPORTED)
  574. /* Convert the supplied time into an RFC 1123 string suitable for use in
  575. * a "Creation Time" or other text-based time string.
  576. */
  577. png_charp PNGAPI
  578. png_convert_to_rfc1123(png_structp png_ptr, png_timep ptime)
  579. {
  580. static PNG_CONST char short_months[12][4] =
  581. {"Jan", "Feb", "Mar", "Apr", "May", "Jun",
  582. "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"};
  583. if(png_ptr == NULL) return (NULL);
  584. if (png_ptr->time_buffer == NULL)
  585. {
  586. png_ptr->time_buffer = (png_charp)png_malloc(png_ptr, (png_uint_32)(29*
  587. png_sizeof(char)));
  588. }
  589. #if defined(_WIN32_WCE)
  590. {
  591. wchar_t time_buf[29];
  592. wsprintf(time_buf, TEXT("%d %S %d %02d:%02d:%02d +0000"),
  593. ptime->day % 32, short_months[(ptime->month - 1) % 12],
  594. ptime->year, ptime->hour % 24, ptime->minute % 60,
  595. ptime->second % 61);
  596. WideCharToMultiByte(CP_ACP, 0, time_buf, -1, png_ptr->time_buffer, 29,
  597. NULL, NULL);
  598. }
  599. #else
  600. #ifdef USE_FAR_KEYWORD
  601. {
  602. char near_time_buf[29];
  603. sprintf(near_time_buf, "%d %s %d %02d:%02d:%02d +0000",
  604. ptime->day % 32, short_months[(ptime->month - 1) % 12],
  605. ptime->year, ptime->hour % 24, ptime->minute % 60,
  606. ptime->second % 61);
  607. png_memcpy(png_ptr->time_buffer, near_time_buf,
  608. 29*png_sizeof(char));
  609. }
  610. #else
  611. sprintf(png_ptr->time_buffer, "%d %s %d %02d:%02d:%02d +0000",
  612. ptime->day % 32, short_months[(ptime->month - 1) % 12],
  613. ptime->year, ptime->hour % 24, ptime->minute % 60,
  614. ptime->second % 61);
  615. #endif
  616. #endif /* _WIN32_WCE */
  617. return ((png_charp)png_ptr->time_buffer);
  618. }
  619. #endif /* PNG_TIME_RFC1123_SUPPORTED */
  620. #if 0
  621. /* Signature string for a PNG file. */
  622. png_bytep PNGAPI
  623. png_sig_bytes(void)
  624. {
  625. return ((png_bytep)"\211\120\116\107\015\012\032\012");
  626. }
  627. #endif
  628. #endif /* defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED) */
  629. png_charp PNGAPI
  630. png_get_copyright(png_structp png_ptr)
  631. {
  632. if (&png_ptr != NULL) /* silence compiler warning about unused png_ptr */
  633. return ((png_charp) "\n libpng version 1.2.18 - May 15, 2007\n\
  634. Copyright (c) 1998-2007 Glenn Randers-Pehrson\n\
  635. Copyright (c) 1996-1997 Andreas Dilger\n\
  636. Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc.\n");
  637. return ((png_charp) "");
  638. }
  639. /* The following return the library version as a short string in the
  640. * format 1.0.0 through 99.99.99zz. To get the version of *.h files
  641. * used with your application, print out PNG_LIBPNG_VER_STRING, which
  642. * is defined in png.h.
  643. * Note: now there is no difference between png_get_libpng_ver() and
  644. * png_get_header_ver(). Due to the version_nn_nn_nn typedef guard,
  645. * it is guaranteed that png.c uses the correct version of png.h.
  646. */
  647. png_charp PNGAPI
  648. png_get_libpng_ver(png_structp png_ptr)
  649. {
  650. /* Version of *.c files used when building libpng */
  651. if (&png_ptr != NULL) /* silence compiler warning about unused png_ptr */
  652. return ((png_charp) PNG_LIBPNG_VER_STRING);
  653. return ((png_charp) "");
  654. }
  655. png_charp PNGAPI
  656. png_get_header_ver(png_structp png_ptr)
  657. {
  658. /* Version of *.h files used when building libpng */
  659. if (&png_ptr != NULL) /* silence compiler warning about unused png_ptr */
  660. return ((png_charp) PNG_LIBPNG_VER_STRING);
  661. return ((png_charp) "");
  662. }
  663. png_charp PNGAPI
  664. png_get_header_version(png_structp png_ptr)
  665. {
  666. /* Returns longer string containing both version and date */
  667. if (&png_ptr != NULL) /* silence compiler warning about unused png_ptr */
  668. return ((png_charp) PNG_HEADER_VERSION_STRING);
  669. return ((png_charp) "");
  670. }
  671. #if defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED)
  672. #ifdef PNG_HANDLE_AS_UNKNOWN_SUPPORTED
  673. int PNGAPI
  674. png_handle_as_unknown(png_structp png_ptr, png_bytep chunk_name)
  675. {
  676. /* check chunk_name and return "keep" value if it's on the list, else 0 */
  677. int i;
  678. png_bytep p;
  679. if((png_ptr == NULL && chunk_name == NULL) || png_ptr->num_chunk_list<=0)
  680. return 0;
  681. p=png_ptr->chunk_list+png_ptr->num_chunk_list*5-5;
  682. for (i = png_ptr->num_chunk_list; i; i--, p-=5)
  683. if (!png_memcmp(chunk_name, p, 4))
  684. return ((int)*(p+4));
  685. return 0;
  686. }
  687. #endif
  688. /* This function, added to libpng-1.0.6g, is untested. */
  689. int PNGAPI
  690. png_reset_zstream(png_structp png_ptr)
  691. {
  692. if (png_ptr == NULL) return Z_STREAM_ERROR;
  693. return (inflateReset(&png_ptr->zstream));
  694. }
  695. #endif /* defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED) */
  696. /* This function was added to libpng-1.0.7 */
  697. png_uint_32 PNGAPI
  698. png_access_version_number(void)
  699. {
  700. /* Version of *.c files used when building libpng */
  701. return((png_uint_32) PNG_LIBPNG_VER);
  702. }
  703. #if defined(PNG_READ_SUPPORTED) && defined(PNG_ASSEMBLER_CODE_SUPPORTED)
  704. #if !defined(PNG_1_0_X)
  705. #if defined(PNG_MMX_CODE_SUPPORTED)
  706. /* this INTERNAL function was added to libpng 1.2.0 */
  707. void /* PRIVATE */
  708. png_init_mmx_flags (png_structp png_ptr)
  709. {
  710. if(png_ptr == NULL) return;
  711. png_ptr->mmx_rowbytes_threshold = 0;
  712. png_ptr->mmx_bitdepth_threshold = 0;
  713. # if (defined(PNG_USE_PNGVCRD) || defined(PNG_USE_PNGGCCRD))
  714. png_ptr->asm_flags |= PNG_ASM_FLAG_MMX_SUPPORT_COMPILED;
  715. if (png_mmx_support() > 0) {
  716. png_ptr->asm_flags |= PNG_ASM_FLAG_MMX_SUPPORT_IN_CPU
  717. # ifdef PNG_HAVE_MMX_COMBINE_ROW
  718. | PNG_ASM_FLAG_MMX_READ_COMBINE_ROW
  719. # endif
  720. # ifdef PNG_HAVE_MMX_READ_INTERLACE
  721. | PNG_ASM_FLAG_MMX_READ_INTERLACE
  722. # endif
  723. # ifndef PNG_HAVE_MMX_READ_FILTER_ROW
  724. ;
  725. # else
  726. | PNG_ASM_FLAG_MMX_READ_FILTER_SUB
  727. | PNG_ASM_FLAG_MMX_READ_FILTER_UP
  728. | PNG_ASM_FLAG_MMX_READ_FILTER_AVG
  729. | PNG_ASM_FLAG_MMX_READ_FILTER_PAETH ;
  730. png_ptr->mmx_rowbytes_threshold = PNG_MMX_ROWBYTES_THRESHOLD_DEFAULT;
  731. png_ptr->mmx_bitdepth_threshold = PNG_MMX_BITDEPTH_THRESHOLD_DEFAULT;
  732. # endif
  733. } else {
  734. png_ptr->asm_flags &= ~( PNG_ASM_FLAG_MMX_SUPPORT_IN_CPU
  735. | PNG_MMX_READ_FLAGS
  736. | PNG_MMX_WRITE_FLAGS );
  737. }
  738. # else /* !(PNGVCRD || PNGGCCRD) */
  739. /* clear all MMX flags; no support is compiled in */
  740. png_ptr->asm_flags &= ~( PNG_MMX_FLAGS );
  741. # endif /* ?(PNGVCRD || PNGGCCRD) */
  742. }
  743. #endif /* !(PNG_MMX_CODE_SUPPORTED) */
  744. /* this function was added to libpng 1.2.0 */
  745. #if !defined(PNG_USE_PNGGCCRD) && \
  746. !(defined(PNG_MMX_CODE_SUPPORTED) && defined(PNG_USE_PNGVCRD))
  747. int PNGAPI
  748. png_mmx_support(void)
  749. {
  750. return -1;
  751. }
  752. #endif
  753. #endif /* PNG_1_0_X && PNG_ASSEMBLER_CODE_SUPPORTED */
  754. #endif /* PNG_READ_SUPPORTED */
  755. #if defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED)
  756. #ifdef PNG_SIZE_T
  757. /* Added at libpng version 1.2.6 */
  758. PNG_EXTERN png_size_t PNGAPI png_convert_size PNGARG((size_t size));
  759. png_size_t PNGAPI
  760. png_convert_size(size_t size)
  761. {
  762. if (size > (png_size_t)-1)
  763. PNG_ABORT(); /* We haven't got access to png_ptr, so no png_error() */
  764. return ((png_size_t)size);
  765. }
  766. #endif /* PNG_SIZE_T */
  767. #endif /* defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED) */