GadgetSeed  0.9.6
pngdec.h
[詳解]
1 /** @file
2  @brief PNGデコード
3 
4  @date 2018.01.03
5  @author Takashi SHUDO
6 */
7 
8 #ifndef PNGDEC_H
9 #define PNGDEC_H
10 
11 int get_png_file_info(int fd, short *png_width, short *png_height);
12 int get_png_data_info(unsigned char *data, short *png_width, short *png_height);
13 int decode_png(void *image);
14 void dispose_png_info(void);
15 
16 #endif // PNGDEC_H