dos33fsprogs/utils/gr-utils/loadpng.h

12 lines
309 B
C
Raw Permalink Normal View History

2020-12-09 00:19:23 +00:00
#define PNG_WHOLETHING 0
#define PNG_ODDLINES 1
#define PNG_EVENLINES 2
2021-03-23 01:29:27 +00:00
#define PNG_RAW 3
#define PNG_NO_ADJUST 4
2020-12-09 00:19:23 +00:00
int loadpng(char *filename, unsigned char **image_ptr, int *xsize, int *ysize,
int png_type);
int loadpng80(char *filename, unsigned char **image_ptr, int *xsize, int *ysize,
int png_type);