png.h
上传用户:looem2003
上传日期:2014-07-20
资源大小:13733k
文件大小:142k
源码类别:

打印编程

开发平台:

Visual C++

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