#ifndef __NEWPNG_H__
#define __NEWPNG_H__
#include <png.h>
#include <gd.h>
#include <math.h>

struct png_data{
	uint32_t width;
	uint32_t height;
	unsigned char pixel_size;
	unsigned char *array;
}

int Load_Png(char *filename, struct png_data *pnginfo);
int Write_Png(unsigned char *image_array);

#endif