Lines Matching defs:LodePNGInfo
401 typedef struct LodePNGInfo struct
404 unsigned compression_method;/*compression method of the original file. Always 0.*/
405 unsigned filter_method; /*filter method of the original file*/
406 unsigned interlace_method; /*interlace method of the original file*/
407 LodePNGColorMode color; /*color type and bits, palette and transparency of the PNG file*/
421 unsigned background_defined; /*is a suggested background color given?*/
422 unsigned background_r; /*red component of suggested background color*/
423 unsigned background_g; /*green component of suggested background color*/
424 unsigned background_b; /*blue component of suggested background color*/
439 …size_t text_num; /*the amount of texts in these char** buffers (there may be more texts in itext)*/
440 char** text_keys; /*the keyword of a text chunk (e.g. "Comment")*/
441 char** text_strings; /*the actual text*/
448 size_t itext_num; /*the amount of international texts in this PNG*/
449 char** itext_keys; /*the English keyword of the text chunk (e.g. "Comment")*/
450 …_langtags; /*language tag for this text's language, ISO/IEC 646 string, e.g. ISO 639 language tag*/
451 char** itext_transkeys; /*keyword translated to the international language - UTF-8 string*/
452 char** itext_strings; /*the actual international text - UTF-8 string*/
476 } LodePNGInfo; typedef