png.h
上传用户:shtaya11
上传日期:2021-10-17
资源大小:941k
文件大小:53k
源码类别:

2D图形编程

开发平台:

Visual C++

  1. /* png.h - header file for png reference library
  2.    libpng 1.0 beta 3 - version 0.89
  3.    May 25, 1996
  4.    Note: This is a beta version.  It reads and writes valid files
  5.    on the platforms I have, and has had a wide testing program.
  6.    You may have to modify the includes below to get it to work on
  7.    your system, and you may have to supply the correct compiler
  8.    flags in the makefile, if you can't find a makefile suitable for
  9.    your operating system/compiler combination.  Read the libpng.txt
  10.    for more information, and how to contact me if you have any
  11.    problems, or if you want your compiler/platform to be supported
  12.    in the next official libpng release.
  13.    See libpng.txt for more information
  14.    Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.
  15.    Contributing Authors:
  16.       Andreas Dilger
  17.       Dave Martindale
  18.       Guy Eric Schalnat
  19.       Paul Schmidt
  20.       Tim Wegner
  21.    The contributing authors would like to thank all those who helped
  22.    with testing, bug fixes, and patience.  You know who you are.  This
  23.    wouldn't have been possible without all of you.
  24.    Thanks to Frank J. T. Wojcik for helping with the documentation
  25.    The PNG Reference Library is supplied "AS IS". The Contributing Authors
  26.    and Group 42, Inc. disclaim all warranties, expressed or implied,
  27.    including, without limitation, the warranties of merchantability and of
  28.    fitness for any purpose. The Contributing Authors and Group 42, Inc.
  29.    assume no liability for direct, indirect, incidental, special, exemplary,
  30.    or consequential damages, which may result from the use of the PNG
  31.    Reference Library, even if advised of the possibility of such damage.
  32.    Permission is hereby granted to use, copy, modify, and distribute this
  33.    source code, or portions hereof, for any purpose, without fee, subject
  34.    to the following restrictions:
  35.    1. The origin of this source code must not be misrepresented.
  36.    2. Altered versions must be plainly marked as such and must not be
  37.       misrepresented as being the original source.
  38.    3. This Copyright notice may not be removed or altered from any source or
  39.       altered source distribution.
  40.    The Contributing Authors and Group 42, Inc. specifically permit, without
  41.    fee, and encourage the use of this source code as a component to
  42.    supporting the PNG file format in commercial products. If you use this
  43.    source code in a product, acknowledgment is not required but would be
  44.    appreciated.
  45.    */
  46. #ifndef _PNG_H
  47. #define _PNG_H
  48. /* This is not the place to learn how to use libpng.  The file libpng.txt
  49.    describes how to use libpng, and the file example.c summarizes it
  50.    with some code to build around.  This file is useful for looking
  51.    at the actual function definitions and structure components. */
  52. /* include the compression library's header */
  53. #include "zlib.h"
  54. /* include all user configurable info */
  55. #include "pngconf.h"
  56. /* This file is arranged in several sections.  The first section details
  57.    the functions most users will use.  The third section describes the
  58.    stub files that users will most likely need to change.  The last
  59.    section contains functions used internally by the code.
  60.    */
  61. /* version information for png.h - this should match the version
  62.    number in png.c */
  63. #define PNG_LIBPNG_VER_STRING "0.89"
  64. /* careful here.  I wanted to use 089, but that would be octal.  Version
  65.    1.0 will be 100 here, etc. */
  66. #define PNG_LIBPNG_VER 89
  67. /* variables defined in png.c - only it needs to define PNG_NO_EXTERN */
  68. #ifndef PNG_NO_EXTERN
  69. /* version information for c files, stored in png.c. This better match
  70.    the version above. */
  71. extern char png_libpng_ver[];
  72. #endif
  73. /* three color definitions.  The order of the red, green, and blue, (and the
  74.    exact size) is not important, although the size of the fields need to
  75.    be png_byte or png_uint_16 (as defined below).  */
  76. typedef struct png_color_struct
  77. {
  78.    png_byte red;
  79.    png_byte green;
  80.    png_byte blue;
  81. } png_color;
  82. typedef png_color       FAR *    png_colorp;
  83. typedef png_color       FAR * FAR * png_colorpp;
  84. typedef struct png_color_16_struct
  85. {
  86.    png_byte index; /* used for palette files */
  87.    png_uint_16 red; /* for use in red green blue files */
  88.    png_uint_16 green;
  89.    png_uint_16 blue;
  90.    png_uint_16 gray; /* for use in grayscale files */
  91. } png_color_16;
  92. typedef png_color_16    FAR *    png_color_16p;
  93. typedef png_color_16    FAR * FAR * png_color_16pp;
  94. typedef struct png_color_8_struct
  95. {
  96.    png_byte red; /* for use in red green blue files */
  97.    png_byte green;
  98.    png_byte blue;
  99.    png_byte gray; /* for use in grayscale files */
  100.    png_byte alpha; /* for alpha channel files */
  101. } png_color_8;
  102. typedef png_color_8     FAR *    png_color_8p;
  103. typedef png_color_8     FAR * FAR * png_color_8pp;
  104. /* png_text holds the text in a png file, and whether they are compressed
  105.    or not.  If compression is -1, the text is not compressed.  */
  106. typedef struct png_text_struct
  107. {
  108.    int compression; /* compression value, -1 if uncompressed */
  109.    png_charp key; /* keyword */
  110.    png_charp text; /* comment */
  111.    png_uint_32 text_length; /* length of text field */
  112. } png_text;
  113. typedef png_text        FAR *    png_textp;
  114. typedef png_text        FAR * FAR * png_textpp;
  115. /* png_time is a way to hold the time in an machine independent way.
  116.    Two conversions are provided, both from time_t and struct tm.  There
  117.    is no portable way to convert to either of these structures, as far
  118.    as I know.  If you know of a portable way, send it to me. */
  119. typedef struct png_time_struct
  120. {
  121.    png_uint_16 year; /* full year, as in, 1995 */
  122.    png_byte month; /* month of year, 1 - 12 */
  123.    png_byte day; /* day of month, 1 - 31 */
  124.    png_byte hour; /* hour of day, 0 - 23 */
  125.    png_byte minute; /* minute of hour, 0 - 59 */
  126.    png_byte second; /* second of minute, 0 - 60 (for leap seconds) */
  127. } png_time;
  128. typedef png_time        FAR *    png_timep;
  129. typedef png_time        FAR * FAR * png_timepp;
  130. /* png_info is a structure that holds the information in a png file.
  131.    If you are reading the file, This structure will tell you what is
  132.    in the png file.  If you are writing the file, fill in the information
  133.    you want to put into the png file, then call png_write_info().
  134.    The names chosen should be very close to the PNG
  135.    specification, so consult that document for information
  136.    about the meaning of each field. */
  137. typedef struct png_info_struct
  138. {
  139.    /* the following are necessary for every png file */
  140.    png_uint_32 width; /* with of file */
  141.    png_uint_32 height; /* height of file */
  142.    png_uint_32 valid; /* the PNG_INFO_ defines, OR'd together */
  143.    png_uint_32 rowbytes; /* bytes needed for untransformed row */
  144.    png_colorp palette; /* palette of file */
  145.    png_uint_16 num_palette; /* number of values in palette */
  146.    png_uint_16 num_trans; /* number of trans values */
  147.    png_byte bit_depth; /* 1, 2, 4, 8, or 16 */
  148.    png_byte color_type; /* use the PNG_COLOR_TYPE_ defines */
  149.    png_byte compression_type; /* must be 0 */
  150.    png_byte filter_type; /* must be 0 */
  151.    png_byte interlace_type; /* 0 for non-interlaced, 1 for interlaced */
  152.    /* the following is informational only on read, and not used on
  153.       writes */
  154.    png_byte channels; /* number of channels of data per pixel */
  155.    png_byte pixel_depth; /* number of bits per pixel */
  156.    png_byte spare_byte;  /* To align the data, and for future use */
  157.    /* the rest are optional.  If you are reading, check the valid
  158.       field to see if the information in these are valid.  If you
  159.       are writing, set the valid field to those chunks you want
  160.       written, and initialize the appropriate fields below */
  161. #if defined(PNG_READ_gAMA_SUPPORTED) || defined(PNG_WRITE_gAMA_SUPPORTED)
  162.    float gamma; /* gamma value of file, if gAMA chunk is valid */
  163. #endif
  164. #if defined(PNG_READ_tEXt_SUPPORTED) || defined(PNG_WRITE_tEXt_SUPPORTED) || 
  165.     defined(PNG_READ_zTXt_SUPPORTED) || defined(PNG_WRITE_zTXt_SUPPORTED)
  166.    int num_text; /* number of comments */
  167.    int max_text; /* size of text array */
  168.    png_textp text; /* array of comments */
  169. #endif
  170. #if defined(PNG_READ_tIME_SUPPORTED) || defined(PNG_WRITE_tIME_SUPPORTED)
  171.    png_time mod_time; /* modification time */
  172. #endif
  173. #if defined(PNG_READ_sBIT_SUPPORTED) || defined(PNG_WRITE_sBIT_SUPPORTED)
  174.    png_color_8 sig_bit; /* significant bits */
  175. #endif
  176. #if defined(PNG_READ_tRNS_SUPPORTED) || defined(PNG_WRITE_tRNS_SUPPORTED)
  177.    png_bytep trans; /* tRNS values for palette image */
  178.    png_color_16 trans_values; /* tRNS values for non-palette image */
  179. #endif
  180. #if defined(PNG_READ_bKGD_SUPPORTED) || defined(PNG_WRITE_bKGD_SUPPORTED)
  181.    png_color_16 background; /* background color of image */
  182. #endif
  183. #if defined(PNG_READ_oFFs_SUPPORTED) || defined(PNG_WRITE_oFFs_SUPPORTED)
  184.    png_uint_32 x_offset; /* x offset on page */
  185.    png_uint_32 y_offset; /* y offset on page */
  186.    png_byte offset_unit_type; /* offset units type */
  187. #endif
  188. #if defined(PNG_READ_pHYs_SUPPORTED) || defined(PNG_WRITE_pHYs_SUPPORTED)
  189.    png_uint_32 x_pixels_per_unit; /* x resolution */
  190.    png_uint_32 y_pixels_per_unit; /* y resolution */
  191.    png_byte phys_unit_type; /* resolution type */
  192. #endif
  193. #if defined(PNG_READ_hIST_SUPPORTED) || defined(PNG_WRITE_hIST_SUPPORTED)
  194.    png_uint_16p hist; /* histogram of palette usage */
  195. #endif
  196. #if defined(PNG_READ_cHRM_SUPPORTED) || defined(PNG_WRITE_cHRM_SUPPORTED)
  197.    float x_white; /* cHRM chunk values */
  198.    float y_white;
  199.    float x_red;
  200.    float y_red;
  201.    float x_green;
  202.    float y_green;
  203.    float x_blue;
  204.    float y_blue;
  205. #endif
  206. } png_info;
  207. typedef png_info        FAR *    png_infop;
  208. typedef png_info        FAR * FAR * png_infopp;
  209. #define PNG_RESOLUTION_UNKNOWN 0
  210. #define PNG_RESOLUTION_METER   1
  211. #define PNG_RESOLUTION_LAST    2
  212. #define PNG_OFFSET_PIXEL       0
  213. #define PNG_OFFSET_MICROMETER  1
  214. #define PNG_OFFSET_LAST        2
  215. /* these describe the color_type field in png_info */
  216. /* color type masks */
  217. #define PNG_COLOR_MASK_PALETTE 1
  218. #define PNG_COLOR_MASK_COLOR   2
  219. #define PNG_COLOR_MASK_ALPHA   4
  220. /* color types.  Note that not all combinations are legal */
  221. #define PNG_COLOR_TYPE_GRAY 0
  222. #define PNG_COLOR_TYPE_PALETTE 
  223.    (PNG_COLOR_MASK_COLOR | PNG_COLOR_MASK_PALETTE)
  224. #define PNG_COLOR_TYPE_RGB (PNG_COLOR_MASK_COLOR)
  225. #define PNG_COLOR_TYPE_RGB_ALPHA 
  226.    (PNG_COLOR_MASK_COLOR | PNG_COLOR_MASK_ALPHA)
  227. #define PNG_COLOR_TYPE_GRAY_ALPHA (PNG_COLOR_MASK_ALPHA)
  228. /* These determine if a chunks information is present in a read operation, or
  229.    if the chunk should be written in a write operation.  */
  230. #define PNG_INFO_gAMA 0x0001
  231. #define PNG_INFO_sBIT 0x0002
  232. #define PNG_INFO_cHRM 0x0004
  233. #define PNG_INFO_PLTE 0x0008
  234. #define PNG_INFO_tRNS 0x0010
  235. #define PNG_INFO_bKGD 0x0020
  236. #define PNG_INFO_hIST 0x0040
  237. #define PNG_INFO_pHYs 0x0080
  238. #define PNG_INFO_oFFs 0x0100
  239. #define PNG_INFO_tIME 0x0200
  240. /* this is used for the transformation routines, as some of them
  241.    change these values for the row.  It also should enable using
  242.    the routines for other uses. */
  243. typedef struct png_row_info_struct
  244. {
  245.    png_uint_32 width; /* width of row */
  246.    png_uint_32 rowbytes; /* number of bytes in row */
  247.    png_byte color_type; /* color type of row */
  248.    png_byte bit_depth; /* bit depth of row */
  249.    png_byte channels; /* number of channels (1, 2, 3, or 4) */
  250.    png_byte pixel_depth; /* bits per pixel (depth * channels) */
  251. } png_row_info;
  252. typedef png_row_info    FAR *    png_row_infop;
  253. typedef png_row_info    FAR * FAR * png_row_infopp;
  254. /* These are the function types for the I/O functions, and the functions which
  255.  * modify the default I/O functions to user I/O functions.  The png_error_ptr
  256.  * type should match that of user supplied warning and error functions, while
  257.  * the png_rw_ptr type should match that of the user read/write data functions.
  258.  */
  259. typedef struct png_struct_def png_struct;
  260. typedef png_struct FAR * png_structp;
  261. typedef void (*png_error_ptr) PNGARG((png_structp, png_const_charp));
  262. typedef void (*png_rw_ptr) PNGARG((png_structp, png_bytep, png_uint_32));
  263. typedef void (*png_flush_ptr) PNGARG((png_structp));
  264. #ifdef PNG_PROGRESSIVE_READ_SUPPORTED
  265. typedef void (*png_progressive_info_ptr) PNGARG((png_structp, png_infop));
  266. typedef void (*png_progressive_end_ptr) PNGARG((png_structp, png_infop));
  267. typedef void (*png_progressive_row_ptr) PNGARG((png_structp, png_bytep,
  268.    png_uint_32, int));
  269. #endif
  270. /* The structure that holds the information to read and write png files.
  271.    The only people who need to care about what is inside of this are the
  272.    people who will be modifying the library for their own special needs.
  273.    */
  274. struct png_struct_def
  275. {
  276.    jmp_buf jmpbuf; /* used in png_error */
  277.    png_error_ptr error_fn;    /* Function for printing errors and aborting */
  278.    png_error_ptr warning_fn;  /* Function for printing warnings */
  279.    png_voidp error_ptr;       /* user supplied struct for error functions */
  280.    png_rw_ptr write_data_fn;  /* Function for writing output data */
  281.    png_rw_ptr read_data_fn;   /* Function for reading input data */
  282.    png_voidp io_ptr;  /* Pointer to user supplied struct for I/O functions */
  283.    png_byte mode; /* used to determine where we are in the png file */
  284.    png_uint_32 do_free; /* flags indicating if libpng should free memory */
  285.    png_uint_32 flags;  /* flags indicating various things to libpng */
  286.    png_uint_32 transformations; /* which transformations to perform */
  287.    z_stream * zstream; /* pointer to decompression structure (below) */
  288.    png_bytep zbuf; /* buffer for zlib */
  289.    png_uint_32 zbuf_size; /* size of zbuf */
  290.    int zlib_level; /* holds zlib compression level */
  291.    int zlib_method; /* holds zlib compression method */
  292.    int zlib_window_bits; /* holds zlib compression window bits */
  293.    int zlib_mem_level; /* holds zlib compression memory level */
  294.    int zlib_strategy; /* holds zlib compression strategy */
  295.    png_uint_32 width; /* width of file */
  296.    png_uint_32 height; /* height of file */
  297.    png_uint_32 num_rows; /* number of rows in current pass */
  298.    png_uint_32 rowbytes; /* size of row in bytes */
  299.    png_uint_32 usr_width; /* width of row at start of write */
  300.    png_uint_32 iwidth; /* interlaced width */
  301.    png_uint_32 irowbytes; /* interlaced rowbytes */
  302.    png_uint_32 row_number; /* current row in pass */
  303.    png_bytep row_buf; /* row buffer */
  304.    png_bytep prev_row; /* previous row */
  305.    png_bytep sub_row;  /* place to save row when filtering */
  306.    png_bytep up_row;   /* place to save row when filtering */
  307.    png_bytep avg_row;  /* place to save row when filtering */
  308.    png_bytep paeth_row; /* place to save row when filtering */
  309.    png_row_info row_info; /* used for transformation routines */
  310.    png_uint_32 idat_size; /* current idat size for read */
  311.    png_uint_32 crc; /* current crc value */
  312.    png_colorp palette; /* files palette */
  313.    png_uint_16 num_palette; /* number of entries in palette */
  314.    png_uint_16 num_trans; /* number of transparency values */
  315.    png_byte interlaced; /* interlace type of file */
  316.    png_byte pass; /* current pass (0 - 6) */
  317.    png_byte compression; /* compression type of file */
  318.    png_byte filter; /* filter type */
  319.    png_byte do_filter; /* non-zero if row filtering, zero if not */
  320.    png_byte color_type; /* color type of file */
  321.    png_byte bit_depth; /* bit depth of file */
  322.    png_byte usr_bit_depth; /* bit depth of users row */
  323.    png_byte pixel_depth; /* number of bits per pixel */
  324.    png_byte channels; /* number of channels in file */
  325.    png_byte usr_channels; /* channels at start of write */
  326. #if defined(PNG_READ_FILLER_SUPPORTED) || defined(PNG_WRITE_FILLER_SUPPORTED)
  327.    png_byte filler; /* filler byte to be used for 32-bit frame buffers */
  328. #endif
  329. #if defined(PNG_READ_BACKGROUND_SUPPORTED)
  330.    png_byte background_gamma_type;
  331.    float background_gamma;
  332.    png_color_16 background; /* background color, gamma corrected for screen */
  333. #if defined(PNG_READ_GAMMA_SUPPORTED)
  334.    png_color_16 background_1; /* background normalized to gamma 1.0 */
  335. #endif
  336. #endif
  337. #if defined(PNG_WRITE_FLUSH_SUPPORTED)
  338.    png_flush_ptr output_flush_fn;/* Function for flushing output */
  339.    png_uint_32 flush_dist;  /* how many rows apart to flush, 0 for no flush */
  340.    png_uint_32 flush_rows;  /* number of rows written since last flush */
  341. #endif /* PNG_WRITE_FLUSH_SUPPORTED */
  342. #if defined(PNG_READ_GAMMA_SUPPORTED)
  343.    int gamma_shift; /* amount of shift for 16 bit gammas */
  344.    float gamma; /* file gamma value */
  345.    float display_gamma; /* display gamma value */
  346. #endif
  347. #if defined(PNG_READ_GAMMA_SUPPORTED) || defined(PNG_READ_BACKGROUND_SUPPORTED)
  348.    png_bytep gamma_table; /* gamma table for 8 bit depth files */
  349.    png_bytep gamma_from_1; /* converts from 1.0 to screen */
  350.    png_bytep gamma_to_1; /* converts from file to 1.0 */
  351.    png_uint_16pp gamma_16_table; /* gamma table for 16 bit depth files */
  352.    png_uint_16pp gamma_16_from_1; /* converts from 1.0 to screen */
  353.    png_uint_16pp gamma_16_to_1; /* converts from file to 1.0 */
  354. #endif
  355. #if defined(PNG_READ_GAMMA_SUPPORTED) || defined (PNG_READ_sBIT_SUPPORTED)
  356.    png_color_8 sig_bit; /* significant bits in file */
  357. #endif
  358. #if defined(PNG_READ_tRNS_SUPPORTED) || defined(PNG_READ_BACKGROUND_SUPPORTED)
  359.    png_bytep trans; /* transparency values for paletted files */
  360.    png_color_16 trans_values; /* transparency values for non-paletted files */
  361. #endif
  362. #if defined(PNG_READ_SHIFT_SUPPORTED) || defined(PNG_WRITE_SHIFT_SUPPORTED)
  363.    png_color_8 shift; /* shift for significant bit tranformation */
  364. #endif
  365. #ifdef PNG_PROGRESSIVE_READ_SUPPORTED
  366.    png_progressive_info_ptr info_fn;
  367.    png_progressive_row_ptr row_fn;
  368.    png_progressive_end_ptr end_fn;
  369.    png_bytep save_buffer_ptr;
  370.    png_bytep save_buffer;
  371.    png_bytep current_buffer_ptr;
  372.    png_bytep current_buffer;
  373.    png_uint_32 push_length;
  374.    png_uint_32 skip_length;
  375.    png_uint_32 save_buffer_size;
  376.    png_uint_32 save_buffer_max;
  377.    png_uint_32 buffer_size;
  378.    png_uint_32 current_buffer_size;
  379.    int process_mode;
  380.    int cur_palette;
  381.    png_byte push_chunk_name[4];
  382. #if defined(PNG_READ_tEXt_SUPPORTED) || defined(PNG_READ_zTXt_SUPPORTED)
  383.    png_uint_32 current_text_size;
  384.    png_uint_32 current_text_left;
  385.    png_charp current_text;
  386.    png_charp current_text_ptr;
  387. #endif
  388. #if defined(__TURBOC__) && !defined(_Windows) && !defined(__FLAT__)
  389. /* for the Borland special 64K segment handler */
  390.    png_bytepp offset_table_ptr;
  391.    png_bytep offset_table;
  392.    png_uint_16 offset_table_number;
  393.    png_uint_16 offset_table_count;
  394.    png_uint_16 offset_table_count_free;
  395. #endif
  396. #endif /* PNG_PROGRESSIVE_READ_SUPPORTED */
  397. #if defined(PNG_READ_DITHER_SUPPORTED)
  398.    png_bytep palette_lookup; /* lookup table for dithering */
  399.    png_bytep dither_index; /* index translation for palette files */
  400.    png_uint_16p hist; /* histogram */
  401. #endif
  402. };
  403. typedef png_struct      FAR * FAR * png_structpp;
  404. /* flags for png_set_filter() to say which filters to use.  The flags
  405.    are chosen so that they don't conflict with real filter types, in case they
  406.    are supplied instead of the #defined constants.
  407.  */
  408. #define PNG_NO_FILTERS     0x00
  409. #define PNG_FILTER_NONE    0x08
  410. #define PNG_FILTER_SUB     0x10
  411. #define PNG_FILTER_UP      0x20
  412. #define PNG_FILTER_AVG     0x40
  413. #define PNG_FILTER_PAETH   0x80
  414. #define PNG_ALL_FILTERS (PNG_FILTER_NONE | PNG_FILTER_SUB | PNG_FILTER_UP | 
  415.                          PNG_FILTER_AVG | PNG_FILTER_PAETH)
  416. /* Here are the function definitions most commonly used.  This is not
  417.    the place to find out how to use libpng.  See libpng.txt for the
  418.    full explanation, see example.c for the summary.  This just provides
  419.    a simple one line of the use of each function. */
  420. /* check the first 1 - 8 bytes to see if it is a png file */
  421. extern int png_check_sig PNGARG((png_bytep sig, int num));
  422. /* allocate and initialize png structure for reading, and any other memory */
  423. extern png_structp png_create_read_struct PNGARG((png_const_charp user_png_ver,
  424.    voidp error_ptr, png_error_ptr warn_fn, png_error_ptr error_fn));
  425.  
  426. /* reset the png_struct to read a new image */
  427. extern void png_reset_read_struct PNGARG((png_structpp png_ptr));
  428. /* initialize png structure for reading, and allocate any other memory (old) */
  429. extern void png_read_init PNGARG((png_structp png_ptr));
  430. /* allocate and initialize png structure for reading, and any other memory */
  431. extern png_structp png_create_write_struct
  432.    PNGARG((png_const_charp user_png_ver, voidp error_ptr,
  433.    png_error_ptr warn_fn, png_error_ptr error_fn));
  434. /* reset the png_struct to read a new image */
  435. extern void png_reset_write_struct PNGARG((png_structpp png_ptr));
  436. /* initialize png structure for writing, and allocate any other memory (old) */
  437. extern void png_write_init PNGARG((png_structp png_ptr));
  438. /* allocate and initialize the info structure */
  439. extern png_infop png_create_info_struct PNGARG((png_structp png_ptr));
  440. /* initialize the info structure (old interface) */
  441. extern void png_info_init PNGARG((png_infop info));
  442. /* Writes all the png information before the image. */
  443. extern void png_write_info PNGARG((png_structp png_ptr, png_infop info));
  444. /* read the information before the actual image data. */
  445. extern void png_read_info PNGARG((png_structp png_ptr, png_infop info));
  446. #if defined(PNG_WRITE_tIME_SUPPORTED)
  447. /* convert from a struct tm to png_time */
  448. extern void png_convert_from_struct_tm PNGARG((png_timep ptime,
  449.    struct tm FAR * ttime));
  450. /* convert from time_t to png_time.  Uses gmtime() */
  451. extern void png_convert_from_time_t PNGARG((png_timep ptime, time_t ttime));
  452. #endif
  453. #if defined(PNG_READ_EXPAND_SUPPORTED)
  454. /* Expand the data to 24 bit RGB, or 8 bit Grayscale,
  455.    with alpha if necessary. */
  456. extern void png_set_expand PNGARG((png_structp png_ptr));
  457. #endif
  458. #if defined(PNG_READ_BGR_SUPPORTED) || defined(PNG_WRITE_BGR_SUPPORTED)
  459. /* Use blue, green, red order for pixels. */
  460. extern void png_set_bgr PNGARG((png_structp png_ptr));
  461. #endif
  462. #if defined(PNG_READ_GRAY_TO_RGB_SUPPORTED)
  463. /* Expand the grayscale to 24 bit RGB if necessary. */
  464. extern void png_set_gray_to_rgb PNGARG((png_structp png_ptr));
  465. #endif
  466. #if defined(PNG_READ_FILLER_SUPPORTED) || defined(PNG_WRITE_FILLER_SUPPORTED)
  467. #define PNG_FILLER_BEFORE 0
  468. #define PNG_FILLER_AFTER 1
  469. /* Add a filler byte to rgb images. */
  470. extern void png_set_filler PNGARG((png_structp png_ptr, int filler,
  471.    int flags));
  472. /* old ways of doing this, still supported through 1.x for backwards
  473.    compatability, but not suggested */
  474. /* Add a filler byte to rgb images after the colors. */
  475. extern void png_set_rgbx PNGARG((png_structp png_ptr));
  476. /* Add a filler byte to rgb images before the colors. */
  477. extern void png_set_xrgb PNGARG((png_structp png_ptr));
  478. #endif
  479. #if defined(PNG_READ_SWAP_SUPPORTED) || defined(PNG_WRITE_SWAP_SUPPORTED)
  480. /* Swap bytes in 16 bit depth files. */
  481. extern void png_set_swap PNGARG((png_structp png_ptr));
  482. #endif
  483. #if defined(PNG_READ_PACK_SUPPORTED) || defined(PNG_WRITE_PACK_SUPPORTED)
  484. /* Use 1 byte per pixel in 1, 2, or 4 bit depth files. */
  485. extern void png_set_packing PNGARG((png_structp png_ptr));
  486. #endif
  487. #if defined(PNG_READ_SHIFT_SUPPORTED) || defined(PNG_WRITE_SHIFT_SUPPORTED)
  488. /* Converts files to legal bit depths. */
  489. extern void png_set_shift PNGARG((png_structp png_ptr,
  490.    png_color_8p true_bits));
  491. #endif
  492. #if defined(PNG_READ_INTERLACING_SUPPORTED) || 
  493.     defined(PNG_WRITE_INTERLACING_SUPPORTED)
  494. /* Have the code handle the interlacing.  Returns the number of passes. */
  495. extern int png_set_interlace_handling PNGARG((png_structp png_ptr));
  496. #endif
  497. #if defined(PNG_READ_INVERT_SUPPORTED) || defined(PNG_WRITE_INVERT_SUPPORTED)
  498. /* Invert monocrome files */
  499. extern void png_set_invert_mono PNGARG((png_structp png_ptr));
  500. #endif
  501. #if defined(PNG_READ_BACKGROUND_SUPPORTED)
  502. /* Handle alpha and tRNS by replacing with a background color. */
  503. #define PNG_BACKGROUND_GAMMA_UNKNOWN 0
  504. #define PNG_BACKGROUND_GAMMA_SCREEN  1
  505. #define PNG_BACKGROUND_GAMMA_FILE    2
  506. #define PNG_BACKGROUND_GAMMA_UNIQUE  3
  507. extern void png_set_background PNGARG((png_structp png_ptr,
  508.    png_color_16p background_color, int background_gamma_code,
  509.    int need_expand, double background_gamma));
  510. #endif
  511. #if defined(PNG_READ_16_TO_8_SUPPORTED)
  512. /* strip the second byte of information from a 16 bit depth file. */
  513. extern void png_set_strip_16 PNGARG((png_structp png_ptr));
  514. #endif
  515. #if defined(PNG_GRAY_TO_RGB_SUPPORTED)
  516. /* convert a grayscale file into rgb. */
  517. extern void png_set_gray_to_rgb PNGARG((png_structp png_ptr));
  518. #endif
  519. #if defined(PNG_READ_DITHER_SUPPORTED)
  520. /* Turn on dithering, and reduce the palette to the number of colors available. */
  521. extern void png_set_dither PNGARG((png_structp png_ptr, png_colorp palette,
  522.    int num_palette, int maximum_colors, png_uint_16p histogram,
  523.    int full_dither));
  524. #endif
  525. #if defined(PNG_READ_GAMMA_SUPPORTED)
  526. /* Handle gamma correction. */
  527. extern void png_set_gamma PNGARG((png_structp png_ptr, double screen_gamma,
  528.    double default_file_gamma));
  529. #endif
  530. #if defined(PNG_WRITE_FLUSH_SUPPORTED)
  531. /* Set how many lines between output flushes - 0 for no flushing */
  532. extern void png_set_flush PNGARG((png_structp png_ptr, int nrows));
  533. /* Flush the current PNG output buffer */
  534. extern void png_write_flush PNGARG((png_structp png_ptr));
  535. #endif /* PNG_WRITE_FLUSH_SUPPORTED */
  536. /* optional update palette with requested transformations */
  537. extern void png_start_read_image PNGARG((png_structp png_ptr));
  538. /* optional call to update the users info structure */
  539. extern void png_read_update_info PNGARG((png_structp png_ptr,
  540.    png_infop info_ptr));
  541. /* read a one or more rows of image data.*/
  542. extern void png_read_rows PNGARG((png_structp png_ptr,
  543.    png_bytepp row,
  544.    png_bytepp display_row, png_uint_32 num_rows));
  545. /* read a row of data.*/
  546. extern void png_read_row PNGARG((png_structp png_ptr,
  547.    png_bytep row,
  548.    png_bytep display_row));
  549. /* read the whole image into memory at once. */
  550. extern void png_read_image PNGARG((png_structp png_ptr,
  551.    png_bytepp image));
  552. /* write a row of image data */
  553. extern void png_write_row PNGARG((png_structp png_ptr,
  554.    png_bytep row));
  555. /* write a few rows of image data */
  556. extern void png_write_rows PNGARG((png_structp png_ptr,
  557.    png_bytepp row,
  558.    png_uint_32 num_rows));
  559. /* write the image data */
  560. extern void png_write_image PNGARG((png_structp png_ptr, png_bytepp image));
  561. /* writes the end of the png file. */
  562. extern void png_write_end PNGARG((png_structp png_ptr, png_infop info));
  563. /* read the end of the png file. */
  564. extern void png_read_end PNGARG((png_structp png_ptr, png_infop info));
  565. /* free the info structure */
  566. extern void png_destroy_info_struct PNGARG((png_structp png_ptr,
  567.    png_infopp info_ptr));
  568. /* free any memory associated with the png_struct and the info_structs */
  569. extern void png_destroy_read_struct PNGARG((png_structpp png_ptr,
  570.    png_infopp info, png_infopp end_info));
  571. /* free all memory used by the read (old method) */
  572. extern void png_read_destroy PNGARG((png_structp png_ptr, png_infop info,
  573.    png_infop end_info));
  574. /* free any memory associated with the png_struct and the info_structs */
  575. extern void png_destroy_write_struct PNGARG((png_structpp png_ptr,
  576.    png_infopp info));
  577. /* free any memory used in png struct */
  578. extern void png_write_destroy PNGARG((png_structp png_ptr));
  579. /* These functions give the user control over the filtering and
  580.    compression libraries used by zlib.  These functions are mainly
  581.    useful for testing, as the defaults should work with most users.
  582.    Those users who are tight on memory, or are wanting faster
  583.    performance at the expense of compression can modify them.
  584.    See the compression library header file for an explination
  585.    of these functions */
  586. extern void png_set_filter PNGARG((png_structp png_ptr, int method,
  587.    int filters));
  588. extern void png_set_compression_level PNGARG((png_structp png_ptr,
  589.    int level));
  590. extern void png_set_compression_mem_level PNGARG((png_structp png_ptr,
  591.    int mem_level));
  592. extern void png_set_compression_strategy PNGARG((png_structp png_ptr,
  593.    int strategy));
  594. extern void png_set_compression_window_bits PNGARG((png_structp png_ptr,
  595.    int window_bits));
  596. extern void png_set_compression_method PNGARG((png_structp png_ptr,
  597.    int method));
  598. /* These next functions are called for input/output, memory, and error
  599.    handling.  They are in the file pngrio.c, pngwio.c, and pngerror.c,
  600.    and call standard C I/O routines such as fread(), fwrite(), and
  601.    fprintf().  These functions can be made to use other I/O routines
  602.    at run time for those applications that need to handle I/O in a
  603.    different manner by calling png_set_???_fn().  See libpng.txt for
  604.    more information */
  605. /* Write the data to whatever output you are using. */
  606. extern void png_write_data PNGARG((png_structp png_ptr, png_bytep data,
  607.    png_uint_32 length));
  608. /* Read data from whatever input you are using */
  609. extern void png_read_data PNGARG((png_structp png_ptr, png_bytep data,
  610.    png_uint_32 length));
  611. /* Initialize the input/output for the png file to the default functions. */
  612. extern void png_init_io PNGARG((png_structp png_ptr, FILE *fp));
  613. /* Replace the error message and abort, and warning functions with user
  614.    supplied functions.  If no messages are to be printed then you must
  615.    supply replacement message functions. The replacement error_fn should
  616.    still do a longjmp to the last setjmp location if you are using this
  617.    method of error handling.  If error_fn or warning_fn is NULL, the
  618.    default functions will be used. */
  619. extern void png_set_error_fn PNGARG((png_structp png_ptr, png_voidp error_ptr,
  620.    png_error_ptr error_fn, png_error_ptr warning_fn));
  621. /* Return the user pointer associated with the error functions */
  622. extern png_voidp png_get_error_ptr PNGARG((png_structp png_ptr));
  623. /* Replace the default data output functions with a user supplied one(s).
  624.    If buffered output is not used, then output_flush_fn can be set to NULL.
  625.    If PNG_WRITE_FLUSH_SUPPORTED is not defined at libpng compile time
  626.    output_flush_fn will be ignored (and thus can be NULL). */
  627. extern void png_set_write_fn PNGARG((png_structp png_ptr, png_voidp io_ptr,
  628.    png_rw_ptr write_data_fn, png_flush_ptr output_flush_fn));
  629. /* Replace the default data input function with a user supplied one. */
  630. extern void png_set_read_fn PNGARG((png_structp png_ptr, png_voidp io_ptr,
  631.    png_rw_ptr read_data_fn));
  632. /* Return the user pointer associated with the I/O functions */
  633. extern png_voidp png_get_io_ptr PNGARG((png_structp png_ptr));
  634. #ifdef PNG_PROGRESSIVE_READ_SUPPORTED
  635. /* Replace the default push model read functions */
  636. extern void png_set_push_fn PNGARG((png_structp png_ptr, png_voidp push_ptr,
  637.    png_progressive_info_ptr info_fn, png_progressive_row_ptr row_fn,
  638.    png_progressive_end_ptr end_fn));
  639. /* returns the user pointer associated with the push read functions */
  640. extern png_voidp png_get_progressive_ptr PNGARG((png_structp png_ptr));
  641. #endif /* PNG_PROGRESSIVE_READ_SUPPORTED */
  642. extern png_voidp png_large_malloc PNGARG((png_structp png_ptr,
  643.    png_uint_32 size));
  644. /* free's a pointer allocated by png_large_malloc() */
  645. extern void png_large_free PNGARG((png_structp png_ptr, png_voidp ptr));
  646. /* Allocate memory. */
  647. extern void * png_malloc PNGARG((png_structp png_ptr, png_uint_32 size));
  648. /* Reallocate memory. */
  649. extern void * png_realloc PNGARG((png_structp png_ptr, void * ptr,
  650.    png_uint_32 size, png_uint_32 old_size));
  651. /* free's a pointer allocated by png_malloc() */
  652. extern void png_free PNGARG((png_structp png_ptr, void * ptr));
  653. /* allocate memory for an internal libpng struct */
  654. extern png_voidp png_create_struct PNGARG((uInt type));
  655. /* free memory from internal libpng struct */
  656. extern void png_destroy_struct PNGARG((voidp struct_ptr));
  657. /* Fatal error in libpng - can't continue */ 
  658. extern void png_error PNGARG((png_structp png_ptr, png_const_charp error));
  659. /* Non-fatal error in libpng.  Can continue, but may have a problem. */
  660. extern void png_warning PNGARG((png_structp png_ptr, png_const_charp message));
  661. /* These next functions are used internally in the code.  If you use
  662.    them, make sure you read and understand the png spec.  More information
  663.    about them can be found in the files where the functions are.
  664.    Feel free to move any of these outside the PNG_INTERNAL define if
  665.    you just need a few of them, but if you need access to more, you should
  666.    define PNG_INTERNAL inside your code, so everyone who includes png.h
  667.    won't get yet another definition the compiler has to deal with. */
  668. #if defined(PNG_INTERNAL)
  669. /* various modes of operation.  Note that after an init, mode is set to
  670.    zero automatically */
  671. #define PNG_BEFORE_IHDR  0x00
  672. #define PNG_HAVE_IHDR    0x01
  673. #define PNG_HAVE_PLTE    0x02
  674. #define PNG_HAVE_IDAT    0x04
  675. #define PNG_AT_LAST_IDAT 0x08
  676. #define PNG_AFTER_IDAT   0x10
  677. #define PNG_AFTER_IEND   0x20
  678. /* push model modes */
  679. #define PNG_READ_SIG_MODE   0
  680. #define PNG_READ_CHUNK_MODE 1
  681. #define PNG_READ_IDAT_MODE  2
  682. #define PNG_READ_PLTE_MODE  3
  683. #define PNG_READ_END_MODE   4
  684. #define PNG_SKIP_MODE       5
  685. #define PNG_READ_tEXt_MODE  6
  686. #define PNG_READ_zTXt_MODE  7
  687. #define PNG_READ_DONE_MODE  8
  688. #define PNG_ERROR_MODE      9
  689. /* read modes */
  690. #define PNG_READ_PULL_MODE 0
  691. #define PNG_READ_PUSH_MODE 1
  692. /* defines for the transformations the png library does on the image data */
  693. #define PNG_BGR                0x0001
  694. #define PNG_INTERLACE          0x0002
  695. #define PNG_PACK               0x0004
  696. #define PNG_SHIFT              0x0008
  697. #define PNG_SWAP_BYTES         0x0010
  698. #define PNG_INVERT_MONO        0x0020
  699. #define PNG_DITHER             0x0040
  700. #define PNG_BACKGROUND         0x0080
  701. #define PNG_BACKGROUND_EXPAND  0x0100
  702. #define PNG_XRGB               0x0200
  703. #define PNG_16_TO_8            0x0400
  704. #define PNG_RGBA               0x0800
  705. #define PNG_EXPAND             0x1000
  706. #define PNG_GAMMA              0x2000
  707. #define PNG_GRAY_TO_RGB        0x4000
  708. #define PNG_FILLER             0x8000
  709. /* flags for png_ptr->do_free to say if memory in png_info needs to be freed */
  710. #define PNG_FREE_PALETTE 0x0001
  711. #define PNG_FREE_HIST    0x0002
  712. #define PNG_FREE_TRANS   0x0004
  713. #define PNG_FREE_STRUCT  0x0008
  714. #define PNG_FREE_INFO    0x0010
  715. /* flags for png_create_struct */
  716. #define PNG_STRUCT_PNG   0x0001
  717. #define PNG_STRUCT_INFO  0x0002
  718. /* flags for the png_ptr->flags rather than declaring a bye for each one */
  719. #define PNG_FLAG_WROTE_tIME               0x0001
  720. #define PNG_FLAG_ZLIB_CUSTOM_STRATEGY     0x0002
  721. #define PNG_FLAG_ZLIB_CUSTOM_LEVEL        0x0004
  722. #define PNG_FLAG_ZLIB_CUSTOM_MEM_LEVEL    0x0008
  723. #define PNG_FLAG_ZLIB_CUSTOM_WINDOW_BITS  0x0010
  724. #define PNG_FLAG_ZLIB_CUSTOM_METHOD       0x0020
  725. #define PNG_FLAG_ZLIB_FINISHED            0x0040
  726. #define PNG_FLAG_ROW_INIT                 0x0080
  727. #define PNG_FLAG_FILLER_AFTER             0x0100
  728. #define PNG_FLAG_HAVE_CHUNK_HEADER        0x0200
  729. /* save typing and make code easier to understand */
  730. #define PNG_COLOR_DIST(c1, c2) (abs((int)((c1).red) - (int)((c2).red)) + 
  731.    abs((int)((c1).green) - (int)((c2).green)) + 
  732.    abs((int)((c1).blue) - (int)((c2).blue)))
  733. /* variables defined in png.c - only it needs to define PNG_NO_EXTERN */
  734. #ifndef PNG_NO_EXTERN
  735. /* place to hold the signiture string for a png file. */
  736. extern png_byte png_sig[];
  737. /* version information for c files, stored in png.c. */
  738. extern char png_libpng_ver[];
  739. /* constant strings for known chunk types.  If you need to add a chunk,
  740.    add a string holding the name here.  See png.c for more details.  We
  741.    can't selectively include these, since we still check for chunk in the
  742.    wrong locations with these labels. */
  743. extern png_byte FARDATA png_IHDR[];
  744. extern png_byte FARDATA png_IDAT[];
  745. extern png_byte FARDATA png_IEND[];
  746. extern png_byte FARDATA png_PLTE[];
  747. extern png_byte FARDATA png_gAMA[];
  748. extern png_byte FARDATA png_sBIT[];
  749. extern png_byte FARDATA png_cHRM[];
  750. extern png_byte FARDATA png_tRNS[];
  751. extern png_byte FARDATA png_bKGD[];
  752. extern png_byte FARDATA png_hIST[];
  753. extern png_byte FARDATA png_tEXt[];
  754. extern png_byte FARDATA png_zTXt[];
  755. extern png_byte FARDATA png_pHYs[];
  756. extern png_byte FARDATA png_oFFs[];
  757. extern png_byte FARDATA png_tIME[];
  758. /* Structures to facilitate easy interlacing.  See png.c for more details */
  759. extern int FARDATA png_pass_start[];
  760. extern int FARDATA png_pass_inc[];
  761. extern int FARDATA png_pass_ystart[];
  762. extern int FARDATA png_pass_yinc[];
  763. /* these are not currently used.  If you need them, see png.c
  764. extern int FARDATA png_pass_width[];
  765. extern int FARDATA png_pass_height[];
  766. */
  767. extern int FARDATA png_pass_mask[];
  768. extern int FARDATA png_pass_dsp_mask[];
  769. #endif /* PNG_NO_EXTERN */
  770. /* Function to allocate memory for zlib. */
  771. extern voidpf png_zalloc PNGARG((voidpf png_ptr, uInt items, uInt size));
  772. /* function to free memory for zlib */
  773. extern void png_zfree PNGARG((voidpf png_ptr, voidpf ptr));
  774. /* reset the crc variable */
  775. extern void png_reset_crc PNGARG((png_structp png_ptr));
  776. /* calculate the crc over a section of data.  Note that while we
  777.    are passing in a 32 bit value for length, on 16 bit machines, you
  778.    would need to use huge pointers to access all that data.  See the
  779.    code in png.c for more information. */
  780. extern void png_calculate_crc PNGARG((png_structp png_ptr, png_bytep ptr,
  781.    png_uint_32 length));
  782. #if defined(PNG_WRITE_FLUSH_SUPPORTED)
  783. extern void png_flush PNGARG((png_structp png_ptr));
  784. #endif
  785. /* place a 32 bit number into a buffer in png byte order.  We work
  786.    with unsigned numbers for convenience, you may have to cast
  787.    signed numbers (if you use any, most png data is unsigned). */
  788. extern void png_save_uint_32 PNGARG((png_bytep buf, png_uint_32 i));
  789. /* place a 16 bit number into a buffer in png byte order */
  790. extern void png_save_uint_16 PNGARG((png_bytep buf, png_uint_16 i));
  791. /* write a 32 bit number */
  792. extern void png_write_uint_32 PNGARG((png_structp png_ptr, png_uint_32 i));
  793. /* write a 16 bit number */
  794. extern void png_write_uint_16 PNGARG((png_structp png_ptr, png_uint_16 i));
  795. /* Write a png chunk.  */
  796. extern void png_write_chunk PNGARG((png_structp png_ptr, png_bytep type,
  797.    png_bytep data, png_uint_32 length));
  798. /* Write the start of a png chunk. */
  799. extern void png_write_chunk_start PNGARG((png_structp png_ptr, png_bytep type,
  800.    png_uint_32 total_length));
  801. /* write the data of a png chunk started with png_write_chunk_start(). */
  802. extern void png_write_chunk_data PNGARG((png_structp png_ptr, png_bytep data,
  803.    png_uint_32 length));
  804. /* finish a chunk started with png_write_chunk_start() */
  805. extern void png_write_chunk_end PNGARG((png_structp png_ptr));
  806. /* simple function to write the signiture */
  807. extern void png_write_sig PNGARG((png_structp png_ptr));
  808. /* write various chunks */
  809. /* Write the IHDR chunk, and update the png_struct with the necessary
  810.    information. */
  811. extern void png_write_IHDR PNGARG((png_structp png_ptr, png_uint_32 width,
  812.    png_uint_32 height,
  813.    int bit_depth, int color_type, int compression_type, int filter_type,
  814.    int interlace_type));
  815. extern void png_write_PLTE PNGARG((png_structp png_ptr, png_colorp palette,
  816.    int number));
  817. extern void png_write_IDAT PNGARG((png_structp png_ptr, png_bytep data,
  818.    png_uint_32 length));
  819. extern void png_write_IEND PNGARG((png_structp png_ptr));
  820. #if defined(PNG_WRITE_gAMA_SUPPORTED)
  821. extern void png_write_gAMA PNGARG((png_structp png_ptr, double gamma));
  822. #endif
  823. #if defined(PNG_WRITE_sBIT_SUPPORTED)
  824. extern void png_write_sBIT PNGARG((png_structp png_ptr, png_color_8p sbit,
  825.    int color_type));
  826. #endif
  827. #if defined(PNG_WRITE_cHRM_SUPPORTED)
  828. extern void png_write_cHRM PNGARG((png_structp png_ptr,
  829.    double white_x, double white_y,
  830.    double red_x, double red_y, double green_x, double green_y,
  831.    double blue_x, double blue_y));
  832. #endif
  833. #if defined(PNG_WRITE_tRNS_SUPPORTED)
  834. extern void png_write_tRNS PNGARG((png_structp png_ptr, png_bytep trans,
  835.    png_color_16p values, int number, int color_type));
  836. #endif
  837. #if defined(PNG_WRITE_bKGD_SUPPORTED)
  838. extern void png_write_bKGD PNGARG((png_structp png_ptr, png_color_16p values,
  839.    int color_type));
  840. #endif
  841. #if defined(PNG_WRITE_hIST_SUPPORTED)
  842. extern void png_write_hIST PNGARG((png_structp png_ptr, png_uint_16p hist,
  843.    int number));
  844. #endif
  845. #if defined(PNG_WRITE_tEXt_SUPPORTED)
  846. extern void png_write_tEXt PNGARG((png_structp png_ptr, png_charp key,
  847.    png_charp text, png_uint_32 text_len));
  848. #endif
  849. #if defined(PNG_WRITE_zTXt_SUPPORTED)
  850. extern void png_write_zTXt PNGARG((png_structp png_ptr, png_charp key,
  851.    png_charp text, png_uint_32 text_len, int compression));
  852. #endif
  853. #if defined(PNG_WRITE_pHYs_SUPPORTED)
  854. extern void png_write_pHYs PNGARG((png_structp png_ptr,
  855.    png_uint_32 x_pixels_per_unit,
  856.    png_uint_32 y_pixels_per_unit,
  857.    int unit_type));
  858. #endif
  859. #if defined(PNG_WRITE_oFFs_SUPPORTED)
  860. extern void png_write_oFFs PNGARG((png_structp png_ptr,
  861.    png_uint_32 x_offset,
  862.    png_uint_32 y_offset,
  863.    int unit_type));
  864. #endif
  865. #if defined(PNG_WRITE_tIME_SUPPORTED)
  866. extern void png_write_tIME PNGARG((png_structp png_ptr, png_timep mod_time));
  867. #endif
  868. /* Internal use only.   Called when finished processing a row of data */
  869. extern void png_write_finish_row PNGARG((png_structp png_ptr));
  870. /* Internal use only.   Called before first row of data */
  871. extern void png_write_start_row PNGARG((png_structp png_ptr));
  872. /* callbacks for png chunks */
  873. extern void png_read_IHDR PNGARG((png_structp png_ptr, png_infop info,
  874.    png_uint_32 width, png_uint_32 height, int bit_depth,
  875.    int color_type, int compression_type, int filter_type,
  876.    int interlace_type));
  877. extern void png_read_PLTE PNGARG((png_structp png_ptr, png_infop info,
  878.    png_colorp palette, int num));
  879. #if defined(PNG_READ_gAMA_SUPPORTED)
  880. extern void png_read_gAMA PNGARG((png_structp png_ptr, png_infop info,
  881.    double gamma));
  882. #endif
  883. #if defined(PNG_READ_sBIT_SUPPORTED)
  884. extern void png_read_sBIT PNGARG((png_structp png_ptr, png_infop info,
  885.    png_color_8p sig_bit));
  886. #endif
  887. #if defined(PNG_READ_cHRM_SUPPORTED)
  888. extern void png_read_cHRM PNGARG((png_structp png_ptr, png_infop info,
  889.    double white_x, double white_y, double red_x, double red_y,
  890.    double green_x, double green_y, double blue_x, double blue_y));
  891. #endif
  892. #if defined(PNG_READ_tRNS_SUPPORTED)
  893. extern void png_read_tRNS PNGARG((png_structp png_ptr, png_infop info,
  894.    png_bytep trans, int num_trans,   png_color_16p trans_values));
  895. #endif
  896. #if defined(PNG_READ_bKGD_SUPPORTED)
  897. extern void png_read_bKGD PNGARG((png_structp png_ptr, png_infop info,
  898.    png_color_16p background));
  899. #endif
  900. #if defined(PNG_READ_hIST_SUPPORTED)
  901. extern void png_read_hIST PNGARG((png_structp png_ptr, png_infop info,
  902.    png_uint_16p hist));
  903. #endif
  904. #if defined(PNG_READ_pHYs_SUPPORTED)
  905. extern void png_read_pHYs PNGARG((png_structp png_ptr, png_infop info,
  906.    png_uint_32 res_x, png_uint_32 res_y, int unit_type));
  907. #endif
  908. #if defined(PNG_READ_oFFs_SUPPORTED)
  909. extern void png_read_oFFs PNGARG((png_structp png_ptr, png_infop info,
  910.    png_uint_32 offset_x, png_uint_32 offset_y, int unit_type));
  911. #endif
  912. #if defined(PNG_READ_tIME_SUPPORTED)
  913. extern void png_read_tIME PNGARG((png_structp png_ptr, png_infop info,
  914.    png_timep mod_time));
  915. #endif
  916. #if defined(PNG_READ_tEXt_SUPPORTED)
  917. extern void png_read_tEXt PNGARG((png_structp png_ptr, png_infop info,
  918.    png_charp key, png_charp text, png_uint_32 text_len));
  919. #endif
  920. #if defined(PNG_READ_zTXt_SUPPORTED)
  921. extern void png_read_zTXt PNGARG((png_structp png_ptr, png_infop info,
  922.    png_charp key, png_charp text, png_uint_32 text_len, int compression));
  923. #endif
  924. #if defined(PNG_READ_GAMMA_SUPPORTED)
  925. void
  926. png_build_gamma_table PNGARG((png_structp png_ptr));
  927. #endif
  928. /* combine a row of data, dealing with alpha, etc. if requested */
  929. extern void png_combine_row PNGARG((png_structp png_ptr, png_bytep row,
  930.    int mask));
  931. #if defined(PNG_READ_INTERLACING_SUPPORTED)
  932. /* expand an interlaced row */
  933. extern void png_do_read_interlace PNGARG((png_row_infop row_info,
  934.    png_bytep row, int pass));
  935. #endif
  936. #if defined(PNG_WRITE_INTERLACING_SUPPORTED)
  937. /* grab pixels out of a row for an interlaced pass */
  938. extern void png_do_write_interlace PNGARG((png_row_infop row_info,
  939.    png_bytep row, int pass));
  940. #endif
  941. /* unfilter a row */
  942. extern void png_read_filter_row PNGARG((png_structp png_ptr,
  943.    png_row_infop row_info, png_bytep row, png_bytep prev_row, int filter));
  944. /* choose the best filter to use and filter the row data */
  945. extern void png_write_find_filter PNGARG((png_structp png_ptr,
  946.    png_row_infop row_info));
  947. /* write out the filtered row */
  948. extern void png_write_filtered_row PNGARG((png_structp png_ptr,
  949.    png_bytep filtered_row));
  950. /* finish a row while reading, dealing with interlacing passes, etc. */
  951. extern void png_read_finish_row PNGARG((png_structp png_ptr));
  952. /* initialize the row buffers, etc. */
  953. extern void png_read_start_row PNGARG((png_structp png_ptr));
  954. /* optional call to update the users info structure */
  955. extern void png_read_transform_info PNGARG((png_structp png_ptr,
  956.    png_infop info_ptr));
  957. /* these are the functions that do the transformations */
  958. #if defined(PNG_READ_FILLER_SUPPORTED)
  959. extern void png_do_read_filler PNGARG((png_row_infop row_info,
  960.    png_bytep row, png_byte filler, png_byte filler_loc));
  961. #endif
  962. #if defined(PNG_WRITE_FILLER_SUPPORTED)
  963. extern void png_do_write_filler PNGARG((png_row_infop row_info,
  964.    png_bytep row, png_byte filler_loc));
  965. #endif
  966. #if defined(PNG_READ_SWAP_SUPPORTED) || defined(PNG_WRITE_SWAP_SUPPORTED)
  967. extern void png_do_swap PNGARG((png_row_infop row_info, png_bytep row));
  968. #endif
  969. #if defined(PNG_READ_PACK_SUPPORTED)
  970. extern void png_do_unpack PNGARG((png_row_infop row_info, png_bytep row));
  971. #endif
  972. #if defined(PNG_READ_SHIFT_SUPPORTED)
  973. extern void png_do_unshift PNGARG((png_row_infop row_info, png_bytep row,
  974.    png_color_8p sig_bits));
  975. #endif
  976. #if defined(PNG_READ_INVERT_SUPPORTED) || defined(PNG_WRITE_INVERT_SUPPORTED)
  977. extern void png_do_invert PNGARG((png_row_infop row_info, png_bytep row));
  978. #endif
  979. extern void png_build_grayscale_palette PNGARG((int bit_depth,
  980.    png_colorp palette));
  981. #if defined(PNG_READ_GRAY_TO_RGB_SUPPORTED)
  982. extern void png_do_gray_to_rgb PNGARG((png_row_infop row_info,
  983.    png_bytep row));
  984. #endif
  985. #if defined(PNG_READ_16_TO_8_SUPPORTED)
  986. extern void png_do_chop PNGARG((png_row_infop row_info, png_bytep row));
  987. #endif
  988. #if defined(PNG_READ_DITHER_SUPPORTED)
  989. extern void png_do_dither PNGARG((png_row_infop row_info,
  990.    png_bytep row, png_bytep palette_lookup, png_bytep dither_lookup));
  991. #endif
  992. #if defined(PNG_CORRECT_PALETTE_SUPPORTED)
  993. extern void png_correct_palette PNGARG((png_structp png_ptr,
  994.    png_colorp palette, int num_palette));
  995. #endif
  996. #if defined(PNG_READ_BGR_SUPPORTED) || defined(PNG_WRITE_BGR_SUPPORTED)
  997. extern void png_do_bgr PNGARG((png_row_infop row_info, png_bytep row));
  998. #endif
  999. #if defined(PNG_WRITE_PACK_SUPPORTED)
  1000. extern void png_do_pack PNGARG((png_row_infop row_info,
  1001.    png_bytep row, png_byte bit_depth));
  1002. #endif
  1003. #if defined(PNG_WRITE_SHIFT_SUPPORTED)
  1004. extern void png_do_shift PNGARG((png_row_infop row_info, png_bytep row,
  1005.    png_color_8p bit_depth));
  1006. #endif
  1007. #if defined(PNG_READ_BACKGROUND_SUPPORTED)
  1008. extern void png_do_background PNGARG((png_row_infop row_info, png_bytep row,
  1009.    png_color_16p trans_values, png_color_16p background,
  1010.    png_color_16p background_1,
  1011.    png_bytep gamma_table, png_bytep gamma_from_1, png_bytep gamma_to_1,
  1012.    png_uint_16pp gamma_16, png_uint_16pp gamma_16_from_1,
  1013.    png_uint_16pp gamma_16_to_1, int gamma_shift));
  1014. #endif
  1015. #if defined(PNG_READ_GAMMA_SUPPORTED)
  1016. extern void png_do_gamma PNGARG((png_row_infop row_info, png_bytep row,
  1017.    png_bytep gamma_table, png_uint_16pp gamma_16_table,
  1018.    int gamma_shift));
  1019. #endif
  1020. #if defined(PNG_READ_EXPAND_SUPPORTED)
  1021. extern void png_do_expand_palette PNGARG((png_row_infop row_info,
  1022.    png_bytep row, png_colorp palette, png_bytep trans, int num_trans));
  1023. extern void png_do_expand PNGARG((png_row_infop row_info,
  1024.    png_bytep row, png_color_16p trans_value));
  1025. #endif
  1026. /* unpack 16 and 32 bit values from a string */
  1027. extern png_uint_32 png_get_uint_32 PNGARG((png_bytep buf));
  1028. extern png_uint_16 png_get_uint_16 PNGARG((png_bytep buf));
  1029. /* read bytes into buf, and update png_ptr->crc */
  1030. extern void png_crc_read PNGARG((png_structp png_ptr, png_bytep buf,
  1031.    png_uint_32 length));
  1032. /* skip length bytes, and update png_ptr->crc */
  1033. extern void png_crc_skip PNGARG((png_structp png_ptr, png_uint_32 length));
  1034. /* the following decodes the appropriate chunks, and does error correction,
  1035.    then calls the appropriate callback for the chunk if it is valid */
  1036. /* decode the IHDR chunk */
  1037. extern void png_handle_IHDR PNGARG((png_structp png_ptr, png_infop info,
  1038.    png_uint_32 length));
  1039. extern void png_handle_PLTE PNGARG((png_structp png_ptr, png_infop info,
  1040.    png_uint_32 length));
  1041. #if defined(PNG_READ_gAMA_SUPPORTED)
  1042. extern void png_handle_gAMA PNGARG((png_structp png_ptr, png_infop info,
  1043.    png_uint_32 length));
  1044. #endif
  1045. #if defined(PNG_READ_sBIT_SUPPORTED)
  1046. extern void png_handle_sBIT PNGARG((png_structp png_ptr, png_infop info,
  1047.    png_uint_32 length));
  1048. #endif
  1049. #if defined(PNG_READ_cHRM_SUPPORTED)
  1050. extern void png_handle_cHRM PNGARG((png_structp png_ptr, png_infop info,
  1051.    png_uint_32 length));
  1052. #endif
  1053. #if defined(PNG_READ_tRNS_SUPPORTED)
  1054. extern void png_handle_tRNS PNGARG((png_structp png_ptr, png_infop info,
  1055.    png_uint_32 length));
  1056. #endif
  1057. #if defined(PNG_READ_bKGD_SUPPORTED)
  1058. extern void png_handle_bKGD PNGARG((png_structp png_ptr, png_infop info,
  1059.    png_uint_32 length));
  1060. #endif
  1061. #if defined(PNG_READ_hIST_SUPPORTED)
  1062. extern void png_handle_hIST PNGARG((png_structp png_ptr, png_infop info,
  1063.    png_uint_32 length));
  1064. #endif
  1065. #if defined(PNG_READ_pHYs_SUPPORTED)
  1066. extern void png_handle_pHYs PNGARG((png_structp png_ptr, png_infop info,
  1067.    png_uint_32 length));
  1068. #endif
  1069. #if defined(PNG_READ_oFFs_SUPPORTED)
  1070. extern void png_handle_oFFs PNGARG((png_structp png_ptr, png_infop info,
  1071.    png_uint_32 length));
  1072. #endif
  1073. #if defined(PNG_READ_tIME_SUPPORTED)
  1074. extern void png_handle_tIME PNGARG((png_structp png_ptr, png_infop info,
  1075.    png_uint_32 length));
  1076. #endif
  1077. #if defined(PNG_READ_tEXt_SUPPORTED)
  1078. extern void png_handle_tEXt PNGARG((png_structp png_ptr, png_infop info,
  1079.    png_uint_32 length));
  1080. #endif
  1081. #if defined(PNG_READ_zTXt_SUPPORTED)
  1082. extern void png_handle_zTXt PNGARG((png_structp png_ptr, png_infop info,
  1083.    png_uint_32 length));
  1084. #endif
  1085. /* handle the transformations for reading and writing */
  1086. extern void png_do_read_transformations PNGARG((png_structp png_ptr));
  1087. extern void png_do_write_transformations PNGARG((png_structp png_ptr));
  1088. extern void png_init_read_transformations PNGARG((png_structp png_ptr));
  1089. #ifdef PNG_PROGRESSIVE_READ_SUPPORTED
  1090. extern void png_push_read_chunk PNGARG((png_structp png_ptr, png_infop info));
  1091. extern void png_push_read_sig PNGARG((png_structp png_ptr));
  1092. extern void png_push_check_crc PNGARG((png_structp png_ptr));
  1093. extern void png_push_crc_skip PNGARG((png_structp png_ptr, png_uint_32 length));
  1094. extern void png_push_skip PNGARG((png_structp png_ptr));
  1095. extern void png_push_fill_buffer PNGARG((png_structp png_ptr, png_bytep buffer,
  1096.    png_uint_32 length));
  1097. extern void png_push_save_buffer PNGARG((png_structp png_ptr));
  1098. extern void png_push_restore_buffer PNGARG((png_structp png_ptr, png_bytep buffer,
  1099.    png_uint_32 buffer_length));
  1100. extern void png_push_read_IDAT PNGARG((png_structp png_ptr));
  1101. extern void png_process_IDAT_data PNGARG((png_structp png_ptr,
  1102.    png_bytep buffer, png_uint_32 buffer_length));
  1103. extern void png_push_process_row PNGARG((png_structp png_ptr));
  1104. extern void png_push_handle_PLTE PNGARG((png_structp png_ptr,
  1105.    png_uint_32 length));
  1106. extern void png_push_read_PLTE PNGARG((png_structp png_ptr, png_infop info));
  1107. extern void png_push_handle_tRNS PNGARG((png_structp png_ptr, png_infop info,
  1108.    png_uint_32 length));
  1109. extern void png_push_handle_hIST PNGARG((png_structp png_ptr, png_infop info,
  1110.    png_uint_32 length));
  1111. extern void png_push_have_info PNGARG((png_structp png_ptr, png_infop info));
  1112. extern void png_push_have_end PNGARG((png_structp png_ptr, png_infop info));
  1113. extern void png_push_have_row PNGARG((png_structp png_ptr, png_bytep row));
  1114. extern void png_push_read_end PNGARG((png_structp png_ptr, png_infop info));
  1115. extern void png_process_some_data PNGARG((png_structp png_ptr,
  1116.    png_infop info));
  1117. extern void png_read_push_finish_row PNGARG((png_structp png_ptr));
  1118. #if defined(PNG_READ_tEXt_SUPPORTED)
  1119. extern void png_push_handle_tEXt PNGARG((png_structp png_ptr,
  1120.    png_uint_32 length));
  1121. extern void png_push_read_tEXt PNGARG((png_structp png_ptr, png_infop info));
  1122. #endif
  1123. #if defined(PNG_READ_zTXt_SUPPORTED)
  1124. extern void png_push_handle_zTXt PNGARG((png_structp png_ptr,
  1125.    png_uint_32 length));
  1126. extern void png_push_read_zTXt PNGARG((png_structp png_ptr, png_infop info));
  1127. #endif
  1128. #endif /* PNG_PROGRESSIVE_READ_SUPPORTED */
  1129. #endif /* PNG_INTERNAL */
  1130. #ifdef PNG_PROGRESSIVE_READ_SUPPORTED
  1131. extern void png_process_data PNGARG((png_structp png_ptr, png_infop info,
  1132.    png_bytep buffer, png_uint_32 buffer_size));
  1133. extern void png_set_progressive_read_fn PNGARG((png_structp png_ptr,
  1134.    png_voidp progressive_ptr,
  1135.    png_progressive_info_ptr info_fn, png_progressive_row_ptr row_fn,
  1136.    png_progressive_end_ptr end_fn));
  1137. extern void png_progressive_combine_row PNGARG((png_structp png_ptr,
  1138.    png_bytep old_row, png_bytep new_row));
  1139. #endif /* PNG_PROGRESSIVE_READ_SUPPORTED */
  1140. /* do not put anything past this line */
  1141. #endif /* _PNG_H */