png.h
上传用户:hmc_gdtv
上传日期:2013-08-04
资源大小:798k
文件大小:142k
源码类别:

Windows Mobile

开发平台:

Visual C++

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