亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? png.h

?? 一個非常有用的開源代碼
?? H
?? 第 1 頁 / 共 5 頁
字號:
    png_byte name[5];    png_byte *data;    png_size_t size;    /* libpng-using applications should NOT directly modify this byte. */    png_byte location; /* mode of operation at read time */}png_unknown_chunk;typedef png_unknown_chunk FAR * png_unknown_chunkp;typedef png_unknown_chunk FAR * FAR * png_unknown_chunkpp;#endif/* png_info is a structure that holds the information in a PNG file so * that the application can find out the characteristics of the image. * If you are reading the file, this structure will tell you what is * in the PNG file.  If you are writing the file, fill in the information * you want to put into the PNG file, then call png_write_info(). * The names chosen should be very close to the PNG specification, so * consult that document for information about the meaning of each field. * * With libpng < 0.95, it was only possible to directly set and read the * the values in the png_info_struct, which meant that the contents and * order of the values had to remain fixed.  With libpng 0.95 and later, * however, there are now functions that abstract the contents of * png_info_struct from the application, so this makes it easier to use * libpng with dynamic libraries, and even makes it possible to use * libraries that don't have all of the libpng ancillary chunk-handing * functionality. * * In any case, the order of the parameters in png_info_struct should NOT * be changed for as long as possible to keep compatibility with applications * that use the old direct-access method with png_info_struct. * * The following members may have allocated storage attached that should be * cleaned up before the structure is discarded: palette, trans, text, * pcal_purpose, pcal_units, pcal_params, hist, iccp_name, iccp_profile, * splt_palettes, scal_unit, row_pointers, and unknowns.   By default, these * are automatically freed when the info structure is deallocated, if they were * allocated internally by libpng.  This behavior can be changed by means * of the png_data_freer() function. * * More allocation details: all the chunk-reading functions that * change these members go through the corresponding png_set_* * functions.  A function to clear these members is available: see * png_free_data().  The png_set_* functions do not depend on being * able to point info structure members to any of the storage they are * passed (they make their own copies), EXCEPT that the png_set_text * functions use the same storage passed to them in the text_ptr or * itxt_ptr structure argument, and the png_set_rows and png_set_unknowns * functions do not make their own copies. */typedef struct png_info_struct{   /* the following are necessary for every PNG file */   png_uint_32 width;       /* width of image in pixels (from IHDR) */   png_uint_32 height;      /* height of image in pixels (from IHDR) */   png_uint_32 valid;       /* valid chunk data (see PNG_INFO_ below) */   png_uint_32 rowbytes;    /* bytes needed to hold an untransformed row */   png_colorp palette;      /* array of color values (valid & PNG_INFO_PLTE) */   png_uint_16 num_palette; /* number of color entries in "palette" (PLTE) */   png_uint_16 num_trans;   /* number of transparent palette color (tRNS) */   png_byte bit_depth;      /* 1, 2, 4, 8, or 16 bits/channel (from IHDR) */   png_byte color_type;     /* see PNG_COLOR_TYPE_ below (from IHDR) */   /* The following three should have been named *_method not *_type */   png_byte compression_type; /* must be PNG_COMPRESSION_TYPE_BASE (IHDR) */   png_byte filter_type;    /* must be PNG_FILTER_TYPE_BASE (from IHDR) */   png_byte interlace_type; /* One of PNG_INTERLACE_NONE, PNG_INTERLACE_ADAM7 */   /* The following is informational only on read, and not used on writes. */   png_byte channels;       /* number of data channels per pixel (1, 2, 3, 4) */   png_byte pixel_depth;    /* number of bits per pixel */   png_byte spare_byte;     /* to align the data, and for future use */   png_byte signature[8];   /* magic bytes read by libpng from start of file */   /* The rest of the data is optional.  If you are reading, check the    * valid field to see if the information in these are valid.  If you    * are writing, set the valid field to those chunks you want written,    * and initialize the appropriate fields below.    */#if defined(PNG_gAMA_SUPPORTED) && defined(PNG_FLOATING_POINT_SUPPORTED)   /* The gAMA chunk describes the gamma characteristics of the system    * on which the image was created, normally in the range [1.0, 2.5].    * Data is valid if (valid & PNG_INFO_gAMA) is non-zero.    */   float gamma; /* gamma value of image, if (valid & PNG_INFO_gAMA) */#endif#if defined(PNG_sRGB_SUPPORTED)    /* GR-P, 0.96a */    /* Data valid if (valid & PNG_INFO_sRGB) non-zero. */   png_byte srgb_intent; /* sRGB rendering intent [0, 1, 2, or 3] */#endif#if defined(PNG_TEXT_SUPPORTED)   /* The tEXt, and zTXt chunks contain human-readable textual data in    * uncompressed, compressed, and optionally compressed forms, respectively.    * The data in "text" is an array of pointers to uncompressed,    * null-terminated C strings. Each chunk has a keyword that describes the    * textual data contained in that chunk.  Keywords are not required to be    * unique, and the text string may be empty.  Any number of text chunks may    * be in an image.    */   int num_text; /* number of comments read/to write */   int max_text; /* current size of text array */   png_textp text; /* array of comments read/to write */#endif /* PNG_TEXT_SUPPORTED */#if defined(PNG_tIME_SUPPORTED)   /* The tIME chunk holds the last time the displayed image data was    * modified.  See the png_time struct for the contents of this struct.    */   png_time mod_time;#endif#if defined(PNG_sBIT_SUPPORTED)   /* The sBIT chunk specifies the number of significant high-order bits    * in the pixel data.  Values are in the range [1, bit_depth], and are    * only specified for the channels in the pixel data.  The contents of    * the low-order bits is not specified.  Data is valid if    * (valid & PNG_INFO_sBIT) is non-zero.    */   png_color_8 sig_bit; /* significant bits in color channels */#endif#if defined(PNG_tRNS_SUPPORTED) || defined(PNG_READ_EXPAND_SUPPORTED) || \defined(PNG_READ_BACKGROUND_SUPPORTED)   /* The tRNS chunk supplies transparency data for paletted images and    * other image types that don't need a full alpha channel.  There are    * "num_trans" transparency values for a paletted image, stored in the    * same order as the palette colors, starting from index 0.  Values    * for the data are in the range [0, 255], ranging from fully transparent    * to fully opaque, respectively.  For non-paletted images, there is a    * single color specified that should be treated as fully transparent.    * Data is valid if (valid & PNG_INFO_tRNS) is non-zero.    */   png_bytep trans; /* transparent values for paletted image */   png_color_16 trans_values; /* transparent color for non-palette image */#endif#if defined(PNG_bKGD_SUPPORTED) || defined(PNG_READ_BACKGROUND_SUPPORTED)   /* The bKGD chunk gives the suggested image background color if the    * display program does not have its own background color and the image    * is needs to composited onto a background before display.  The colors    * in "background" are normally in the same color space/depth as the    * pixel data.  Data is valid if (valid & PNG_INFO_bKGD) is non-zero.    */   png_color_16 background;#endif#if defined(PNG_oFFs_SUPPORTED)   /* The oFFs chunk gives the offset in "offset_unit_type" units rightwards    * and downwards from the top-left corner of the display, page, or other    * application-specific co-ordinate space.  See the PNG_OFFSET_ defines    * below for the unit types.  Valid if (valid & PNG_INFO_oFFs) non-zero.    */   png_int_32 x_offset; /* x offset on page */   png_int_32 y_offset; /* y offset on page */   png_byte offset_unit_type; /* offset units type */#endif#if defined(PNG_pHYs_SUPPORTED)   /* The pHYs chunk gives the physical pixel density of the image for    * display or printing in "phys_unit_type" units (see PNG_RESOLUTION_    * defines below).  Data is valid if (valid & PNG_INFO_pHYs) is non-zero.    */   png_uint_32 x_pixels_per_unit; /* horizontal pixel density */   png_uint_32 y_pixels_per_unit; /* vertical pixel density */   png_byte phys_unit_type; /* resolution type (see PNG_RESOLUTION_ below) */#endif#if defined(PNG_hIST_SUPPORTED)   /* The hIST chunk contains the relative frequency or importance of the    * various palette entries, so that a viewer can intelligently select a    * reduced-color palette, if required.  Data is an array of "num_palette"    * values in the range [0,65535]. Data valid if (valid & PNG_INFO_hIST)    * is non-zero.    */   png_uint_16p hist;#endif#ifdef PNG_cHRM_SUPPORTED   /* The cHRM chunk describes the CIE color characteristics of the monitor    * on which the PNG was created.  This data allows the viewer to do gamut    * mapping of the input image to ensure that the viewer sees the same    * colors in the image as the creator.  Values are in the range    * [0.0, 0.8].  Data valid if (valid & PNG_INFO_cHRM) non-zero.    */#ifdef PNG_FLOATING_POINT_SUPPORTED   float x_white;   float y_white;   float x_red;   float y_red;   float x_green;   float y_green;   float x_blue;   float y_blue;#endif#endif#if defined(PNG_pCAL_SUPPORTED)   /* The pCAL chunk describes a transformation between the stored pixel    * values and original physical data values used to create the image.    * The integer range [0, 2^bit_depth - 1] maps to the floating-point    * range given by [pcal_X0, pcal_X1], and are further transformed by a    * (possibly non-linear) transformation function given by "pcal_type"    * and "pcal_params" into "pcal_units".  Please see the PNG_EQUATION_    * defines below, and the PNG-Group's PNG extensions document for a    * complete description of the transformations and how they should be    * implemented, and for a description of the ASCII parameter strings.    * Data values are valid if (valid & PNG_INFO_pCAL) non-zero.    */   png_charp pcal_purpose;  /* pCAL chunk description string */   png_int_32 pcal_X0;      /* minimum value */   png_int_32 pcal_X1;      /* maximum value */   png_charp pcal_units;    /* Latin-1 string giving physical units */   png_charpp pcal_params;  /* ASCII strings containing parameter values */   png_byte pcal_type;      /* equation type (see PNG_EQUATION_ below) */   png_byte pcal_nparams;   /* number of parameters given in pcal_params */#endif/* New members added in libpng-1.0.6 */#ifdef PNG_FREE_ME_SUPPORTED   png_uint_32 free_me;     /* flags items libpng is responsible for freeing */#endif#if defined(PNG_UNKNOWN_CHUNKS_SUPPORTED)   /* storage for unknown chunks that the library doesn't recognize. */   png_unknown_chunkp unknown_chunks;   png_size_t unknown_chunks_num;#endif#if defined(PNG_iCCP_SUPPORTED)   /* iCCP chunk data. */   png_charp iccp_name;     /* profile name */   png_charp iccp_profile;  /* International Color Consortium profile data */                            /* Note to maintainer: should be png_bytep */   png_uint_32 iccp_proflen;  /* ICC profile data length */   png_byte iccp_compression; /* Always zero */#endif#if defined(PNG_sPLT_SUPPORTED)   /* data on sPLT chunks (there may be more than one). */   png_sPLT_tp splt_palettes;   png_uint_32 splt_palettes_num;#endif#if defined(PNG_sCAL_SUPPORTED)   /* The sCAL chunk describes the actual physical dimensions of the    * subject matter of the graphic.  The chunk contains a unit specification    * a byte value, and two ASCII strings representing floating-point    * values.  The values are width and height corresponsing to one pixel    * in the image.  This external representation is converted to double    * here.  Data values are valid if (valid & PNG_INFO_sCAL) is non-zero.    */   png_byte scal_unit;         /* unit of physical scale */#ifdef PNG_FLOATING_POINT_SUPPORTED   double scal_pixel_width;    /* width of one pixel */   double scal_pixel_height;   /* height of one pixel */#endif#ifdef PNG_FIXED_POINT_SUPPORTED   png_charp scal_s_width;     /* string containing height */   png_charp scal_s_height;    /* string containing width */#endif#endif#if defined(PNG_INFO_IMAGE_SUPPORTED)   /* Memory has been allocated if (valid & PNG_ALLOCATED_INFO_ROWS) non-zero */   /* Data valid if (valid & PNG_INFO_IDAT) non-zero */   png_bytepp row_pointers;        /* the image bits */#endif#if defined(PNG_FIXED_POINT_SUPPORTED) && defined(PNG_gAMA_SUPPORTED)   png_fixed_point int_gamma; /* gamma of image, if (valid & PNG_INFO_gAMA) */#endif#if defined(PNG_cHRM_SUPPORTED) && defined(PNG_FIXED_POINT_SUPPORTED)   png_fixed_point int_x_white;   png_fixed_point int_y_white;   png_fixed_point int_x_red;   png_fixed_point int_y_red;   png_fixed_point int_x_green;   png_fixed_point int_y_green;   png_fixed_point int_x_blue;   png_fixed_point int_y_blue;#endif} png_info;typedef png_info FAR * png_infop;typedef png_info FAR * FAR * png_infopp;/* Maximum positive integer used in PNG is (2^31)-1 */#define PNG_UINT_31_MAX ((png_uint_32)0x7fffffffL)#define PNG_UINT_32_MAX ((png_uint_32)(-1))#define PNG_SIZE_MAX ((png_size_t)(-1))/* PNG_MAX_UINT is deprecated; use PNG_UINT_31_MAX instead. */#define PNG_MAX_UINT PNG_UINT_31_MAX/* These describe the color_type field in png_info. */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲精品日日夜夜| 国产成人在线看| 精品美女在线播放| 国产.欧美.日韩| 一区二区三区在线观看视频| 欧美日韩不卡视频| 国产成人夜色高潮福利影视| 天天色图综合网| 亚洲天天做日日做天天谢日日欢 | 亚洲欧洲美洲综合色网| 69堂国产成人免费视频| 国产91丝袜在线播放九色| 日本最新不卡在线| 亚洲靠逼com| 国产精品网站一区| 国产欧美综合色| 欧美成人高清电影在线| 欧美专区日韩专区| 97久久精品人人澡人人爽| 久久精品国产成人一区二区三区| 国产精品国产三级国产| ㊣最新国产の精品bt伙计久久| 亚洲综合在线第一页| 日产欧产美韩系列久久99| 国产精品一区二区在线观看不卡| 成人黄色网址在线观看| 欧美亚洲国产一卡| 精品乱码亚洲一区二区不卡| 国产精品久久久久四虎| 亚洲成人动漫在线免费观看| 久久精品免费观看| 99久久婷婷国产综合精品电影| 日本韩国欧美国产| 精品精品欲导航| 亚洲欧美日本韩国| 蜜臀av性久久久久蜜臀aⅴ | 国产精选一区二区三区| 91网站视频在线观看| 日韩欧美一二区| 亚洲另类在线制服丝袜| 久久国产视频网| 欧美在线一二三| 中文字幕乱码一区二区免费| 五月开心婷婷久久| av中文字幕在线不卡| 精品久久久久久亚洲综合网| 国产精品国产自产拍高清av| 午夜伦理一区二区| av电影在线观看一区| 精品国产一区二区亚洲人成毛片 | 国产精品久久久一本精品| 午夜欧美视频在线观看| 波多野结衣视频一区| 精品国产免费一区二区三区四区| 一级做a爱片久久| 不卡av电影在线播放| www国产精品av| 亚洲国产精品欧美一二99| 国产一区二区三区香蕉| 日韩一级完整毛片| 亚洲不卡在线观看| 在线一区二区三区四区| 欧美极品xxx| 国产凹凸在线观看一区二区| 欧美成人官网二区| 久久99久久精品欧美| 在线播放亚洲一区| 亚洲超丰满肉感bbw| 欧美午夜精品免费| 亚洲第一二三四区| 欧美亚洲国产bt| 亚洲一区二区av在线| 91麻豆免费看片| 亚洲一区在线电影| 欧美日韩另类一区| 日韩电影免费在线看| 制服丝袜亚洲播放| 日本特黄久久久高潮| 4438成人网| 日本伊人精品一区二区三区观看方式| 欧美吻胸吃奶大尺度电影| 亚洲一区二区三区在线看| 欧美性极品少妇| 亚洲一二三四久久| 91精品中文字幕一区二区三区| 日韩国产一二三区| 精品美女一区二区三区| 国产精品99久| 综合色中文字幕| 日本精品一区二区三区四区的功能| 亚洲裸体xxx| 91麻豆精品国产91久久久资源速度 | 丝瓜av网站精品一区二区| 欧美日韩在线播放三区四区| 亚洲成av人综合在线观看| 欧美电视剧免费观看| 国产一区二区在线观看免费 | 一区二区三区精品在线观看| 欧美午夜精品免费| 蓝色福利精品导航| 国产精品久久久久四虎| 欧美日韩视频在线一区二区| 久久国产福利国产秒拍| 国产精品理伦片| 欧美精品一二三区| 国产大陆亚洲精品国产| 亚洲一区中文在线| 久久欧美一区二区| 欧美自拍偷拍午夜视频| 国产在线乱码一区二区三区| 最新中文字幕一区二区三区| 日韩欧美在线观看一区二区三区| 成人在线视频一区| 午夜精品福利在线| 中国色在线观看另类| 91精品欧美综合在线观看最新| 国产精品99久久久久久似苏梦涵 | 3d动漫精品啪啪一区二区竹菊| 国产99久久久国产精品潘金网站| 亚洲福利视频一区二区| 欧美韩日一区二区三区| 欧美日韩你懂得| 99久久精品免费精品国产| 日韩av一级片| 一区二区三区在线免费视频| 久久综合九色欧美综合狠狠 | 色综合久久久久综合| 久久99九九99精品| 亚洲午夜免费福利视频| 国产无人区一区二区三区| 欧美亚洲一区二区在线| 99久久精品国产观看| 国产在线一区二区综合免费视频| 五月天网站亚洲| 亚洲电影第三页| 亚洲黄色av一区| 中文字幕一区二区三| 国产日产精品一区| 日韩精品中午字幕| 欧美精品久久一区二区三区| 91久久一区二区| 91亚洲国产成人精品一区二区三| 国产成人免费在线观看| 国产综合色视频| 蜜桃视频一区二区三区| 亚洲欧美精品午睡沙发| 国产精品久久久久影院| 欧美国产精品劲爆| 欧美xxxxx裸体时装秀| 日韩一区二区三区四区| 欧美日韩一区二区三区在线| 色菇凉天天综合网| 一本色道综合亚洲| 91伊人久久大香线蕉| 色天天综合久久久久综合片| 91在线精品一区二区三区| 成人福利视频网站| 成人国产亚洲欧美成人综合网| 成人av在线电影| 色域天天综合网| 欧美日本视频在线| 欧美亚洲国产怡红院影院| 777午夜精品视频在线播放| 在线亚洲一区观看| 欧美日韩免费观看一区三区| 欧美色欧美亚洲另类二区| 欧美日韩一级二级三级| 欧美丰满少妇xxxxx高潮对白| 56国语精品自产拍在线观看| 欧美成人三级在线| 久久精品水蜜桃av综合天堂| 国产免费久久精品| 亚洲欧美日韩一区| 日韩激情中文字幕| 国产一区二区免费看| 99久久精品免费看| 欧美日本在线看| 日韩一区二区免费高清| 国产精品系列在线| 亚洲电影中文字幕在线观看| 日韩vs国产vs欧美| 国产91精品一区二区| 一本色道久久综合亚洲精品按摩| 51精品久久久久久久蜜臀| 精品欧美一区二区三区精品久久| 日韩女优电影在线观看| 亚洲国产精品国自产拍av| 洋洋成人永久网站入口| 亚洲综合丝袜美腿| 亚洲成a人v欧美综合天堂下载| 亚洲综合免费观看高清完整版| 奇米精品一区二区三区在线观看一 | 免费在线欧美视频| 91原创在线视频| 欧美白人最猛性xxxxx69交| 一色屋精品亚洲香蕉网站| 麻豆一区二区99久久久久| 91麻豆高清视频| 欧美高清在线一区| 国产高清久久久|