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

OpenGL

开发平台:

Visual C++

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