#ifndef LIBPNG_JAVA_H #define LIBPNG_JAVA_H void savePNG(const char *filename, int width, int height, float *red, float *green, float *blue, float *alpha); bool loadPNG(const char *filename, unsigned int &width, unsigned int &height, float **red, float **green, float **blue, float **alpha); #endif