123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
-
-
- #ifndef _UTILS_PNG_H_
- #define _UTILS_PNG_H_
-
-
- int pngCheck(const char *filename);
-
-
- int pngLoad(const char *filename, unsigned char **image,
- unsigned int *width, unsigned int *height, ColorMode *mode, unsigned int *bpp);
-
-
- int pngSave(const char *filename, unsigned char *image,
- unsigned int width, unsigned int height, ColorMode mode, unsigned int bpp);
-
- #endif
|