1/* pnginfo.h - header file for PNG reference library2*3* Last changed in libpng 1.6.1 [March 28, 2013]4* Copyright (c) 1998-2002,2004,2006-2013 Glenn Randers-Pehrson5* (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)6* (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)7*8* This code is released under the libpng license.9* For conditions of distribution and use, see the disclaimer10* and license in png.h11*/1213/* png_info is a structure that holds the information in a PNG file so14* that the application can find out the characteristics of the image.15* If you are reading the file, this structure will tell you what is16* in the PNG file. If you are writing the file, fill in the information17* you want to put into the PNG file, using png_set_*() functions, then18* call png_write_info().19*20* The names chosen should be very close to the PNG specification, so21* consult that document for information about the meaning of each field.22*23* With libpng < 0.95, it was only possible to directly set and read the24* the values in the png_info_struct, which meant that the contents and25* order of the values had to remain fixed. With libpng 0.95 and later,26* however, there are now functions that abstract the contents of27* png_info_struct from the application, so this makes it easier to use28* libpng with dynamic libraries, and even makes it possible to use29* libraries that don't have all of the libpng ancillary chunk-handing30* functionality. In libpng-1.5.0 this was moved into a separate private31* file that is not visible to applications.32*33* The following members may have allocated storage attached that should be34* cleaned up before the structure is discarded: palette, trans, text,35* pcal_purpose, pcal_units, pcal_params, hist, iccp_name, iccp_profile,36* splt_palettes, scal_unit, row_pointers, and unknowns. By default, these37* are automatically freed when the info structure is deallocated, if they were38* allocated internally by libpng. This behavior can be changed by means39* of the png_data_freer() function.40*41* More allocation details: all the chunk-reading functions that42* change these members go through the corresponding png_set_*43* functions. A function to clear these members is available: see44* png_free_data(). The png_set_* functions do not depend on being45* able to point info structure members to any of the storage they are46* passed (they make their own copies), EXCEPT that the png_set_text47* functions use the same storage passed to them in the text_ptr or48* itxt_ptr structure argument, and the png_set_rows and png_set_unknowns49* functions do not make their own copies.50*/51#ifndef PNGINFO_H52#define PNGINFO_H5354struct png_info_def55{56/* The following are necessary for every PNG file */57png_uint_32 width; /* width of image in pixels (from IHDR) */58png_uint_32 height; /* height of image in pixels (from IHDR) */59png_uint_32 valid; /* valid chunk data (see PNG_INFO_ below) */60png_size_t rowbytes; /* bytes needed to hold an untransformed row */61png_colorp palette; /* array of color values (valid & PNG_INFO_PLTE) */62png_uint_16 num_palette; /* number of color entries in "palette" (PLTE) */63png_uint_16 num_trans; /* number of transparent palette color (tRNS) */64png_byte bit_depth; /* 1, 2, 4, 8, or 16 bits/channel (from IHDR) */65png_byte color_type; /* see PNG_COLOR_TYPE_ below (from IHDR) */66/* The following three should have been named *_method not *_type */67png_byte compression_type; /* must be PNG_COMPRESSION_TYPE_BASE (IHDR) */68png_byte filter_type; /* must be PNG_FILTER_TYPE_BASE (from IHDR) */69png_byte interlace_type; /* One of PNG_INTERLACE_NONE, PNG_INTERLACE_ADAM7 */7071/* The following are set by png_set_IHDR, called from the application on72* write, but the are never actually used by the write code.73*/74png_byte channels; /* number of data channels per pixel (1, 2, 3, 4) */75png_byte pixel_depth; /* number of bits per pixel */76png_byte spare_byte; /* to align the data, and for future use */7778#ifdef PNG_READ_SUPPORTED79/* This is never set during write */80png_byte signature[8]; /* magic bytes read by libpng from start of file */81#endif8283/* The rest of the data is optional. If you are reading, check the84* valid field to see if the information in these are valid. If you85* are writing, set the valid field to those chunks you want written,86* and initialize the appropriate fields below.87*/8889#if defined(PNG_COLORSPACE_SUPPORTED) || defined(PNG_GAMMA_SUPPORTED)90/* png_colorspace only contains 'flags' if neither GAMMA or COLORSPACE are91* defined. When COLORSPACE is switched on all the colorspace-defining92* chunks should be enabled, when GAMMA is switched on all the gamma-defining93* chunks should be enabled. If this is not done it becomes possible to read94* inconsistent PNG files and assign a probably incorrect interpretation to95* the information. (In other words, by carefully choosing which chunks to96* recognize the system configuration can select an interpretation for PNG97* files containing ambiguous data and this will result in inconsistent98* behavior between different libpng builds!)99*/100png_colorspace colorspace;101#endif102103#ifdef PNG_iCCP_SUPPORTED104/* iCCP chunk data. */105png_charp iccp_name; /* profile name */106png_bytep iccp_profile; /* International Color Consortium profile data */107png_uint_32 iccp_proflen; /* ICC profile data length */108#endif109110#ifdef PNG_TEXT_SUPPORTED111/* The tEXt, and zTXt chunks contain human-readable textual data in112* uncompressed, compressed, and optionally compressed forms, respectively.113* The data in "text" is an array of pointers to uncompressed,114* null-terminated C strings. Each chunk has a keyword that describes the115* textual data contained in that chunk. Keywords are not required to be116* unique, and the text string may be empty. Any number of text chunks may117* be in an image.118*/119int num_text; /* number of comments read or comments to write */120int max_text; /* current size of text array */121png_textp text; /* array of comments read or comments to write */122#endif /* TEXT */123124#ifdef PNG_tIME_SUPPORTED125/* The tIME chunk holds the last time the displayed image data was126* modified. See the png_time struct for the contents of this struct.127*/128png_time mod_time;129#endif130131#ifdef PNG_sBIT_SUPPORTED132/* The sBIT chunk specifies the number of significant high-order bits133* in the pixel data. Values are in the range [1, bit_depth], and are134* only specified for the channels in the pixel data. The contents of135* the low-order bits is not specified. Data is valid if136* (valid & PNG_INFO_sBIT) is non-zero.137*/138png_color_8 sig_bit; /* significant bits in color channels */139#endif140141#if defined(PNG_tRNS_SUPPORTED) || defined(PNG_READ_EXPAND_SUPPORTED) || \142defined(PNG_READ_BACKGROUND_SUPPORTED)143/* The tRNS chunk supplies transparency data for paletted images and144* other image types that don't need a full alpha channel. There are145* "num_trans" transparency values for a paletted image, stored in the146* same order as the palette colors, starting from index 0. Values147* for the data are in the range [0, 255], ranging from fully transparent148* to fully opaque, respectively. For non-paletted images, there is a149* single color specified that should be treated as fully transparent.150* Data is valid if (valid & PNG_INFO_tRNS) is non-zero.151*/152png_bytep trans_alpha; /* alpha values for paletted image */153png_color_16 trans_color; /* transparent color for non-palette image */154#endif155156#if defined(PNG_bKGD_SUPPORTED) || defined(PNG_READ_BACKGROUND_SUPPORTED)157/* The bKGD chunk gives the suggested image background color if the158* display program does not have its own background color and the image159* is needs to composited onto a background before display. The colors160* in "background" are normally in the same color space/depth as the161* pixel data. Data is valid if (valid & PNG_INFO_bKGD) is non-zero.162*/163png_color_16 background;164#endif165166#ifdef PNG_oFFs_SUPPORTED167/* The oFFs chunk gives the offset in "offset_unit_type" units rightwards168* and downwards from the top-left corner of the display, page, or other169* application-specific co-ordinate space. See the PNG_OFFSET_ defines170* below for the unit types. Valid if (valid & PNG_INFO_oFFs) non-zero.171*/172png_int_32 x_offset; /* x offset on page */173png_int_32 y_offset; /* y offset on page */174png_byte offset_unit_type; /* offset units type */175#endif176177#ifdef PNG_pHYs_SUPPORTED178/* The pHYs chunk gives the physical pixel density of the image for179* display or printing in "phys_unit_type" units (see PNG_RESOLUTION_180* defines below). Data is valid if (valid & PNG_INFO_pHYs) is non-zero.181*/182png_uint_32 x_pixels_per_unit; /* horizontal pixel density */183png_uint_32 y_pixels_per_unit; /* vertical pixel density */184png_byte phys_unit_type; /* resolution type (see PNG_RESOLUTION_ below) */185#endif186187#ifdef PNG_eXIf_SUPPORTED188int num_exif; /* Added at libpng-1.6.31 */189png_bytep exif;190# ifdef PNG_READ_eXIf_SUPPORTED191png_bytep eXIf_buf; /* Added at libpng-1.6.32 */192# endif193#endif194195#ifdef PNG_hIST_SUPPORTED196/* The hIST chunk contains the relative frequency or importance of the197* various palette entries, so that a viewer can intelligently select a198* reduced-color palette, if required. Data is an array of "num_palette"199* values in the range [0,65535]. Data valid if (valid & PNG_INFO_hIST)200* is non-zero.201*/202png_uint_16p hist;203#endif204205#ifdef PNG_pCAL_SUPPORTED206/* The pCAL chunk describes a transformation between the stored pixel207* values and original physical data values used to create the image.208* The integer range [0, 2^bit_depth - 1] maps to the floating-point209* range given by [pcal_X0, pcal_X1], and are further transformed by a210* (possibly non-linear) transformation function given by "pcal_type"211* and "pcal_params" into "pcal_units". Please see the PNG_EQUATION_212* defines below, and the PNG-Group's PNG extensions document for a213* complete description of the transformations and how they should be214* implemented, and for a description of the ASCII parameter strings.215* Data values are valid if (valid & PNG_INFO_pCAL) non-zero.216*/217png_charp pcal_purpose; /* pCAL chunk description string */218png_int_32 pcal_X0; /* minimum value */219png_int_32 pcal_X1; /* maximum value */220png_charp pcal_units; /* Latin-1 string giving physical units */221png_charpp pcal_params; /* ASCII strings containing parameter values */222png_byte pcal_type; /* equation type (see PNG_EQUATION_ below) */223png_byte pcal_nparams; /* number of parameters given in pcal_params */224#endif225226/* New members added in libpng-1.0.6 */227png_uint_32 free_me; /* flags items libpng is responsible for freeing */228229#ifdef PNG_STORE_UNKNOWN_CHUNKS_SUPPORTED230/* Storage for unknown chunks that the library doesn't recognize. */231png_unknown_chunkp unknown_chunks;232233/* The type of this field is limited by the type of234* png_struct::user_chunk_cache_max, else overflow can occur.235*/236int unknown_chunks_num;237#endif238239#ifdef PNG_sPLT_SUPPORTED240/* Data on sPLT chunks (there may be more than one). */241png_sPLT_tp splt_palettes;242int splt_palettes_num; /* Match type returned by png_get API */243#endif244245#ifdef PNG_sCAL_SUPPORTED246/* The sCAL chunk describes the actual physical dimensions of the247* subject matter of the graphic. The chunk contains a unit specification248* a byte value, and two ASCII strings representing floating-point249* values. The values are width and height corresponsing to one pixel250* in the image. Data values are valid if (valid & PNG_INFO_sCAL) is251* non-zero.252*/253png_byte scal_unit; /* unit of physical scale */254png_charp scal_s_width; /* string containing height */255png_charp scal_s_height; /* string containing width */256#endif257258#ifdef PNG_INFO_IMAGE_SUPPORTED259/* Memory has been allocated if (valid & PNG_ALLOCATED_INFO_ROWS)260non-zero */261/* Data valid if (valid & PNG_INFO_IDAT) non-zero */262png_bytepp row_pointers; /* the image bits */263#endif264265};266#endif /* PNGINFO_H */267268269