png.h
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:142k
源码类别:

对话框与窗口

开发平台:

Visual C++

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