png.h
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:134k
源码类别:

生物技术

开发平台:

C/C++

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