png.h
上传用户:center1979
上传日期:2022-07-26
资源大小:50633k
文件大小:149k
源码类别:

OpenGL

开发平台:

Visual C++

  1. extern PNG_EXPORT(void,png_set_crc_action) PNGARG((png_structp png_ptr,
  2.    int crit_action, int ancil_action));
  3. /* Values for png_set_crc_action() to say how to handle CRC errors in
  4.  * ancillary and critical chunks, and whether to use the data contained
  5.  * therein.  Note that it is impossible to "discard" data in a critical
  6.  * chunk.  For versions prior to 0.90, the action was always error/quit,
  7.  * whereas in version 0.90 and later, the action for CRC errors in ancillary
  8.  * chunks is warn/discard.  These values should NOT be changed.
  9.  *
  10.  *      value                       action:critical     action:ancillary
  11.  */
  12. #define PNG_CRC_DEFAULT       0  /* error/quit          warn/discard data */
  13. #define PNG_CRC_ERROR_QUIT    1  /* error/quit          error/quit        */
  14. #define PNG_CRC_WARN_DISCARD  2  /* (INVALID)           warn/discard data */
  15. #define PNG_CRC_WARN_USE      3  /* warn/use data       warn/use data     */
  16. #define PNG_CRC_QUIET_USE     4  /* quiet/use data      quiet/use data    */
  17. #define PNG_CRC_NO_CHANGE     5  /* use current value   use current value */
  18. /* These functions give the user control over the scan-line filtering in
  19.  * libpng and the compression methods used by zlib.  These functions are
  20.  * mainly useful for testing, as the defaults should work with most users.
  21.  * Those users who are tight on memory or want faster performance at the
  22.  * expense of compression can modify them.  See the compression library
  23.  * header file (zlib.h) for an explination of the compression functions.
  24.  */
  25. /* set the filtering method(s) used by libpng.  Currently, the only valid
  26.  * value for "method" is 0.
  27.  */
  28. extern PNG_EXPORT(void,png_set_filter) PNGARG((png_structp png_ptr, int method,
  29.    int filters));
  30. /* Flags for png_set_filter() to say which filters to use.  The flags
  31.  * are chosen so that they don't conflict with real filter types
  32.  * below, in case they are supplied instead of the #defined constants.
  33.  * These values should NOT be changed.
  34.  */
  35. #define PNG_NO_FILTERS     0x00
  36. #define PNG_FILTER_NONE    0x08
  37. #define PNG_FILTER_SUB     0x10
  38. #define PNG_FILTER_UP      0x20
  39. #define PNG_FILTER_AVG     0x40
  40. #define PNG_FILTER_PAETH   0x80
  41. #define PNG_ALL_FILTERS (PNG_FILTER_NONE | PNG_FILTER_SUB | PNG_FILTER_UP | 
  42.                          PNG_FILTER_AVG | PNG_FILTER_PAETH)
  43. /* Filter values (not flags) - used in pngwrite.c, pngwutil.c for now.
  44.  * These defines should NOT be changed.
  45.  */
  46. #define PNG_FILTER_VALUE_NONE  0
  47. #define PNG_FILTER_VALUE_SUB   1
  48. #define PNG_FILTER_VALUE_UP    2
  49. #define PNG_FILTER_VALUE_AVG   3
  50. #define PNG_FILTER_VALUE_PAETH 4
  51. #define PNG_FILTER_VALUE_LAST  5
  52. #if defined(PNG_WRITE_WEIGHTED_FILTER_SUPPORTED) /* EXPERIMENTAL */
  53. /* The "heuristic_method" is given by one of the PNG_FILTER_HEURISTIC_
  54.  * defines, either the default (minimum-sum-of-absolute-differences), or
  55.  * the experimental method (weighted-minimum-sum-of-absolute-differences).
  56.  *
  57.  * Weights are factors >= 1.0, indicating how important it is to keep the
  58.  * filter type consistent between rows.  Larger numbers mean the current
  59.  * filter is that many times as likely to be the same as the "num_weights"
  60.  * previous filters.  This is cumulative for each previous row with a weight.
  61.  * There needs to be "num_weights" values in "filter_weights", or it can be
  62.  * NULL if the weights aren't being specified.  Weights have no influence on
  63.  * the selection of the first row filter.  Well chosen weights can (in theory)
  64.  * improve the compression for a given image.
  65.  *
  66.  * Costs are factors >= 1.0 indicating the relative decoding costs of a
  67.  * filter type.  Higher costs indicate more decoding expense, and are
  68.  * therefore less likely to be selected over a filter with lower computational
  69.  * costs.  There needs to be a value in "filter_costs" for each valid filter
  70.  * type (given by PNG_FILTER_VALUE_LAST), or it can be NULL if you aren't
  71.  * setting the costs.  Costs try to improve the speed of decompression without
  72.  * unduly increasing the compressed image size.
  73.  *
  74.  * A negative weight or cost indicates the default value is to be used, and
  75.  * values in the range [0.0, 1.0) indicate the value is to remain unchanged.
  76.  * The default values for both weights and costs are currently 1.0, but may
  77.  * change if good general weighting/cost heuristics can be found.  If both
  78.  * the weights and costs are set to 1.0, this degenerates the WEIGHTED method
  79.  * to the UNWEIGHTED method, but with added encoding time/computation.
  80.  */
  81. #ifdef PNG_FLOATING_POINT_SUPPORTED
  82. extern PNG_EXPORT(void,png_set_filter_heuristics) PNGARG((png_structp png_ptr,
  83.    int heuristic_method, int num_weights, png_doublep filter_weights,
  84.    png_doublep filter_costs));
  85. #endif
  86. #endif /*  PNG_WRITE_WEIGHTED_FILTER_SUPPORTED */
  87. /* Heuristic used for row filter selection.  These defines should NOT be
  88.  * changed.
  89.  */
  90. #define PNG_FILTER_HEURISTIC_DEFAULT    0  /* Currently "UNWEIGHTED" */
  91. #define PNG_FILTER_HEURISTIC_UNWEIGHTED 1  /* Used by libpng < 0.95 */
  92. #define PNG_FILTER_HEURISTIC_WEIGHTED   2  /* Experimental feature */
  93. #define PNG_FILTER_HEURISTIC_LAST       3  /* Not a valid value */
  94. /* Set the library compression level.  Currently, valid values range from
  95.  * 0 - 9, corresponding directly to the zlib compression levels 0 - 9
  96.  * (0 - no compression, 9 - "maximal" compression).  Note that tests have
  97.  * shown that zlib compression levels 3-6 usually perform as well as level 9
  98.  * for PNG images, and do considerably fewer caclulations.  In the future,
  99.  * these values may not correspond directly to the zlib compression levels.
  100.  */
  101. extern PNG_EXPORT(void,png_set_compression_level) PNGARG((png_structp png_ptr,
  102.    int level));
  103. extern PNG_EXPORT(void,png_set_compression_mem_level)
  104.    PNGARG((png_structp png_ptr, int mem_level));
  105. extern PNG_EXPORT(void,png_set_compression_strategy)
  106.    PNGARG((png_structp png_ptr, int strategy));
  107. extern PNG_EXPORT(void,png_set_compression_window_bits)
  108.    PNGARG((png_structp png_ptr, int window_bits));
  109. extern PNG_EXPORT(void,png_set_compression_method) PNGARG((png_structp png_ptr,
  110.    int method));
  111. /* These next functions are called for input/output, memory, and error
  112.  * handling.  They are in the file pngrio.c, pngwio.c, and pngerror.c,
  113.  * and call standard C I/O routines such as fread(), fwrite(), and
  114.  * fprintf().  These functions can be made to use other I/O routines
  115.  * at run time for those applications that need to handle I/O in a
  116.  * different manner by calling png_set_???_fn().  See libpng.txt for
  117.  * more information.
  118.  */
  119. #if !defined(PNG_NO_STDIO)
  120. /* Initialize the input/output for the PNG file to the default functions. */
  121. extern PNG_EXPORT(void,png_init_io) PNGARG((png_structp png_ptr, png_FILE_p fp));
  122. #endif
  123. /* Replace the (error and abort), and warning functions with user
  124.  * supplied functions.  If no messages are to be printed you must still
  125.  * write and use replacement functions. The replacement error_fn should
  126.  * still do a longjmp to the last setjmp location if you are using this
  127.  * method of error handling.  If error_fn or warning_fn is NULL, the
  128.  * default function will be used.
  129.  */
  130. extern PNG_EXPORT(void,png_set_error_fn) PNGARG((png_structp png_ptr,
  131.    png_voidp error_ptr, png_error_ptr error_fn, png_error_ptr warning_fn));
  132. /* Return the user pointer associated with the error functions */
  133. extern PNG_EXPORT(png_voidp,png_get_error_ptr) PNGARG((png_structp png_ptr));
  134. /* Replace the default data output functions with a user supplied one(s).
  135.  * If buffered output is not used, then output_flush_fn can be set to NULL.
  136.  * If PNG_WRITE_FLUSH_SUPPORTED is not defined at libpng compile time
  137.  * output_flush_fn will be ignored (and thus can be NULL).
  138.  */
  139. extern PNG_EXPORT(void,png_set_write_fn) PNGARG((png_structp png_ptr,
  140.    png_voidp io_ptr, png_rw_ptr write_data_fn, png_flush_ptr output_flush_fn));
  141. /* Replace the default data input function with a user supplied one. */
  142. extern PNG_EXPORT(void,png_set_read_fn) PNGARG((png_structp png_ptr,
  143.    png_voidp io_ptr, png_rw_ptr read_data_fn));
  144. /* Return the user pointer associated with the I/O functions */
  145. extern PNG_EXPORT(png_voidp,png_get_io_ptr) PNGARG((png_structp png_ptr));
  146. extern PNG_EXPORT(void,png_set_read_status_fn) PNGARG((png_structp png_ptr,
  147.    png_read_status_ptr read_row_fn));
  148. extern PNG_EXPORT(void,png_set_write_status_fn) PNGARG((png_structp png_ptr,
  149.    png_write_status_ptr write_row_fn));
  150. #ifdef PNG_USER_MEM_SUPPORTED
  151. /* Replace the default memory allocation functions with user supplied one(s). */
  152. extern PNG_EXPORT(void,png_set_mem_fn) PNGARG((png_structp png_ptr,
  153.    png_voidp mem_ptr, png_malloc_ptr malloc_fn, png_free_ptr free_fn));
  154. /* Return the user pointer associated with the memory functions */
  155. extern PNG_EXPORT(png_voidp,png_get_mem_ptr) PNGARG((png_structp png_ptr));
  156. #endif
  157. #if defined(PNG_READ_USER_TRANSFORM_SUPPORTED) || 
  158.     defined(PNG_LEGACY_SUPPORTED)
  159. extern PNG_EXPORT(void,png_set_read_user_transform_fn) PNGARG((png_structp
  160.    png_ptr, png_user_transform_ptr read_user_transform_fn));
  161. #endif
  162. #if defined(PNG_WRITE_USER_TRANSFORM_SUPPORTED) || 
  163.     defined(PNG_LEGACY_SUPPORTED)
  164. extern PNG_EXPORT(void,png_set_write_user_transform_fn) PNGARG((png_structp
  165.    png_ptr, png_user_transform_ptr write_user_transform_fn));
  166. #endif
  167. #if defined(PNG_READ_USER_TRANSFORM_SUPPORTED) || 
  168.     defined(PNG_WRITE_USER_TRANSFORM_SUPPORTED) || 
  169.     defined(PNG_LEGACY_SUPPORTED)
  170. extern PNG_EXPORT(void,png_set_user_transform_info) PNGARG((png_structp
  171.    png_ptr, png_voidp user_transform_ptr, int user_transform_depth,
  172.    int user_transform_channels));
  173. /* Return the user pointer associated with the user transform functions */
  174. extern PNG_EXPORT(png_voidp,png_get_user_transform_ptr)
  175.    PNGARG((png_structp png_ptr));
  176. #endif
  177. #ifdef PNG_USER_CHUNKS_SUPPORTED
  178. extern PNG_EXPORT(void,png_set_read_user_chunk_fn) PNGARG((png_structp png_ptr,
  179.    png_voidp user_chunk_ptr, png_user_chunk_ptr read_user_chunk_fn));
  180. extern PNG_EXPORT(png_voidp,png_get_user_chunk_ptr) PNGARG((png_structp
  181.    png_ptr));
  182. #endif
  183. #ifdef PNG_PROGRESSIVE_READ_SUPPORTED
  184. /* Sets the function callbacks for the push reader, and a pointer to a
  185.  * user-defined structure available to the callback functions.
  186.  */
  187. extern PNG_EXPORT(void,png_set_progressive_read_fn) PNGARG((png_structp png_ptr,
  188.    png_voidp progressive_ptr,
  189.    png_progressive_info_ptr info_fn, png_progressive_row_ptr row_fn,
  190.    png_progressive_end_ptr end_fn));
  191. /* returns the user pointer associated with the push read functions */
  192. extern PNG_EXPORT(png_voidp,png_get_progressive_ptr)
  193.    PNGARG((png_structp png_ptr));
  194. /* function to be called when data becomes available */
  195. extern PNG_EXPORT(void,png_process_data) PNGARG((png_structp png_ptr,
  196.    png_infop info_ptr, png_bytep buffer, png_size_t buffer_size));
  197. /* function that combines rows.  Not very much different than the
  198.  * png_combine_row() call.  Is this even used?????
  199.  */
  200. extern PNG_EXPORT(void,png_progressive_combine_row) PNGARG((png_structp png_ptr,
  201.    png_bytep old_row, png_bytep new_row));
  202. #endif /* PNG_PROGRESSIVE_READ_SUPPORTED */
  203. extern PNG_EXPORT(png_voidp,png_malloc) PNGARG((png_structp png_ptr,
  204.    png_uint_32 size));
  205. #if defined(PNG_1_0_X)
  206. #  define png_malloc_warn png_malloc
  207. #else
  208. /* Added at libpng version 1.2.4 */
  209. extern PNG_EXPORT(png_voidp,png_malloc_warn) PNGARG((png_structp png_ptr,
  210.    png_uint_32 size));
  211. #endif
  212. /* frees a pointer allocated by png_malloc() */
  213. extern PNG_EXPORT(void,png_free) PNGARG((png_structp png_ptr, png_voidp ptr));
  214. #if defined(PNG_1_0_X)
  215. /* Function to allocate memory for zlib. */
  216. extern PNG_EXPORT(voidpf,png_zalloc) PNGARG((voidpf png_ptr, uInt items,
  217.    uInt size));
  218. /* Function to free memory for zlib */
  219. extern PNG_EXPORT(void,png_zfree) PNGARG((voidpf png_ptr, voidpf ptr));
  220. #endif
  221. /* Free data that was allocated internally */
  222. extern PNG_EXPORT(void,png_free_data) PNGARG((png_structp png_ptr,
  223.    png_infop info_ptr, png_uint_32 free_me, int num));
  224. #ifdef PNG_FREE_ME_SUPPORTED
  225. /* Reassign responsibility for freeing existing data, whether allocated
  226.  * by libpng or by the application */
  227. extern PNG_EXPORT(void,png_data_freer) PNGARG((png_structp png_ptr,
  228.    png_infop info_ptr, int freer, png_uint_32 mask));
  229. #endif
  230. /* assignments for png_data_freer */
  231. #define PNG_DESTROY_WILL_FREE_DATA 1
  232. #define PNG_SET_WILL_FREE_DATA 1
  233. #define PNG_USER_WILL_FREE_DATA 2
  234. /* Flags for png_ptr->free_me and info_ptr->free_me */
  235. #define PNG_FREE_HIST 0x0008
  236. #define PNG_FREE_ICCP 0x0010
  237. #define PNG_FREE_SPLT 0x0020
  238. #define PNG_FREE_ROWS 0x0040
  239. #define PNG_FREE_PCAL 0x0080
  240. #define PNG_FREE_SCAL 0x0100
  241. #define PNG_FREE_UNKN 0x0200
  242. #define PNG_FREE_LIST 0x0400
  243. #define PNG_FREE_PLTE 0x1000
  244. #define PNG_FREE_TRNS 0x2000
  245. #define PNG_FREE_TEXT 0x4000
  246. #define PNG_FREE_ALL  0x7fff
  247. #define PNG_FREE_MUL  0x4220 /* PNG_FREE_SPLT|PNG_FREE_TEXT|PNG_FREE_UNKN */
  248. #ifdef PNG_USER_MEM_SUPPORTED
  249. extern PNG_EXPORT(png_voidp,png_malloc_default) PNGARG((png_structp png_ptr,
  250.    png_uint_32 size));
  251. extern PNG_EXPORT(void,png_free_default) PNGARG((png_structp png_ptr,
  252.    png_voidp ptr));
  253. #endif
  254. extern PNG_EXPORT(png_voidp,png_memcpy_check) PNGARG((png_structp png_ptr,
  255.    png_voidp s1, png_voidp s2, png_uint_32 size));
  256. extern PNG_EXPORT(png_voidp,png_memset_check) PNGARG((png_structp png_ptr,
  257.    png_voidp s1, int value, png_uint_32 size));
  258. #if defined(USE_FAR_KEYWORD)  /* memory model conversion function */
  259. extern void *png_far_to_near PNGARG((png_structp png_ptr,png_voidp ptr,
  260.    int check));
  261. #endif /* USE_FAR_KEYWORD */
  262. #ifndef PNG_NO_ERROR_TEXT
  263. /* Fatal error in PNG image of libpng - can't continue */
  264. extern PNG_EXPORT(void,png_error) PNGARG((png_structp png_ptr,
  265.    png_const_charp error_message));
  266. /* The same, but the chunk name is prepended to the error string. */
  267. extern PNG_EXPORT(void,png_chunk_error) PNGARG((png_structp png_ptr,
  268.    png_const_charp error_message));
  269. #else
  270. /* Fatal error in PNG image of libpng - can't continue */
  271. extern PNG_EXPORT(void,png_err) PNGARG((png_structp png_ptr));
  272. #endif
  273. #ifndef PNG_NO_WARNINGS
  274. /* Non-fatal error in libpng.  Can continue, but may have a problem. */
  275. extern PNG_EXPORT(void,png_warning) PNGARG((png_structp png_ptr,
  276.    png_const_charp warning_message));
  277. #ifdef PNG_READ_SUPPORTED
  278. /* Non-fatal error in libpng, chunk name is prepended to message. */
  279. extern PNG_EXPORT(void,png_chunk_warning) PNGARG((png_structp png_ptr,
  280.    png_const_charp warning_message));
  281. #endif /* PNG_READ_SUPPORTED */
  282. #endif /* PNG_NO_WARNINGS */
  283. /* The png_set_<chunk> functions are for storing values in the png_info_struct.
  284.  * Similarly, the png_get_<chunk> calls are used to read values from the
  285.  * png_info_struct, either storing the parameters in the passed variables, or
  286.  * setting pointers into the png_info_struct where the data is stored.  The
  287.  * png_get_<chunk> functions return a non-zero value if the data was available
  288.  * in info_ptr, or return zero and do not change any of the parameters if the
  289.  * data was not available.
  290.  *
  291.  * These functions should be used instead of directly accessing png_info
  292.  * to avoid problems with future changes in the size and internal layout of
  293.  * png_info_struct.
  294.  */
  295. /* Returns "flag" if chunk data is valid in info_ptr. */
  296. extern PNG_EXPORT(png_uint_32,png_get_valid) PNGARG((png_structp png_ptr,
  297. png_infop info_ptr, png_uint_32 flag));
  298. /* Returns number of bytes needed to hold a transformed row. */
  299. extern PNG_EXPORT(png_uint_32,png_get_rowbytes) PNGARG((png_structp png_ptr,
  300. png_infop info_ptr));
  301. #if defined(PNG_INFO_IMAGE_SUPPORTED)
  302. /* Returns row_pointers, which is an array of pointers to scanlines that was
  303. returned from png_read_png(). */
  304. extern PNG_EXPORT(png_bytepp,png_get_rows) PNGARG((png_structp png_ptr,
  305. png_infop info_ptr));
  306. /* Set row_pointers, which is an array of pointers to scanlines for use
  307. by png_write_png(). */
  308. extern PNG_EXPORT(void,png_set_rows) PNGARG((png_structp png_ptr,
  309.    png_infop info_ptr, png_bytepp row_pointers));
  310. #endif
  311. /* Returns number of color channels in image. */
  312. extern PNG_EXPORT(png_byte,png_get_channels) PNGARG((png_structp png_ptr,
  313. png_infop info_ptr));
  314. #ifdef PNG_EASY_ACCESS_SUPPORTED
  315. /* Returns image width in pixels. */
  316. extern PNG_EXPORT(png_uint_32, png_get_image_width) PNGARG((png_structp
  317. png_ptr, png_infop info_ptr));
  318. /* Returns image height in pixels. */
  319. extern PNG_EXPORT(png_uint_32, png_get_image_height) PNGARG((png_structp
  320. png_ptr, png_infop info_ptr));
  321. /* Returns image bit_depth. */
  322. extern PNG_EXPORT(png_byte, png_get_bit_depth) PNGARG((png_structp
  323. png_ptr, png_infop info_ptr));
  324. /* Returns image color_type. */
  325. extern PNG_EXPORT(png_byte, png_get_color_type) PNGARG((png_structp
  326. png_ptr, png_infop info_ptr));
  327. /* Returns image filter_type. */
  328. extern PNG_EXPORT(png_byte, png_get_filter_type) PNGARG((png_structp
  329. png_ptr, png_infop info_ptr));
  330. /* Returns image interlace_type. */
  331. extern PNG_EXPORT(png_byte, png_get_interlace_type) PNGARG((png_structp
  332. png_ptr, png_infop info_ptr));
  333. /* Returns image compression_type. */
  334. extern PNG_EXPORT(png_byte, png_get_compression_type) PNGARG((png_structp
  335. png_ptr, png_infop info_ptr));
  336. /* Returns image resolution in pixels per meter, from pHYs chunk data. */
  337. extern PNG_EXPORT(png_uint_32, png_get_pixels_per_meter) PNGARG((png_structp
  338. png_ptr, png_infop info_ptr));
  339. extern PNG_EXPORT(png_uint_32, png_get_x_pixels_per_meter) PNGARG((png_structp
  340. png_ptr, png_infop info_ptr));
  341. extern PNG_EXPORT(png_uint_32, png_get_y_pixels_per_meter) PNGARG((png_structp
  342. png_ptr, png_infop info_ptr));
  343. /* Returns pixel aspect ratio, computed from pHYs chunk data.  */
  344. #ifdef PNG_FLOATING_POINT_SUPPORTED
  345. extern PNG_EXPORT(float, png_get_pixel_aspect_ratio) PNGARG((png_structp
  346. png_ptr, png_infop info_ptr));
  347. #endif
  348. /* Returns image x, y offset in pixels or microns, from oFFs chunk data. */
  349. extern PNG_EXPORT(png_int_32, png_get_x_offset_pixels) PNGARG((png_structp
  350. png_ptr, png_infop info_ptr));
  351. extern PNG_EXPORT(png_int_32, png_get_y_offset_pixels) PNGARG((png_structp
  352. png_ptr, png_infop info_ptr));
  353. extern PNG_EXPORT(png_int_32, png_get_x_offset_microns) PNGARG((png_structp
  354. png_ptr, png_infop info_ptr));
  355. extern PNG_EXPORT(png_int_32, png_get_y_offset_microns) PNGARG((png_structp
  356. png_ptr, png_infop info_ptr));
  357. #endif /* PNG_EASY_ACCESS_SUPPORTED */
  358. /* Returns pointer to signature string read from PNG header */
  359. extern PNG_EXPORT(png_bytep,png_get_signature) PNGARG((png_structp png_ptr,
  360. png_infop info_ptr));
  361. #if defined(PNG_bKGD_SUPPORTED)
  362. extern PNG_EXPORT(png_uint_32,png_get_bKGD) PNGARG((png_structp png_ptr,
  363.    png_infop info_ptr, png_color_16p *background));
  364. #endif
  365. #if defined(PNG_bKGD_SUPPORTED)
  366. extern PNG_EXPORT(void,png_set_bKGD) PNGARG((png_structp png_ptr,
  367.    png_infop info_ptr, png_color_16p background));
  368. #endif
  369. #if defined(PNG_cHRM_SUPPORTED)
  370. #ifdef PNG_FLOATING_POINT_SUPPORTED
  371. extern PNG_EXPORT(png_uint_32,png_get_cHRM) PNGARG((png_structp png_ptr,
  372.    png_infop info_ptr, double *white_x, double *white_y, double *red_x,
  373.    double *red_y, double *green_x, double *green_y, double *blue_x,
  374.    double *blue_y));
  375. #endif
  376. #ifdef PNG_FIXED_POINT_SUPPORTED
  377. extern PNG_EXPORT(png_uint_32,png_get_cHRM_fixed) PNGARG((png_structp png_ptr,
  378.    png_infop info_ptr, png_fixed_point *int_white_x, png_fixed_point
  379.    *int_white_y, png_fixed_point *int_red_x, png_fixed_point *int_red_y,
  380.    png_fixed_point *int_green_x, png_fixed_point *int_green_y, png_fixed_point
  381.    *int_blue_x, png_fixed_point *int_blue_y));
  382. #endif
  383. #endif
  384. #if defined(PNG_cHRM_SUPPORTED)
  385. #ifdef PNG_FLOATING_POINT_SUPPORTED
  386. extern PNG_EXPORT(void,png_set_cHRM) PNGARG((png_structp png_ptr,
  387.    png_infop info_ptr, double white_x, double white_y, double red_x,
  388.    double red_y, double green_x, double green_y, double blue_x, double blue_y));
  389. #endif
  390. #ifdef PNG_FIXED_POINT_SUPPORTED
  391. extern PNG_EXPORT(void,png_set_cHRM_fixed) PNGARG((png_structp png_ptr,
  392.    png_infop info_ptr, png_fixed_point int_white_x, png_fixed_point int_white_y,
  393.    png_fixed_point int_red_x, png_fixed_point int_red_y, png_fixed_point
  394.    int_green_x, png_fixed_point int_green_y, png_fixed_point int_blue_x,
  395.    png_fixed_point int_blue_y));
  396. #endif
  397. #endif
  398. #if defined(PNG_gAMA_SUPPORTED)
  399. #ifdef PNG_FLOATING_POINT_SUPPORTED
  400. extern PNG_EXPORT(png_uint_32,png_get_gAMA) PNGARG((png_structp png_ptr,
  401.    png_infop info_ptr, double *file_gamma));
  402. #endif
  403. extern PNG_EXPORT(png_uint_32,png_get_gAMA_fixed) PNGARG((png_structp png_ptr,
  404.    png_infop info_ptr, png_fixed_point *int_file_gamma));
  405. #endif
  406. #if defined(PNG_gAMA_SUPPORTED)
  407. #ifdef PNG_FLOATING_POINT_SUPPORTED
  408. extern PNG_EXPORT(void,png_set_gAMA) PNGARG((png_structp png_ptr,
  409.    png_infop info_ptr, double file_gamma));
  410. #endif
  411. extern PNG_EXPORT(void,png_set_gAMA_fixed) PNGARG((png_structp png_ptr,
  412.    png_infop info_ptr, png_fixed_point int_file_gamma));
  413. #endif
  414. #if defined(PNG_hIST_SUPPORTED)
  415. extern PNG_EXPORT(png_uint_32,png_get_hIST) PNGARG((png_structp png_ptr,
  416.    png_infop info_ptr, png_uint_16p *hist));
  417. #endif
  418. #if defined(PNG_hIST_SUPPORTED)
  419. extern PNG_EXPORT(void,png_set_hIST) PNGARG((png_structp png_ptr,
  420.    png_infop info_ptr, png_uint_16p hist));
  421. #endif
  422. extern PNG_EXPORT(png_uint_32,png_get_IHDR) PNGARG((png_structp png_ptr,
  423.    png_infop info_ptr, png_uint_32 *width, png_uint_32 *height,
  424.    int *bit_depth, int *color_type, int *interlace_method,
  425.    int *compression_method, int *filter_method));
  426. extern PNG_EXPORT(void,png_set_IHDR) PNGARG((png_structp png_ptr,
  427.    png_infop info_ptr, png_uint_32 width, png_uint_32 height, int bit_depth,
  428.    int color_type, int interlace_method, int compression_method,
  429.    int filter_method));
  430. #if defined(PNG_oFFs_SUPPORTED)
  431. extern PNG_EXPORT(png_uint_32,png_get_oFFs) PNGARG((png_structp png_ptr,
  432.    png_infop info_ptr, png_int_32 *offset_x, png_int_32 *offset_y,
  433.    int *unit_type));
  434. #endif
  435. #if defined(PNG_oFFs_SUPPORTED)
  436. extern PNG_EXPORT(void,png_set_oFFs) PNGARG((png_structp png_ptr,
  437.    png_infop info_ptr, png_int_32 offset_x, png_int_32 offset_y,
  438.    int unit_type));
  439. #endif
  440. #if defined(PNG_pCAL_SUPPORTED)
  441. extern PNG_EXPORT(png_uint_32,png_get_pCAL) PNGARG((png_structp png_ptr,
  442.    png_infop info_ptr, png_charp *purpose, png_int_32 *X0, png_int_32 *X1,
  443.    int *type, int *nparams, png_charp *units, png_charpp *params));
  444. #endif
  445. #if defined(PNG_pCAL_SUPPORTED)
  446. extern PNG_EXPORT(void,png_set_pCAL) PNGARG((png_structp png_ptr,
  447.    png_infop info_ptr, png_charp purpose, png_int_32 X0, png_int_32 X1,
  448.    int type, int nparams, png_charp units, png_charpp params));
  449. #endif
  450. #if defined(PNG_pHYs_SUPPORTED)
  451. extern PNG_EXPORT(png_uint_32,png_get_pHYs) PNGARG((png_structp png_ptr,
  452.    png_infop info_ptr, png_uint_32 *res_x, png_uint_32 *res_y, int *unit_type));
  453. #endif
  454. #if defined(PNG_pHYs_SUPPORTED)
  455. extern PNG_EXPORT(void,png_set_pHYs) PNGARG((png_structp png_ptr,
  456.    png_infop info_ptr, png_uint_32 res_x, png_uint_32 res_y, int unit_type));
  457. #endif
  458. extern PNG_EXPORT(png_uint_32,png_get_PLTE) PNGARG((png_structp png_ptr,
  459.    png_infop info_ptr, png_colorp *palette, int *num_palette));
  460. extern PNG_EXPORT(void,png_set_PLTE) PNGARG((png_structp png_ptr,
  461.    png_infop info_ptr, png_colorp palette, int num_palette));
  462. #if defined(PNG_sBIT_SUPPORTED)
  463. extern PNG_EXPORT(png_uint_32,png_get_sBIT) PNGARG((png_structp png_ptr,
  464.    png_infop info_ptr, png_color_8p *sig_bit));
  465. #endif
  466. #if defined(PNG_sBIT_SUPPORTED)
  467. extern PNG_EXPORT(void,png_set_sBIT) PNGARG((png_structp png_ptr,
  468.    png_infop info_ptr, png_color_8p sig_bit));
  469. #endif
  470. #if defined(PNG_sRGB_SUPPORTED)
  471. extern PNG_EXPORT(png_uint_32,png_get_sRGB) PNGARG((png_structp png_ptr,
  472.    png_infop info_ptr, int *intent));
  473. #endif
  474. #if defined(PNG_sRGB_SUPPORTED)
  475. extern PNG_EXPORT(void,png_set_sRGB) PNGARG((png_structp png_ptr,
  476.    png_infop info_ptr, int intent));
  477. extern PNG_EXPORT(void,png_set_sRGB_gAMA_and_cHRM) PNGARG((png_structp png_ptr,
  478.    png_infop info_ptr, int intent));
  479. #endif
  480. #if defined(PNG_iCCP_SUPPORTED)
  481. extern PNG_EXPORT(png_uint_32,png_get_iCCP) PNGARG((png_structp png_ptr,
  482.    png_infop info_ptr, png_charpp name, int *compression_type,
  483.    png_charpp profile, png_uint_32 *proflen));
  484.    /* Note to maintainer: profile should be png_bytepp */
  485. #endif
  486. #if defined(PNG_iCCP_SUPPORTED)
  487. extern PNG_EXPORT(void,png_set_iCCP) PNGARG((png_structp png_ptr,
  488.    png_infop info_ptr, png_charp name, int compression_type,
  489.    png_charp profile, png_uint_32 proflen));
  490.    /* Note to maintainer: profile should be png_bytep */
  491. #endif
  492. #if defined(PNG_sPLT_SUPPORTED)
  493. extern PNG_EXPORT(png_uint_32,png_get_sPLT) PNGARG((png_structp png_ptr,
  494.    png_infop info_ptr, png_sPLT_tpp entries));
  495. #endif
  496. #if defined(PNG_sPLT_SUPPORTED)
  497. extern PNG_EXPORT(void,png_set_sPLT) PNGARG((png_structp png_ptr,
  498.    png_infop info_ptr, png_sPLT_tp entries, int nentries));
  499. #endif
  500. #if defined(PNG_TEXT_SUPPORTED)
  501. /* png_get_text also returns the number of text chunks in *num_text */
  502. extern PNG_EXPORT(png_uint_32,png_get_text) PNGARG((png_structp png_ptr,
  503.    png_infop info_ptr, png_textp *text_ptr, int *num_text));
  504. #endif
  505. /*
  506.  *  Note while png_set_text() will accept a structure whose text,
  507.  *  language, and  translated keywords are NULL pointers, the structure
  508.  *  returned by png_get_text will always contain regular
  509.  *  zero-terminated C strings.  They might be empty strings but
  510.  *  they will never be NULL pointers.
  511.  */
  512. #if defined(PNG_TEXT_SUPPORTED)
  513. extern PNG_EXPORT(void,png_set_text) PNGARG((png_structp png_ptr,
  514.    png_infop info_ptr, png_textp text_ptr, int num_text));
  515. #endif
  516. #if defined(PNG_tIME_SUPPORTED)
  517. extern PNG_EXPORT(png_uint_32,png_get_tIME) PNGARG((png_structp png_ptr,
  518.    png_infop info_ptr, png_timep *mod_time));
  519. #endif
  520. #if defined(PNG_tIME_SUPPORTED)
  521. extern PNG_EXPORT(void,png_set_tIME) PNGARG((png_structp png_ptr,
  522.    png_infop info_ptr, png_timep mod_time));
  523. #endif
  524. #if defined(PNG_tRNS_SUPPORTED)
  525. extern PNG_EXPORT(png_uint_32,png_get_tRNS) PNGARG((png_structp png_ptr,
  526.    png_infop info_ptr, png_bytep *trans, int *num_trans,
  527.    png_color_16p *trans_values));
  528. #endif
  529. #if defined(PNG_tRNS_SUPPORTED)
  530. extern PNG_EXPORT(void,png_set_tRNS) PNGARG((png_structp png_ptr,
  531.    png_infop info_ptr, png_bytep trans, int num_trans,
  532.    png_color_16p trans_values));
  533. #endif
  534. #if defined(PNG_tRNS_SUPPORTED)
  535. #endif
  536. #if defined(PNG_sCAL_SUPPORTED)
  537. #ifdef PNG_FLOATING_POINT_SUPPORTED
  538. extern PNG_EXPORT(png_uint_32,png_get_sCAL) PNGARG((png_structp png_ptr,
  539.    png_infop info_ptr, int *unit, double *width, double *height));
  540. #else
  541. #ifdef PNG_FIXED_POINT_SUPPORTED
  542. extern PNG_EXPORT(png_uint_32,png_get_sCAL_s) PNGARG((png_structp png_ptr,
  543.    png_infop info_ptr, int *unit, png_charpp swidth, png_charpp sheight));
  544. #endif
  545. #endif
  546. #endif /* PNG_sCAL_SUPPORTED */
  547. #if defined(PNG_sCAL_SUPPORTED)
  548. #ifdef PNG_FLOATING_POINT_SUPPORTED
  549. extern PNG_EXPORT(void,png_set_sCAL) PNGARG((png_structp png_ptr,
  550.    png_infop info_ptr, int unit, double width, double height));
  551. #else
  552. #ifdef PNG_FIXED_POINT_SUPPORTED
  553. extern PNG_EXPORT(void,png_set_sCAL_s) PNGARG((png_structp png_ptr,
  554.    png_infop info_ptr, int unit, png_charp swidth, png_charp sheight));
  555. #endif
  556. #endif
  557. #endif /* PNG_sCAL_SUPPORTED || PNG_WRITE_sCAL_SUPPORTED */
  558. #if defined(PNG_UNKNOWN_CHUNKS_SUPPORTED)
  559. /* provide a list of chunks and how they are to be handled, if the built-in
  560.    handling or default unknown chunk handling is not desired.  Any chunks not
  561.    listed will be handled in the default manner.  The IHDR and IEND chunks
  562.    must not be listed.
  563.       keep = 0: follow default behaviour
  564.            = 1: do not keep
  565.            = 2: keep only if safe-to-copy
  566.            = 3: keep even if unsafe-to-copy
  567. */
  568. extern PNG_EXPORT(void, png_set_keep_unknown_chunks) PNGARG((png_structp
  569.    png_ptr, int keep, png_bytep chunk_list, int num_chunks));
  570. extern PNG_EXPORT(void, png_set_unknown_chunks) PNGARG((png_structp png_ptr,
  571.    png_infop info_ptr, png_unknown_chunkp unknowns, int num_unknowns));
  572. extern PNG_EXPORT(void, png_set_unknown_chunk_location)
  573.    PNGARG((png_structp png_ptr, png_infop info_ptr, int chunk, int location));
  574. extern PNG_EXPORT(png_uint_32,png_get_unknown_chunks) PNGARG((png_structp
  575.    png_ptr, png_infop info_ptr, png_unknown_chunkpp entries));
  576. #endif
  577. #ifdef PNG_HANDLE_AS_UNKNOWN_SUPPORTED
  578. PNG_EXPORT(int,png_handle_as_unknown) PNGARG((png_structp png_ptr, png_bytep
  579.    chunk_name));
  580. #endif
  581. /* Png_free_data() will turn off the "valid" flag for anything it frees.
  582.    If you need to turn it off for a chunk that your application has freed,
  583.    you can use png_set_invalid(png_ptr, info_ptr, PNG_INFO_CHNK); */
  584. extern PNG_EXPORT(void, png_set_invalid) PNGARG((png_structp png_ptr,
  585.    png_infop info_ptr, int mask));
  586. #if defined(PNG_INFO_IMAGE_SUPPORTED)
  587. /* The "params" pointer is currently not used and is for future expansion. */
  588. extern PNG_EXPORT(void, png_read_png) PNGARG((png_structp png_ptr,
  589.                         png_infop info_ptr,
  590.                         int transforms,
  591.                         png_voidp params));
  592. extern PNG_EXPORT(void, png_write_png) PNGARG((png_structp png_ptr,
  593.                         png_infop info_ptr,
  594.                         int transforms,
  595.                         png_voidp params));
  596. #endif
  597. /* Define PNG_DEBUG at compile time for debugging information.  Higher
  598.  * numbers for PNG_DEBUG mean more debugging information.  This has
  599.  * only been added since version 0.95 so it is not implemented throughout
  600.  * libpng yet, but more support will be added as needed.
  601.  */
  602. #ifdef PNG_DEBUG
  603. #if (PNG_DEBUG > 0)
  604. #if !defined(PNG_DEBUG_FILE) && defined(_MSC_VER)
  605. #include <crtdbg.h>
  606. #if (PNG_DEBUG > 1)
  607. #ifndef _DEBUG
  608. #  define _DEBUG
  609. #endif
  610. #ifndef png_debug
  611. #define png_debug(l,m)  _RPT0(_CRT_WARN,m PNG_STRING_NEWLINE)
  612. #endif
  613. #ifndef png_debug1
  614. #define png_debug1(l,m,p1)  _RPT1(_CRT_WARN,m PNG_STRING_NEWLINE,p1)
  615. #endif
  616. #ifndef png_debug2
  617. #define png_debug2(l,m,p1,p2) _RPT2(_CRT_WARN,m PNG_STRING_NEWLINE,p1,p2)
  618. #endif
  619. #endif
  620. #else /* PNG_DEBUG_FILE || !_MSC_VER */
  621. #ifndef PNG_DEBUG_FILE
  622. #define PNG_DEBUG_FILE stderr
  623. #endif /* PNG_DEBUG_FILE */
  624. #if (PNG_DEBUG > 1)
  625. #ifndef png_debug
  626. /* Note: ["%s"m PNG_STRING_NEWLINE] probably does not work on
  627.  * non-ISO compilers */
  628. #ifdef __STDC__
  629. #define png_debug(l,m) 
  630.      int num_tabs=l; 
  631.      fprintf(PNG_DEBUG_FILE,"%s"m PNG_STRING_NEWLINE,(num_tabs==1 ? "t" : 
  632.        (num_tabs==2 ? "tt":(num_tabs>2 ? "ttt":"")))); 
  633. }
  634. #endif
  635. #ifndef png_debug1
  636. #define png_debug1(l,m,p1) 
  637.      int num_tabs=l; 
  638.      fprintf(PNG_DEBUG_FILE,"%s"m PNG_STRING_NEWLINE,(num_tabs==1 ? "t" : 
  639.        (num_tabs==2 ? "tt":(num_tabs>2 ? "ttt":""))),p1); 
  640. }
  641. #endif
  642. #ifndef png_debug2
  643. #define png_debug2(l,m,p1,p2) 
  644.      int num_tabs=l; 
  645.      fprintf(PNG_DEBUG_FILE,"%s"m PNG_STRING_NEWLINE,(num_tabs==1 ? "t" : 
  646.        (num_tabs==2 ? "tt":(num_tabs>2 ? "ttt":""))),p1,p2); 
  647. }
  648. #endif
  649. #else /* __STDC __ */
  650. #ifndef png_debug
  651. #define png_debug(l,m) 
  652.      int num_tabs=l; 
  653.      char format[256]; 
  654.      snprintf(format,256,"%s%s%s",(num_tabs==1 ? "t" : 
  655.        (num_tabs==2 ? "tt":(num_tabs>2 ? "ttt":""))), 
  656.        m,PNG_STRING_NEWLINE); 
  657.      fprintf(PNG_DEBUG_FILE,format);
  658. #endif
  659. #ifndef png_debug1
  660. #define png_debug1(l,m,p1) 
  661.      int num_tabs=l; 
  662.      char format[256]; 
  663.      snprintf(format,256,"%s%s%s",(num_tabs==1 ? "t" : 
  664.        (num_tabs==2 ? "tt":(num_tabs>2 ? "ttt":""))), 
  665.        m,PNG_STRING_NEWLINE); 
  666.      fprintf(PNG_DEBUG_FILE,format,p1);
  667. #endif
  668. #ifndef png_debug2
  669. #define png_debug2(l,m,p1,p2) 
  670.      int num_tabs=l; 
  671.      char format[256]; 
  672.      snprintf(format,256,"%s%s%s",(num_tabs==1 ? "t" : 
  673.        (num_tabs==2 ? "tt":(num_tabs>2 ? "ttt":""))), 
  674.        m,PNG_STRING_NEWLINE); 
  675.      fprintf(PNG_DEBUG_FILE,format,p1,p2);
  676. #endif
  677. #endif /* __STDC __ */
  678. #endif /* (PNG_DEBUG > 1) */
  679. #endif /* _MSC_VER */
  680. #endif /* (PNG_DEBUG > 0) */
  681. #endif /* PNG_DEBUG */
  682. #ifndef png_debug
  683. #define png_debug(l, m)
  684. #endif
  685. #ifndef png_debug1
  686. #define png_debug1(l, m, p1)
  687. #endif
  688. #ifndef png_debug2
  689. #define png_debug2(l, m, p1, p2)
  690. #endif
  691. extern PNG_EXPORT(png_charp,png_get_copyright) PNGARG((png_structp png_ptr));
  692. extern PNG_EXPORT(png_charp,png_get_header_ver) PNGARG((png_structp png_ptr));
  693. extern PNG_EXPORT(png_charp,png_get_header_version) PNGARG((png_structp png_ptr));
  694. extern PNG_EXPORT(png_charp,png_get_libpng_ver) PNGARG((png_structp png_ptr));
  695. #ifdef PNG_MNG_FEATURES_SUPPORTED
  696. extern PNG_EXPORT(png_uint_32,png_permit_mng_features) PNGARG((png_structp
  697.    png_ptr, png_uint_32 mng_features_permitted));
  698. #endif
  699. /* For use in png_set_keep_unknown, added to version 1.2.6 */
  700. #define PNG_HANDLE_CHUNK_AS_DEFAULT   0
  701. #define PNG_HANDLE_CHUNK_NEVER        1
  702. #define PNG_HANDLE_CHUNK_IF_SAFE      2
  703. #define PNG_HANDLE_CHUNK_ALWAYS       3
  704. /* Added to version 1.2.0 */
  705. #if defined(PNG_ASSEMBLER_CODE_SUPPORTED)
  706. #if defined(PNG_MMX_CODE_SUPPORTED)
  707. #define PNG_ASM_FLAG_MMX_SUPPORT_COMPILED  0x01  /* not user-settable */
  708. #define PNG_ASM_FLAG_MMX_SUPPORT_IN_CPU    0x02  /* not user-settable */
  709. #define PNG_ASM_FLAG_MMX_READ_COMBINE_ROW  0x04
  710. #define PNG_ASM_FLAG_MMX_READ_INTERLACE    0x08
  711. #define PNG_ASM_FLAG_MMX_READ_FILTER_SUB   0x10
  712. #define PNG_ASM_FLAG_MMX_READ_FILTER_UP    0x20
  713. #define PNG_ASM_FLAG_MMX_READ_FILTER_AVG   0x40
  714. #define PNG_ASM_FLAG_MMX_READ_FILTER_PAETH 0x80
  715. #define PNG_ASM_FLAGS_INITIALIZED          0x80000000  /* not user-settable */
  716. #define PNG_MMX_READ_FLAGS ( PNG_ASM_FLAG_MMX_READ_COMBINE_ROW  
  717.                            | PNG_ASM_FLAG_MMX_READ_INTERLACE    
  718.                            | PNG_ASM_FLAG_MMX_READ_FILTER_SUB   
  719.                            | PNG_ASM_FLAG_MMX_READ_FILTER_UP    
  720.                            | PNG_ASM_FLAG_MMX_READ_FILTER_AVG   
  721.                            | PNG_ASM_FLAG_MMX_READ_FILTER_PAETH )
  722. #define PNG_MMX_WRITE_FLAGS ( 0 )
  723. #define PNG_MMX_FLAGS ( PNG_ASM_FLAG_MMX_SUPPORT_COMPILED 
  724.                       | PNG_ASM_FLAG_MMX_SUPPORT_IN_CPU   
  725.                       | PNG_MMX_READ_FLAGS                
  726.                       | PNG_MMX_WRITE_FLAGS )
  727. #define PNG_SELECT_READ   1
  728. #define PNG_SELECT_WRITE  2
  729. #endif /* PNG_MMX_CODE_SUPPORTED */
  730. #if !defined(PNG_1_0_X)
  731. /* pngget.c */
  732. extern PNG_EXPORT(png_uint_32,png_get_mmx_flagmask)
  733.    PNGARG((int flag_select, int *compilerID));
  734. /* pngget.c */
  735. extern PNG_EXPORT(png_uint_32,png_get_asm_flagmask)
  736.    PNGARG((int flag_select));
  737. /* pngget.c */
  738. extern PNG_EXPORT(png_uint_32,png_get_asm_flags)
  739.    PNGARG((png_structp png_ptr));
  740. /* pngget.c */
  741. extern PNG_EXPORT(png_byte,png_get_mmx_bitdepth_threshold)
  742.    PNGARG((png_structp png_ptr));
  743. /* pngget.c */
  744. extern PNG_EXPORT(png_uint_32,png_get_mmx_rowbytes_threshold)
  745.    PNGARG((png_structp png_ptr));
  746. /* pngset.c */
  747. extern PNG_EXPORT(void,png_set_asm_flags)
  748.    PNGARG((png_structp png_ptr, png_uint_32 asm_flags));
  749. /* pngset.c */
  750. extern PNG_EXPORT(void,png_set_mmx_thresholds)
  751.    PNGARG((png_structp png_ptr, png_byte mmx_bitdepth_threshold,
  752.    png_uint_32 mmx_rowbytes_threshold));
  753. #endif /* PNG_1_0_X */
  754. #if !defined(PNG_1_0_X)
  755. /* png.c, pnggccrd.c, or pngvcrd.c */
  756. extern PNG_EXPORT(int,png_mmx_support) PNGARG((void));
  757. #endif /* PNG_ASSEMBLER_CODE_SUPPORTED */
  758. /* Strip the prepended error numbers ("#nnn ") from error and warning
  759.  * messages before passing them to the error or warning handler. */
  760. #ifdef PNG_ERROR_NUMBERS_SUPPORTED
  761. extern PNG_EXPORT(void,png_set_strip_error_numbers) PNGARG((png_structp
  762.    png_ptr, png_uint_32 strip_mode));
  763. #endif
  764. #endif /* PNG_1_0_X */
  765. /* Added at libpng-1.2.6 */
  766. #ifdef PNG_SET_USER_LIMITS_SUPPORTED
  767. extern PNG_EXPORT(void,png_set_user_limits) PNGARG((png_structp
  768.    png_ptr, png_uint_32 user_width_max, png_uint_32 user_height_max));
  769. extern PNG_EXPORT(png_uint_32,png_get_user_width_max) PNGARG((png_structp
  770.    png_ptr));
  771. extern PNG_EXPORT(png_uint_32,png_get_user_height_max) PNGARG((png_structp
  772.    png_ptr));
  773. #endif
  774. /* Maintainer: Put new public prototypes here ^, in libpng.3, and project defs */
  775. #ifdef PNG_READ_COMPOSITE_NODIV_SUPPORTED
  776. /* With these routines we avoid an integer divide, which will be slower on
  777.  * most machines.  However, it does take more operations than the corresponding
  778.  * divide method, so it may be slower on a few RISC systems.  There are two
  779.  * shifts (by 8 or 16 bits) and an addition, versus a single integer divide.
  780.  *
  781.  * Note that the rounding factors are NOT supposed to be the same!  128 and
  782.  * 32768 are correct for the NODIV code; 127 and 32767 are correct for the
  783.  * standard method.
  784.  *
  785.  * [Optimized code by Greg Roelofs and Mark Adler...blame us for bugs. :-) ]
  786.  */
  787.  /* fg and bg should be in `gamma 1.0' space; alpha is the opacity          */
  788. #  define png_composite(composite, fg, alpha, bg)                            
  789.      { png_uint_16 temp = (png_uint_16)((png_uint_16)(fg) * (png_uint_16)(alpha) 
  790.                         +        (png_uint_16)(bg)*(png_uint_16)(255 -       
  791.                         (png_uint_16)(alpha)) + (png_uint_16)128);           
  792.        (composite) = (png_byte)((temp + (temp >> 8)) >> 8); }
  793. #  define png_composite_16(composite, fg, alpha, bg)                         
  794.      { png_uint_32 temp = (png_uint_32)((png_uint_32)(fg) * (png_uint_32)(alpha) 
  795.                         + (png_uint_32)(bg)*(png_uint_32)(65535L -           
  796.                         (png_uint_32)(alpha)) + (png_uint_32)32768L);        
  797.        (composite) = (png_uint_16)((temp + (temp >> 16)) >> 16); }
  798. #else  /* standard method using integer division */
  799. #  define png_composite(composite, fg, alpha, bg)                            
  800.      (composite) = (png_byte)(((png_uint_16)(fg) * (png_uint_16)(alpha) +    
  801.        (png_uint_16)(bg) * (png_uint_16)(255 - (png_uint_16)(alpha)) +       
  802.        (png_uint_16)127) / 255)
  803. #  define png_composite_16(composite, fg, alpha, bg)                         
  804.      (composite) = (png_uint_16)(((png_uint_32)(fg) * (png_uint_32)(alpha) + 
  805.        (png_uint_32)(bg)*(png_uint_32)(65535L - (png_uint_32)(alpha)) +      
  806.        (png_uint_32)32767) / (png_uint_32)65535L)
  807. #endif /* PNG_READ_COMPOSITE_NODIV_SUPPORTED */
  808. /* Inline macros to do direct reads of bytes from the input buffer.  These
  809.  * require that you are using an architecture that uses PNG byte ordering
  810.  * (MSB first) and supports unaligned data storage.  I think that PowerPC
  811.  * in big-endian mode and 680x0 are the only ones that will support this.
  812.  * The x86 line of processors definitely do not.  The png_get_int_32()
  813.  * routine also assumes we are using two's complement format for negative
  814.  * values, which is almost certainly true.
  815.  */
  816. #if defined(PNG_READ_BIG_ENDIAN_SUPPORTED)
  817. #  define png_get_uint_32(buf) ( *((png_uint_32p) (buf)))
  818. #  define png_get_uint_16(buf) ( *((png_uint_16p) (buf)))
  819. #  define png_get_int_32(buf)  ( *((png_int_32p)  (buf)))
  820. #else
  821. extern PNG_EXPORT(png_uint_32,png_get_uint_32) PNGARG((png_bytep buf));
  822. extern PNG_EXPORT(png_uint_16,png_get_uint_16) PNGARG((png_bytep buf));
  823. extern PNG_EXPORT(png_int_32,png_get_int_32) PNGARG((png_bytep buf));
  824. #endif /* !PNG_READ_BIG_ENDIAN_SUPPORTED */
  825. extern PNG_EXPORT(png_uint_32,png_get_uint_31)
  826.   PNGARG((png_structp png_ptr, png_bytep buf));
  827. /* No png_get_int_16 -- may be added if there's a real need for it. */
  828. /* Place a 32-bit number into a buffer in PNG byte order (big-endian).
  829.  */
  830. extern PNG_EXPORT(void,png_save_uint_32)
  831.    PNGARG((png_bytep buf, png_uint_32 i));
  832. extern PNG_EXPORT(void,png_save_int_32)
  833.    PNGARG((png_bytep buf, png_int_32 i));
  834. /* Place a 16-bit number into a buffer in PNG byte order.
  835.  * The parameter is declared unsigned int, not png_uint_16,
  836.  * just to avoid potential problems on pre-ANSI C compilers.
  837.  */
  838. extern PNG_EXPORT(void,png_save_uint_16)
  839.    PNGARG((png_bytep buf, unsigned int i));
  840. /* No png_save_int_16 -- may be added if there's a real need for it. */
  841. /* ************************************************************************* */
  842. /* These next functions are used internally in the code.  They generally
  843.  * shouldn't be used unless you are writing code to add or replace some
  844.  * functionality in libpng.  More information about most functions can
  845.  * be found in the files where the functions are located.
  846.  */
  847. /* Various modes of operation, that are visible to applications because
  848.  * they are used for unknown chunk location.
  849.  */
  850. #define PNG_HAVE_IHDR               0x01
  851. #define PNG_HAVE_PLTE               0x02
  852. #define PNG_HAVE_IDAT               0x04
  853. #define PNG_AFTER_IDAT              0x08 /* Have complete zlib datastream */
  854. #define PNG_HAVE_IEND               0x10
  855. #if defined(PNG_INTERNAL)
  856. /* More modes of operation.  Note that after an init, mode is set to
  857.  * zero automatically when the structure is created.
  858.  */
  859. #define PNG_HAVE_gAMA               0x20
  860. #define PNG_HAVE_cHRM               0x40
  861. #define PNG_HAVE_sRGB               0x80
  862. #define PNG_HAVE_CHUNK_HEADER      0x100
  863. #define PNG_WROTE_tIME             0x200
  864. #define PNG_WROTE_INFO_BEFORE_PLTE 0x400
  865. #define PNG_BACKGROUND_IS_GRAY     0x800
  866. #define PNG_HAVE_PNG_SIGNATURE    0x1000
  867. #define PNG_HAVE_CHUNK_AFTER_IDAT 0x2000 /* Have another chunk after IDAT */
  868. /* flags for the transformations the PNG library does on the image data */
  869. #define PNG_BGR                0x0001
  870. #define PNG_INTERLACE          0x0002
  871. #define PNG_PACK               0x0004
  872. #define PNG_SHIFT              0x0008
  873. #define PNG_SWAP_BYTES         0x0010
  874. #define PNG_INVERT_MONO        0x0020
  875. #define PNG_DITHER             0x0040
  876. #define PNG_BACKGROUND         0x0080
  877. #define PNG_BACKGROUND_EXPAND  0x0100
  878.                           /*   0x0200 unused */
  879. #define PNG_16_TO_8            0x0400
  880. #define PNG_RGBA               0x0800
  881. #define PNG_EXPAND             0x1000
  882. #define PNG_GAMMA              0x2000
  883. #define PNG_GRAY_TO_RGB        0x4000
  884. #define PNG_FILLER             0x8000L
  885. #define PNG_PACKSWAP          0x10000L
  886. #define PNG_SWAP_ALPHA        0x20000L
  887. #define PNG_STRIP_ALPHA       0x40000L
  888. #define PNG_INVERT_ALPHA      0x80000L
  889. #define PNG_USER_TRANSFORM   0x100000L
  890. #define PNG_RGB_TO_GRAY_ERR  0x200000L
  891. #define PNG_RGB_TO_GRAY_WARN 0x400000L
  892. #define PNG_RGB_TO_GRAY      0x600000L  /* two bits, RGB_TO_GRAY_ERR|WARN */
  893.                        /*    0x800000L     Unused */
  894. #define PNG_ADD_ALPHA       0x1000000L  /* Added to libpng-1.2.7 */
  895. #define PNG_EXPAND_tRNS     0x2000000L  /* Added to libpng-1.2.9 */
  896.                        /*   0x4000000L  unused */
  897.                        /*   0x8000000L  unused */
  898.                        /*  0x10000000L  unused */
  899.                        /*  0x20000000L  unused */
  900.                        /*  0x40000000L  unused */
  901. /* flags for png_create_struct */
  902. #define PNG_STRUCT_PNG   0x0001
  903. #define PNG_STRUCT_INFO  0x0002
  904. /* Scaling factor for filter heuristic weighting calculations */
  905. #define PNG_WEIGHT_SHIFT 8
  906. #define PNG_WEIGHT_FACTOR (1<<(PNG_WEIGHT_SHIFT))
  907. #define PNG_COST_SHIFT 3
  908. #define PNG_COST_FACTOR (1<<(PNG_COST_SHIFT))
  909. /* flags for the png_ptr->flags rather than declaring a byte for each one */
  910. #define PNG_FLAG_ZLIB_CUSTOM_STRATEGY     0x0001
  911. #define PNG_FLAG_ZLIB_CUSTOM_LEVEL        0x0002
  912. #define PNG_FLAG_ZLIB_CUSTOM_MEM_LEVEL    0x0004
  913. #define PNG_FLAG_ZLIB_CUSTOM_WINDOW_BITS  0x0008
  914. #define PNG_FLAG_ZLIB_CUSTOM_METHOD       0x0010
  915. #define PNG_FLAG_ZLIB_FINISHED            0x0020
  916. #define PNG_FLAG_ROW_INIT                 0x0040
  917. #define PNG_FLAG_FILLER_AFTER             0x0080
  918. #define PNG_FLAG_CRC_ANCILLARY_USE        0x0100
  919. #define PNG_FLAG_CRC_ANCILLARY_NOWARN     0x0200
  920. #define PNG_FLAG_CRC_CRITICAL_USE         0x0400
  921. #define PNG_FLAG_CRC_CRITICAL_IGNORE      0x0800
  922. #define PNG_FLAG_FREE_PLTE                0x1000
  923. #define PNG_FLAG_FREE_TRNS                0x2000
  924. #define PNG_FLAG_FREE_HIST                0x4000
  925. #define PNG_FLAG_KEEP_UNKNOWN_CHUNKS      0x8000L
  926. #define PNG_FLAG_KEEP_UNSAFE_CHUNKS       0x10000L
  927. #define PNG_FLAG_LIBRARY_MISMATCH         0x20000L
  928. #define PNG_FLAG_STRIP_ERROR_NUMBERS      0x40000L
  929. #define PNG_FLAG_STRIP_ERROR_TEXT         0x80000L
  930. #define PNG_FLAG_MALLOC_NULL_MEM_OK       0x100000L
  931. #define PNG_FLAG_ADD_ALPHA                0x200000L  /* Added to libpng-1.2.8 */
  932. #define PNG_FLAG_STRIP_ALPHA              0x400000L  /* Added to libpng-1.2.8 */
  933.                                   /*      0x800000L  unused */
  934.                                   /*     0x1000000L  unused */
  935.                                   /*     0x2000000L  unused */
  936.                                   /*     0x4000000L  unused */
  937.                                   /*     0x8000000L  unused */
  938.                                   /*    0x10000000L  unused */
  939.                                   /*    0x20000000L  unused */
  940.                                   /*    0x40000000L  unused */
  941. #define PNG_FLAG_CRC_ANCILLARY_MASK (PNG_FLAG_CRC_ANCILLARY_USE | 
  942.                                      PNG_FLAG_CRC_ANCILLARY_NOWARN)
  943. #define PNG_FLAG_CRC_CRITICAL_MASK  (PNG_FLAG_CRC_CRITICAL_USE | 
  944.                                      PNG_FLAG_CRC_CRITICAL_IGNORE)
  945. #define PNG_FLAG_CRC_MASK           (PNG_FLAG_CRC_ANCILLARY_MASK | 
  946.                                      PNG_FLAG_CRC_CRITICAL_MASK)
  947. /* save typing and make code easier to understand */
  948. #define PNG_COLOR_DIST(c1, c2) (abs((int)((c1).red) - (int)((c2).red)) + 
  949.    abs((int)((c1).green) - (int)((c2).green)) + 
  950.    abs((int)((c1).blue) - (int)((c2).blue)))
  951. /* Added to libpng-1.2.6 JB */
  952. #define PNG_ROWBYTES(pixel_bits, width) 
  953.     ((pixel_bits) >= 8 ? 
  954.     ((width) * (((png_uint_32)(pixel_bits)) >> 3)) : 
  955.     (( ((width) * ((png_uint_32)(pixel_bits))) + 7) >> 3) )
  956. /* PNG_OUT_OF_RANGE returns true if value is outside the range
  957.    ideal-delta..ideal+delta.  Each argument is evaluated twice.
  958.    "ideal" and "delta" should be constants, normally simple
  959.    integers, "value" a variable. Added to libpng-1.2.6 JB */
  960. #define PNG_OUT_OF_RANGE(value, ideal, delta) 
  961.         ( (value) < (ideal)-(delta) || (value) > (ideal)+(delta) )
  962. /* variables declared in png.c - only it needs to define PNG_NO_EXTERN */
  963. #if !defined(PNG_NO_EXTERN) || defined(PNG_ALWAYS_EXTERN)
  964. /* place to hold the signature string for a PNG file. */
  965. #ifdef PNG_USE_GLOBAL_ARRAYS
  966.    PNG_EXPORT_VAR (PNG_CONST png_byte FARDATA) png_sig[8];
  967. #else
  968. #endif
  969. #endif /* PNG_NO_EXTERN */
  970. /* Constant strings for known chunk types.  If you need to add a chunk,
  971.  * define the name here, and add an invocation of the macro in png.c and
  972.  * wherever it's needed.
  973.  */
  974. #define PNG_IHDR png_byte png_IHDR[5] = { 73,  72,  68,  82, ''}
  975. #define PNG_IDAT png_byte png_IDAT[5] = { 73,  68,  65,  84, ''}
  976. #define PNG_IEND png_byte png_IEND[5] = { 73,  69,  78,  68, ''}
  977. #define PNG_PLTE png_byte png_PLTE[5] = { 80,  76,  84,  69, ''}
  978. #define PNG_bKGD png_byte png_bKGD[5] = { 98,  75,  71,  68, ''}
  979. #define PNG_cHRM png_byte png_cHRM[5] = { 99,  72,  82,  77, ''}
  980. #define PNG_gAMA png_byte png_gAMA[5] = {103,  65,  77,  65, ''}
  981. #define PNG_hIST png_byte png_hIST[5] = {104,  73,  83,  84, ''}
  982. #define PNG_iCCP png_byte png_iCCP[5] = {105,  67,  67,  80, ''}
  983. #define PNG_iTXt png_byte png_iTXt[5] = {105,  84,  88, 116, ''}
  984. #define PNG_oFFs png_byte png_oFFs[5] = {111,  70,  70, 115, ''}
  985. #define PNG_pCAL png_byte png_pCAL[5] = {112,  67,  65,  76, ''}
  986. #define PNG_sCAL png_byte png_sCAL[5] = {115,  67,  65,  76, ''}
  987. #define PNG_pHYs png_byte png_pHYs[5] = {112,  72,  89, 115, ''}
  988. #define PNG_sBIT png_byte png_sBIT[5] = {115,  66,  73,  84, ''}
  989. #define PNG_sPLT png_byte png_sPLT[5] = {115,  80,  76,  84, ''}
  990. #define PNG_sRGB png_byte png_sRGB[5] = {115,  82,  71,  66, ''}
  991. #define PNG_tEXt png_byte png_tEXt[5] = {116,  69,  88, 116, ''}
  992. #define PNG_tIME png_byte png_tIME[5] = {116,  73,  77,  69, ''}
  993. #define PNG_tRNS png_byte png_tRNS[5] = {116,  82,  78,  83, ''}
  994. #define PNG_zTXt png_byte png_zTXt[5] = {122,  84,  88, 116, ''}
  995. #ifdef PNG_USE_GLOBAL_ARRAYS
  996. PNG_EXPORT_VAR (png_byte FARDATA) png_IHDR[5];
  997. PNG_EXPORT_VAR (png_byte FARDATA) png_IDAT[5];
  998. PNG_EXPORT_VAR (png_byte FARDATA) png_IEND[5];
  999. PNG_EXPORT_VAR (png_byte FARDATA) png_PLTE[5];
  1000. PNG_EXPORT_VAR (png_byte FARDATA) png_bKGD[5];
  1001. PNG_EXPORT_VAR (png_byte FARDATA) png_cHRM[5];
  1002. PNG_EXPORT_VAR (png_byte FARDATA) png_gAMA[5];
  1003. PNG_EXPORT_VAR (png_byte FARDATA) png_hIST[5];
  1004. PNG_EXPORT_VAR (png_byte FARDATA) png_iCCP[5];
  1005. PNG_EXPORT_VAR (png_byte FARDATA) png_iTXt[5];
  1006. PNG_EXPORT_VAR (png_byte FARDATA) png_oFFs[5];
  1007. PNG_EXPORT_VAR (png_byte FARDATA) png_pCAL[5];
  1008. PNG_EXPORT_VAR (png_byte FARDATA) png_sCAL[5];
  1009. PNG_EXPORT_VAR (png_byte FARDATA) png_pHYs[5];
  1010. PNG_EXPORT_VAR (png_byte FARDATA) png_sBIT[5];
  1011. PNG_EXPORT_VAR (png_byte FARDATA) png_sPLT[5];
  1012. PNG_EXPORT_VAR (png_byte FARDATA) png_sRGB[5];
  1013. PNG_EXPORT_VAR (png_byte FARDATA) png_tEXt[5];
  1014. PNG_EXPORT_VAR (png_byte FARDATA) png_tIME[5];
  1015. PNG_EXPORT_VAR (png_byte FARDATA) png_tRNS[5];
  1016. PNG_EXPORT_VAR (png_byte FARDATA) png_zTXt[5];
  1017. #endif /* PNG_USE_GLOBAL_ARRAYS */
  1018. #if defined(PNG_1_0_X) || defined (PNG_1_2_X)
  1019. /* Initialize png_ptr struct for reading, and allocate any other memory.
  1020.  * (old interface - DEPRECATED - use png_create_read_struct instead).
  1021.  */
  1022. extern PNG_EXPORT(void,png_read_init) PNGARG((png_structp png_ptr));
  1023. #undef png_read_init
  1024. #define png_read_init(png_ptr) png_read_init_3(&png_ptr, 
  1025.     PNG_LIBPNG_VER_STRING,  png_sizeof(png_struct));
  1026. #endif
  1027. extern PNG_EXPORT(void,png_read_init_3) PNGARG((png_structpp ptr_ptr,
  1028.     png_const_charp user_png_ver, png_size_t png_struct_size));
  1029. #if defined(PNG_1_0_X) || defined (PNG_1_2_X)
  1030. extern PNG_EXPORT(void,png_read_init_2) PNGARG((png_structp png_ptr,
  1031.     png_const_charp user_png_ver, png_size_t png_struct_size, png_size_t
  1032.     png_info_size));
  1033. #endif
  1034. #if defined(PNG_1_0_X) || defined (PNG_1_2_X)
  1035. /* Initialize png_ptr struct for writing, and allocate any other memory.
  1036.  * (old interface - DEPRECATED - use png_create_write_struct instead).
  1037.  */
  1038. extern PNG_EXPORT(void,png_write_init) PNGARG((png_structp png_ptr));
  1039. #undef png_write_init
  1040. #define png_write_init(png_ptr) png_write_init_3(&png_ptr, 
  1041.     PNG_LIBPNG_VER_STRING, png_sizeof(png_struct));
  1042. #endif
  1043. extern PNG_EXPORT(void,png_write_init_3) PNGARG((png_structpp ptr_ptr,
  1044.     png_const_charp user_png_ver, png_size_t png_struct_size));
  1045. extern PNG_EXPORT(void,png_write_init_2) PNGARG((png_structp png_ptr,
  1046.     png_const_charp user_png_ver, png_size_t png_struct_size, png_size_t
  1047.     png_info_size));
  1048. /* Allocate memory for an internal libpng struct */
  1049. PNG_EXTERN png_voidp png_create_struct PNGARG((int type));
  1050. /* Free memory from internal libpng struct */
  1051. PNG_EXTERN void png_destroy_struct PNGARG((png_voidp struct_ptr));
  1052. PNG_EXTERN png_voidp png_create_struct_2 PNGARG((int type, png_malloc_ptr
  1053.   malloc_fn, png_voidp mem_ptr));
  1054. PNG_EXTERN void png_destroy_struct_2 PNGARG((png_voidp struct_ptr,
  1055.    png_free_ptr free_fn, png_voidp mem_ptr));
  1056. /* Free any memory that info_ptr points to and reset struct. */
  1057. PNG_EXTERN void png_info_destroy PNGARG((png_structp png_ptr,
  1058.    png_infop info_ptr));
  1059. #ifndef PNG_1_0_X
  1060. /* Function to allocate memory for zlib. */
  1061. PNG_EXTERN voidpf png_zalloc PNGARG((voidpf png_ptr, uInt items, uInt size));
  1062. /* Function to free memory for zlib */
  1063. PNG_EXTERN void png_zfree PNGARG((voidpf png_ptr, voidpf ptr));
  1064. #ifdef PNG_SIZE_T
  1065. /* Function to convert a sizeof an item to png_sizeof item */
  1066.    PNG_EXTERN png_size_t PNGAPI png_convert_size PNGARG((size_t size));
  1067. #endif
  1068. /* Next four functions are used internally as callbacks.  PNGAPI is required
  1069.  * but not PNG_EXPORT.  PNGAPI added at libpng version 1.2.3. */
  1070. PNG_EXTERN void PNGAPI png_default_read_data PNGARG((png_structp png_ptr,
  1071.    png_bytep data, png_size_t length));
  1072. #ifdef PNG_PROGRESSIVE_READ_SUPPORTED
  1073. PNG_EXTERN void PNGAPI png_push_fill_buffer PNGARG((png_structp png_ptr,
  1074.    png_bytep buffer, png_size_t length));
  1075. #endif
  1076. PNG_EXTERN void PNGAPI png_default_write_data PNGARG((png_structp png_ptr,
  1077.    png_bytep data, png_size_t length));
  1078. #if defined(PNG_WRITE_FLUSH_SUPPORTED)
  1079. #if !defined(PNG_NO_STDIO)
  1080. PNG_EXTERN void PNGAPI png_default_flush PNGARG((png_structp png_ptr));
  1081. #endif
  1082. #endif
  1083. #else /* PNG_1_0_X */
  1084. #ifdef PNG_PROGRESSIVE_READ_SUPPORTED
  1085. PNG_EXTERN void png_push_fill_buffer PNGARG((png_structp png_ptr,
  1086.    png_bytep buffer, png_size_t length));
  1087. #endif
  1088. #endif /* PNG_1_0_X */
  1089. /* Reset the CRC variable */
  1090. PNG_EXTERN void png_reset_crc PNGARG((png_structp png_ptr));
  1091. /* Write the "data" buffer to whatever output you are using. */
  1092. PNG_EXTERN void png_write_data PNGARG((png_structp png_ptr, png_bytep data,
  1093.    png_size_t length));
  1094. /* Read data from whatever input you are using into the "data" buffer */
  1095. PNG_EXTERN void png_read_data PNGARG((png_structp png_ptr, png_bytep data,
  1096.    png_size_t length));
  1097. /* Read bytes into buf, and update png_ptr->crc */
  1098. PNG_EXTERN void png_crc_read PNGARG((png_structp png_ptr, png_bytep buf,
  1099.    png_size_t length));
  1100. /* Decompress data in a chunk that uses compression */
  1101. #if defined(PNG_zTXt_SUPPORTED) || defined(PNG_iTXt_SUPPORTED) || 
  1102.     defined(PNG_iCCP_SUPPORTED) || defined(PNG_sPLT_SUPPORTED)
  1103. PNG_EXTERN void png_decompress_chunk PNGARG((png_structp png_ptr,
  1104.    int comp_type, png_size_t chunklength,
  1105.    png_size_t prefix_length, png_size_t *data_length));
  1106. #endif
  1107. /* Read "skip" bytes, read the file crc, and (optionally) verify png_ptr->crc */
  1108. PNG_EXTERN int png_crc_finish PNGARG((png_structp png_ptr, png_uint_32 skip));
  1109. /* Read the CRC from the file and compare it to the libpng calculated CRC */
  1110. PNG_EXTERN int png_crc_error PNGARG((png_structp png_ptr));
  1111. /* Calculate the CRC over a section of data.  Note that we are only
  1112.  * passing a maximum of 64K on systems that have this as a memory limit,
  1113.  * since this is the maximum buffer size we can specify.
  1114.  */
  1115. PNG_EXTERN void png_calculate_crc PNGARG((png_structp png_ptr, png_bytep ptr,
  1116.    png_size_t length));
  1117. #if defined(PNG_WRITE_FLUSH_SUPPORTED)
  1118. PNG_EXTERN void png_flush PNGARG((png_structp png_ptr));
  1119. #endif
  1120. /* simple function to write the signature */
  1121. PNG_EXTERN void png_write_sig PNGARG((png_structp png_ptr));
  1122. /* write various chunks */
  1123. /* Write the IHDR chunk, and update the png_struct with the necessary
  1124.  * information.
  1125.  */
  1126. PNG_EXTERN void png_write_IHDR PNGARG((png_structp png_ptr, png_uint_32 width,
  1127.    png_uint_32 height,
  1128.    int bit_depth, int color_type, int compression_method, int filter_method,
  1129.    int interlace_method));
  1130. PNG_EXTERN void png_write_PLTE PNGARG((png_structp png_ptr, png_colorp palette,
  1131.    png_uint_32 num_pal));
  1132. PNG_EXTERN void png_write_IDAT PNGARG((png_structp png_ptr, png_bytep data,
  1133.    png_size_t length));
  1134. PNG_EXTERN void png_write_IEND PNGARG((png_structp png_ptr));
  1135. #if defined(PNG_WRITE_gAMA_SUPPORTED)
  1136. #ifdef PNG_FLOATING_POINT_SUPPORTED
  1137. PNG_EXTERN void png_write_gAMA PNGARG((png_structp png_ptr, double file_gamma));
  1138. #endif
  1139. #ifdef PNG_FIXED_POINT_SUPPORTED
  1140. PNG_EXTERN void png_write_gAMA_fixed PNGARG((png_structp png_ptr, png_fixed_point
  1141.     file_gamma));
  1142. #endif
  1143. #endif
  1144. #if defined(PNG_WRITE_sBIT_SUPPORTED)
  1145. PNG_EXTERN void png_write_sBIT PNGARG((png_structp png_ptr, png_color_8p sbit,
  1146.    int color_type));
  1147. #endif
  1148. #if defined(PNG_WRITE_cHRM_SUPPORTED)
  1149. #ifdef PNG_FLOATING_POINT_SUPPORTED
  1150. PNG_EXTERN void png_write_cHRM PNGARG((png_structp png_ptr,
  1151.    double white_x, double white_y,
  1152.    double red_x, double red_y, double green_x, double green_y,
  1153.    double blue_x, double blue_y));
  1154. #endif
  1155. #ifdef PNG_FIXED_POINT_SUPPORTED
  1156. PNG_EXTERN void png_write_cHRM_fixed PNGARG((png_structp png_ptr,
  1157.    png_fixed_point int_white_x, png_fixed_point int_white_y,
  1158.    png_fixed_point int_red_x, png_fixed_point int_red_y, png_fixed_point
  1159.    int_green_x, png_fixed_point int_green_y, png_fixed_point int_blue_x,
  1160.    png_fixed_point int_blue_y));
  1161. #endif
  1162. #endif
  1163. #if defined(PNG_WRITE_sRGB_SUPPORTED)
  1164. PNG_EXTERN void png_write_sRGB PNGARG((png_structp png_ptr,
  1165.    int intent));
  1166. #endif
  1167. #if defined(PNG_WRITE_iCCP_SUPPORTED)
  1168. PNG_EXTERN void png_write_iCCP PNGARG((png_structp png_ptr,
  1169.    png_charp name, int compression_type,
  1170.    png_charp profile, int proflen));
  1171.    /* Note to maintainer: profile should be png_bytep */
  1172. #endif
  1173. #if defined(PNG_WRITE_sPLT_SUPPORTED)
  1174. PNG_EXTERN void png_write_sPLT PNGARG((png_structp png_ptr,
  1175.    png_sPLT_tp palette));
  1176. #endif
  1177. #if defined(PNG_WRITE_tRNS_SUPPORTED)
  1178. PNG_EXTERN void png_write_tRNS PNGARG((png_structp png_ptr, png_bytep trans,
  1179.    png_color_16p values, int number, int color_type));
  1180. #endif
  1181. #if defined(PNG_WRITE_bKGD_SUPPORTED)
  1182. PNG_EXTERN void png_write_bKGD PNGARG((png_structp png_ptr,
  1183.    png_color_16p values, int color_type));
  1184. #endif
  1185. #if defined(PNG_WRITE_hIST_SUPPORTED)
  1186. PNG_EXTERN void png_write_hIST PNGARG((png_structp png_ptr, png_uint_16p hist,
  1187.    int num_hist));
  1188. #endif
  1189. #if defined(PNG_WRITE_TEXT_SUPPORTED) || defined(PNG_WRITE_pCAL_SUPPORTED) || 
  1190.     defined(PNG_WRITE_iCCP_SUPPORTED) || defined(PNG_WRITE_sPLT_SUPPORTED)
  1191. PNG_EXTERN png_size_t png_check_keyword PNGARG((png_structp png_ptr,
  1192.    png_charp key, png_charpp new_key));
  1193. #endif
  1194. #if defined(PNG_WRITE_tEXt_SUPPORTED)
  1195. PNG_EXTERN void png_write_tEXt PNGARG((png_structp png_ptr, png_charp key,
  1196.    png_charp text, png_size_t text_len));
  1197. #endif
  1198. #if defined(PNG_WRITE_zTXt_SUPPORTED)
  1199. PNG_EXTERN void png_write_zTXt PNGARG((png_structp png_ptr, png_charp key,
  1200.    png_charp text, png_size_t text_len, int compression));
  1201. #endif
  1202. #if defined(PNG_WRITE_iTXt_SUPPORTED)
  1203. PNG_EXTERN void png_write_iTXt PNGARG((png_structp png_ptr,
  1204.    int compression, png_charp key, png_charp lang, png_charp lang_key,
  1205.    png_charp text));
  1206. #endif
  1207. #if defined(PNG_TEXT_SUPPORTED)  /* Added at version 1.0.14 and 1.2.4 */
  1208. PNG_EXTERN int png_set_text_2 PNGARG((png_structp png_ptr,
  1209.    png_infop info_ptr, png_textp text_ptr, int num_text));
  1210. #endif
  1211. #if defined(PNG_WRITE_oFFs_SUPPORTED)
  1212. PNG_EXTERN void png_write_oFFs PNGARG((png_structp png_ptr,
  1213.    png_int_32 x_offset, png_int_32 y_offset, int unit_type));
  1214. #endif
  1215. #if defined(PNG_WRITE_pCAL_SUPPORTED)
  1216. PNG_EXTERN void png_write_pCAL PNGARG((png_structp png_ptr, png_charp purpose,
  1217.    png_int_32 X0, png_int_32 X1, int type, int nparams,
  1218.    png_charp units, png_charpp params));
  1219. #endif
  1220. #if defined(PNG_WRITE_pHYs_SUPPORTED)
  1221. PNG_EXTERN void png_write_pHYs PNGARG((png_structp png_ptr,
  1222.    png_uint_32 x_pixels_per_unit, png_uint_32 y_pixels_per_unit,
  1223.    int unit_type));
  1224. #endif
  1225. #if defined(PNG_WRITE_tIME_SUPPORTED)
  1226. PNG_EXTERN void png_write_tIME PNGARG((png_structp png_ptr,
  1227.    png_timep mod_time));
  1228. #endif
  1229. #if defined(PNG_WRITE_sCAL_SUPPORTED)
  1230. #if defined(PNG_FLOATING_POINT_SUPPORTED) && !defined(PNG_NO_STDIO)
  1231. PNG_EXTERN void png_write_sCAL PNGARG((png_structp png_ptr,
  1232.    int unit, double width, double height));
  1233. #else
  1234. #ifdef PNG_FIXED_POINT_SUPPORTED
  1235. PNG_EXTERN void png_write_sCAL_s PNGARG((png_structp png_ptr,
  1236.    int unit, png_charp width, png_charp height));
  1237. #endif
  1238. #endif
  1239. #endif
  1240. /* Called when finished processing a row of data */
  1241. PNG_EXTERN void png_write_finish_row PNGARG((png_structp png_ptr));
  1242. /* Internal use only.   Called before first row of data */
  1243. PNG_EXTERN void png_write_start_row PNGARG((png_structp png_ptr));
  1244. #if defined(PNG_READ_GAMMA_SUPPORTED)
  1245. PNG_EXTERN void png_build_gamma_table PNGARG((png_structp png_ptr));
  1246. #endif
  1247. /* combine a row of data, dealing with alpha, etc. if requested */
  1248. PNG_EXTERN void png_combine_row PNGARG((png_structp png_ptr, png_bytep row,
  1249.    int mask));
  1250. #if defined(PNG_READ_INTERLACING_SUPPORTED)
  1251. /* expand an interlaced row */
  1252. /* OLD pre-1.0.9 interface:
  1253. PNG_EXTERN void png_do_read_interlace PNGARG((png_row_infop row_info,
  1254.    png_bytep row, int pass, png_uint_32 transformations));
  1255.  */
  1256. PNG_EXTERN void png_do_read_interlace PNGARG((png_structp png_ptr));
  1257. #endif
  1258. /* GRR TO DO (2.0 or whenever):  simplify other internal calling interfaces */
  1259. #if defined(PNG_WRITE_INTERLACING_SUPPORTED)
  1260. /* grab pixels out of a row for an interlaced pass */
  1261. PNG_EXTERN void png_do_write_interlace PNGARG((png_row_infop row_info,
  1262.    png_bytep row, int pass));
  1263. #endif
  1264. /* unfilter a row */
  1265. PNG_EXTERN void png_read_filter_row PNGARG((png_structp png_ptr,
  1266.    png_row_infop row_info, png_bytep row, png_bytep prev_row, int filter));
  1267. /* Choose the best filter to use and filter the row data */
  1268. PNG_EXTERN void png_write_find_filter PNGARG((png_structp png_ptr,
  1269.    png_row_infop row_info));
  1270. /* Write out the filtered row. */
  1271. PNG_EXTERN void png_write_filtered_row PNGARG((png_structp png_ptr,
  1272.    png_bytep filtered_row));
  1273. /* finish a row while reading, dealing with interlacing passes, etc. */
  1274. PNG_EXTERN void png_read_finish_row PNGARG((png_structp png_ptr));
  1275. /* initialize the row buffers, etc. */
  1276. PNG_EXTERN void png_read_start_row PNGARG((png_structp png_ptr));
  1277. /* optional call to update the users info structure */
  1278. PNG_EXTERN void png_read_transform_info PNGARG((png_structp png_ptr,
  1279.    png_infop info_ptr));
  1280. /* these are the functions that do the transformations */
  1281. #if defined(PNG_READ_FILLER_SUPPORTED)
  1282. PNG_EXTERN void png_do_read_filler PNGARG((png_row_infop row_info,
  1283.    png_bytep row, png_uint_32 filler, png_uint_32 flags));
  1284. #endif
  1285. #if defined(PNG_READ_SWAP_ALPHA_SUPPORTED)
  1286. PNG_EXTERN void png_do_read_swap_alpha PNGARG((png_row_infop row_info,
  1287.    png_bytep row));
  1288. #endif
  1289. #if defined(PNG_WRITE_SWAP_ALPHA_SUPPORTED)
  1290. PNG_EXTERN void png_do_write_swap_alpha PNGARG((png_row_infop row_info,
  1291.    png_bytep row));
  1292. #endif
  1293. #if defined(PNG_READ_INVERT_ALPHA_SUPPORTED)
  1294. PNG_EXTERN void png_do_read_invert_alpha PNGARG((png_row_infop row_info,
  1295.    png_bytep row));
  1296. #endif
  1297. #if defined(PNG_WRITE_INVERT_ALPHA_SUPPORTED)
  1298. PNG_EXTERN void png_do_write_invert_alpha PNGARG((png_row_infop row_info,
  1299.    png_bytep row));
  1300. #endif
  1301. #if defined(PNG_WRITE_FILLER_SUPPORTED) || 
  1302.     defined(PNG_READ_STRIP_ALPHA_SUPPORTED)
  1303. PNG_EXTERN void png_do_strip_filler PNGARG((png_row_infop row_info,
  1304.    png_bytep row, png_uint_32 flags));
  1305. #endif
  1306. #if defined(PNG_READ_SWAP_SUPPORTED) || defined(PNG_WRITE_SWAP_SUPPORTED)
  1307. PNG_EXTERN void png_do_swap PNGARG((png_row_infop row_info, png_bytep row));
  1308. #endif
  1309. #if defined(PNG_READ_PACKSWAP_SUPPORTED) || defined(PNG_WRITE_PACKSWAP_SUPPORTED)
  1310. PNG_EXTERN void png_do_packswap PNGARG((png_row_infop row_info, png_bytep row));
  1311. #endif
  1312. #if defined(PNG_READ_RGB_TO_GRAY_SUPPORTED)
  1313. PNG_EXTERN int png_do_rgb_to_gray PNGARG((png_structp png_ptr, png_row_infop
  1314.    row_info, png_bytep row));
  1315. #endif
  1316. #if defined(PNG_READ_GRAY_TO_RGB_SUPPORTED)
  1317. PNG_EXTERN void png_do_gray_to_rgb PNGARG((png_row_infop row_info,
  1318.    png_bytep row));
  1319. #endif
  1320. #if defined(PNG_READ_PACK_SUPPORTED)
  1321. PNG_EXTERN void png_do_unpack PNGARG((png_row_infop row_info, png_bytep row));
  1322. #endif
  1323. #if defined(PNG_READ_SHIFT_SUPPORTED)
  1324. PNG_EXTERN void png_do_unshift PNGARG((png_row_infop row_info, png_bytep row,
  1325.    png_color_8p sig_bits));
  1326. #endif
  1327. #if defined(PNG_READ_INVERT_SUPPORTED) || defined(PNG_WRITE_INVERT_SUPPORTED)
  1328. PNG_EXTERN void png_do_invert PNGARG((png_row_infop row_info, png_bytep row));
  1329. #endif
  1330. #if defined(PNG_READ_16_TO_8_SUPPORTED)
  1331. PNG_EXTERN void png_do_chop PNGARG((png_row_infop row_info, png_bytep row));
  1332. #endif
  1333. #if defined(PNG_READ_DITHER_SUPPORTED)
  1334. PNG_EXTERN void png_do_dither PNGARG((png_row_infop row_info,
  1335.    png_bytep row, png_bytep palette_lookup, png_bytep dither_lookup));
  1336. #  if defined(PNG_CORRECT_PALETTE_SUPPORTED)
  1337. PNG_EXTERN void png_correct_palette PNGARG((png_structp png_ptr,
  1338.    png_colorp palette, int num_palette));
  1339. #  endif
  1340. #endif
  1341. #if defined(PNG_READ_BGR_SUPPORTED) || defined(PNG_WRITE_BGR_SUPPORTED)
  1342. PNG_EXTERN void png_do_bgr PNGARG((png_row_infop row_info, png_bytep row));
  1343. #endif
  1344. #if defined(PNG_WRITE_PACK_SUPPORTED)
  1345. PNG_EXTERN void png_do_pack PNGARG((png_row_infop row_info,
  1346.    png_bytep row, png_uint_32 bit_depth));
  1347. #endif
  1348. #if defined(PNG_WRITE_SHIFT_SUPPORTED)
  1349. PNG_EXTERN void png_do_shift PNGARG((png_row_infop row_info, png_bytep row,
  1350.    png_color_8p bit_depth));
  1351. #endif
  1352. #if defined(PNG_READ_BACKGROUND_SUPPORTED)
  1353. #if defined(PNG_READ_GAMMA_SUPPORTED)
  1354. PNG_EXTERN void png_do_background PNGARG((png_row_infop row_info, png_bytep row,
  1355.    png_color_16p trans_values, png_color_16p background,
  1356.    png_color_16p background_1,
  1357.    png_bytep gamma_table, png_bytep gamma_from_1, png_bytep gamma_to_1,
  1358.    png_uint_16pp gamma_16, png_uint_16pp gamma_16_from_1,
  1359.    png_uint_16pp gamma_16_to_1, int gamma_shift));
  1360. #else
  1361. PNG_EXTERN void png_do_background PNGARG((png_row_infop row_info, png_bytep row,
  1362.    png_color_16p trans_values, png_color_16p background));
  1363. #endif
  1364. #endif
  1365. #if defined(PNG_READ_GAMMA_SUPPORTED)
  1366. PNG_EXTERN void png_do_gamma PNGARG((png_row_infop row_info, png_bytep row,
  1367.    png_bytep gamma_table, png_uint_16pp gamma_16_table,
  1368.    int gamma_shift));
  1369. #endif
  1370. #if defined(PNG_READ_EXPAND_SUPPORTED)
  1371. PNG_EXTERN void png_do_expand_palette PNGARG((png_row_infop row_info,
  1372.    png_bytep row, png_colorp palette, png_bytep trans, int num_trans));
  1373. PNG_EXTERN void png_do_expand PNGARG((png_row_infop row_info,
  1374.    png_bytep row, png_color_16p trans_value));
  1375. #endif
  1376. /* The following decodes the appropriate chunks, and does error correction,
  1377.  * then calls the appropriate callback for the chunk if it is valid.
  1378.  */
  1379. /* decode the IHDR chunk */
  1380. PNG_EXTERN void png_handle_IHDR PNGARG((png_structp png_ptr, png_infop info_ptr,
  1381.    png_uint_32 length));
  1382. PNG_EXTERN void png_handle_PLTE PNGARG((png_structp png_ptr, png_infop info_ptr,
  1383.    png_uint_32 length));
  1384. PNG_EXTERN void png_handle_IEND PNGARG((png_structp png_ptr, png_infop info_ptr,
  1385.    png_uint_32 length));
  1386. #if defined(PNG_READ_bKGD_SUPPORTED)
  1387. PNG_EXTERN void png_handle_bKGD PNGARG((png_structp png_ptr, png_infop info_ptr,
  1388.    png_uint_32 length));
  1389. #endif
  1390. #if defined(PNG_READ_cHRM_SUPPORTED)
  1391. PNG_EXTERN void png_handle_cHRM PNGARG((png_structp png_ptr, png_infop info_ptr,
  1392.    png_uint_32 length));
  1393. #endif
  1394. #if defined(PNG_READ_gAMA_SUPPORTED)
  1395. PNG_EXTERN void png_handle_gAMA PNGARG((png_structp png_ptr, png_infop info_ptr,
  1396.    png_uint_32 length));
  1397. #endif
  1398. #if defined(PNG_READ_hIST_SUPPORTED)
  1399. PNG_EXTERN void png_handle_hIST PNGARG((png_structp png_ptr, png_infop info_ptr,
  1400.    png_uint_32 length));
  1401. #endif
  1402. #if defined(PNG_READ_iCCP_SUPPORTED)
  1403. extern void png_handle_iCCP PNGARG((png_structp png_ptr, png_infop info_ptr,
  1404.    png_uint_32 length));
  1405. #endif /* PNG_READ_iCCP_SUPPORTED */
  1406. #if defined(PNG_READ_iTXt_SUPPORTED)
  1407. PNG_EXTERN void png_handle_iTXt PNGARG((png_structp png_ptr, png_infop info_ptr,
  1408.    png_uint_32 length));
  1409. #endif
  1410. #if defined(PNG_READ_oFFs_SUPPORTED)
  1411. PNG_EXTERN void png_handle_oFFs PNGARG((png_structp png_ptr, png_infop info_ptr,
  1412.    png_uint_32 length));
  1413. #endif
  1414. #if defined(PNG_READ_pCAL_SUPPORTED)
  1415. PNG_EXTERN void png_handle_pCAL PNGARG((png_structp png_ptr, png_infop info_ptr,
  1416.    png_uint_32 length));
  1417. #endif
  1418. #if defined(PNG_READ_pHYs_SUPPORTED)
  1419. PNG_EXTERN void png_handle_pHYs PNGARG((png_structp png_ptr, png_infop info_ptr,
  1420.    png_uint_32 length));
  1421. #endif
  1422. #if defined(PNG_READ_sBIT_SUPPORTED)
  1423. PNG_EXTERN void png_handle_sBIT PNGARG((png_structp png_ptr, png_infop info_ptr,
  1424.    png_uint_32 length));
  1425. #endif
  1426. #if defined(PNG_READ_sCAL_SUPPORTED)
  1427. PNG_EXTERN void png_handle_sCAL PNGARG((png_structp png_ptr, png_infop info_ptr,
  1428.    png_uint_32 length));
  1429. #endif
  1430. #if defined(PNG_READ_sPLT_SUPPORTED)
  1431. extern void png_handle_sPLT PNGARG((png_structp png_ptr, png_infop info_ptr,
  1432.    png_uint_32 length));
  1433. #endif /* PNG_READ_sPLT_SUPPORTED */
  1434. #if defined(PNG_READ_sRGB_SUPPORTED)
  1435. PNG_EXTERN void png_handle_sRGB PNGARG((png_structp png_ptr, png_infop info_ptr,
  1436.    png_uint_32 length));
  1437. #endif
  1438. #if defined(PNG_READ_tEXt_SUPPORTED)
  1439. PNG_EXTERN void png_handle_tEXt PNGARG((png_structp png_ptr, png_infop info_ptr,
  1440.    png_uint_32 length));
  1441. #endif
  1442. #if defined(PNG_READ_tIME_SUPPORTED)
  1443. PNG_EXTERN void png_handle_tIME PNGARG((png_structp png_ptr, png_infop info_ptr,
  1444.    png_uint_32 length));
  1445. #endif
  1446. #if defined(PNG_READ_tRNS_SUPPORTED)
  1447. PNG_EXTERN void png_handle_tRNS PNGARG((png_structp png_ptr, png_infop info_ptr,
  1448.    png_uint_32 length));
  1449. #endif
  1450. #if defined(PNG_READ_zTXt_SUPPORTED)
  1451. PNG_EXTERN void png_handle_zTXt PNGARG((png_structp png_ptr, png_infop info_ptr,
  1452.    png_uint_32 length));
  1453. #endif
  1454. PNG_EXTERN void png_handle_unknown PNGARG((png_structp png_ptr,
  1455.    png_infop info_ptr, png_uint_32 length));
  1456. PNG_EXTERN void png_check_chunk_name PNGARG((png_structp png_ptr,
  1457.    png_bytep chunk_name));
  1458. /* handle the transformations for reading and writing */
  1459. PNG_EXTERN void png_do_read_transformations PNGARG((png_structp png_ptr));
  1460. PNG_EXTERN void png_do_write_transformations PNGARG((png_structp png_ptr));
  1461. PNG_EXTERN void png_init_read_transformations PNGARG((png_structp png_ptr));
  1462. #ifdef PNG_PROGRESSIVE_READ_SUPPORTED
  1463. PNG_EXTERN void png_push_read_chunk PNGARG((png_structp png_ptr,
  1464.    png_infop info_ptr));
  1465. PNG_EXTERN void png_push_read_sig PNGARG((png_structp png_ptr,
  1466.    png_infop info_ptr));
  1467. PNG_EXTERN void png_push_check_crc PNGARG((png_structp png_ptr));
  1468. PNG_EXTERN void png_push_crc_skip PNGARG((png_structp png_ptr,
  1469.    png_uint_32 length));
  1470. PNG_EXTERN void png_push_crc_finish PNGARG((png_structp png_ptr));
  1471. PNG_EXTERN void png_push_save_buffer PNGARG((png_structp png_ptr));
  1472. PNG_EXTERN void png_push_restore_buffer PNGARG((png_structp png_ptr,
  1473.    png_bytep buffer, png_size_t buffer_length));
  1474. PNG_EXTERN void png_push_read_IDAT PNGARG((png_structp png_ptr));
  1475. PNG_EXTERN void png_process_IDAT_data PNGARG((png_structp png_ptr,
  1476.    png_bytep buffer, png_size_t buffer_length));
  1477. PNG_EXTERN void png_push_process_row PNGARG((png_structp png_ptr));
  1478. PNG_EXTERN void png_push_handle_unknown PNGARG((png_structp png_ptr,
  1479.    png_infop info_ptr, png_uint_32 length));
  1480. PNG_EXTERN void png_push_have_info PNGARG((png_structp png_ptr,
  1481.    png_infop info_ptr));
  1482. PNG_EXTERN void png_push_have_end PNGARG((png_structp png_ptr,
  1483.    png_infop info_ptr));
  1484. PNG_EXTERN void png_push_have_row PNGARG((png_structp png_ptr, png_bytep row));
  1485. PNG_EXTERN void png_push_read_end PNGARG((png_structp png_ptr,
  1486.    png_infop info_ptr));
  1487. PNG_EXTERN void png_process_some_data PNGARG((png_structp png_ptr,
  1488.    png_infop info_ptr));
  1489. PNG_EXTERN void png_read_push_finish_row PNGARG((png_structp png_ptr));
  1490. #if defined(PNG_READ_tEXt_SUPPORTED)
  1491. PNG_EXTERN void png_push_handle_tEXt PNGARG((png_structp png_ptr,
  1492.    png_infop info_ptr, png_uint_32 length));
  1493. PNG_EXTERN void png_push_read_tEXt PNGARG((png_structp png_ptr,
  1494.    png_infop info_ptr));
  1495. #endif
  1496. #if defined(PNG_READ_zTXt_SUPPORTED)
  1497. PNG_EXTERN void png_push_handle_zTXt PNGARG((png_structp png_ptr,
  1498.    png_infop info_ptr, png_uint_32 length));
  1499. PNG_EXTERN void png_push_read_zTXt PNGARG((png_structp png_ptr,
  1500.    png_infop info_ptr));
  1501. #endif
  1502. #if defined(PNG_READ_iTXt_SUPPORTED)
  1503. PNG_EXTERN void png_push_handle_iTXt PNGARG((png_structp png_ptr,
  1504.    png_infop info_ptr, png_uint_32 length));
  1505. PNG_EXTERN void png_push_read_iTXt PNGARG((png_structp png_ptr,
  1506.    png_infop info_ptr));
  1507. #endif
  1508. #endif /* PNG_PROGRESSIVE_READ_SUPPORTED */
  1509. #ifdef PNG_MNG_FEATURES_SUPPORTED
  1510. PNG_EXTERN void png_do_read_intrapixel PNGARG((png_row_infop row_info,
  1511.    png_bytep row));
  1512. PNG_EXTERN void png_do_write_intrapixel PNGARG((png_row_infop row_info,
  1513.    png_bytep row));
  1514. #endif
  1515. #if defined(PNG_ASSEMBLER_CODE_SUPPORTED)
  1516. #if defined(PNG_MMX_CODE_SUPPORTED)
  1517. /* png.c */ /* PRIVATE */
  1518. PNG_EXTERN void png_init_mmx_flags PNGARG((png_structp png_ptr));
  1519. #endif
  1520. #endif
  1521. #if defined(PNG_INCH_CONVERSIONS) && defined(PNG_FLOATING_POINT_SUPPORTED)
  1522. PNG_EXTERN png_uint_32 png_get_pixels_per_inch PNGARG((png_structp png_ptr,
  1523. png_infop info_ptr));
  1524. PNG_EXTERN png_uint_32 png_get_x_pixels_per_inch PNGARG((png_structp png_ptr,
  1525. png_infop info_ptr));
  1526. PNG_EXTERN png_uint_32 png_get_y_pixels_per_inch PNGARG((png_structp png_ptr,
  1527. png_infop info_ptr));
  1528. PNG_EXTERN float png_get_x_offset_inches PNGARG((png_structp png_ptr,
  1529. png_infop info_ptr));
  1530. PNG_EXTERN float png_get_y_offset_inches PNGARG((png_structp png_ptr,
  1531. png_infop info_ptr));
  1532. #if defined(PNG_pHYs_SUPPORTED)
  1533. PNG_EXTERN png_uint_32 png_get_pHYs_dpi PNGARG((png_structp png_ptr,
  1534. png_infop info_ptr, png_uint_32 *res_x, png_uint_32 *res_y, int *unit_type));
  1535. #endif /* PNG_pHYs_SUPPORTED */
  1536. #endif  /* PNG_INCH_CONVERSIONS && PNG_FLOATING_POINT_SUPPORTED */
  1537. /* Read the chunk header (length + type name) */
  1538. PNG_EXTERN png_uint_32 png_read_chunk_header PNGARG((png_structp png_ptr));
  1539. /* Added at libpng version 1.2.34 */
  1540. #if defined(PNG_cHRM_SUPPORTED)
  1541. PNG_EXTERN int png_check_cHRM_fixed  PNGARG((png_structp png_ptr,
  1542.    png_fixed_point int_white_x, png_fixed_point int_white_y,
  1543.    png_fixed_point int_red_x, png_fixed_point int_red_y, png_fixed_point
  1544.    int_green_x, png_fixed_point int_green_y, png_fixed_point int_blue_x,
  1545.    png_fixed_point int_blue_y));
  1546. #endif
  1547. /* Maintainer: Put new private prototypes here ^ and in libpngpf.3 */
  1548. #endif /* PNG_INTERNAL */
  1549. #ifdef __cplusplus
  1550. }
  1551. #endif
  1552. #endif /* PNG_VERSION_INFO_ONLY */
  1553. /* do not put anything past this line */
  1554. #endif /* PNG_H */