/*****************************************/ /* Converts a PNG to LZ4 compressed data */ /*****************************************/ /* Note, it ignores memory holes so only */ /* safe to load high and copy to the right location */ #include #include #include #include #include #include #include #include "loadpng.h" #define OUTPUT_C 0 #define OUTPUT_ASM 1 #define OUTPUT_RAW 2 int gr_lz4(int out_type, char *name, int xsize, int ysize, unsigned char *image) { /* our image pointer is not-interleaved, but it does */ /* have the top/bottom pixels properly packed for us */ return 0; } /* Converts a PNG to LZ4 compressed data */ int main(int argc, char **argv) { unsigned char *image; int xsize,ysize; int size=0; int out_type=OUTPUT_C; if (argc<4) { fprintf(stderr,"Usage:\t%s type INFILE varname\n\n",argv[0]); fprintf(stderr,"\ttype: c or asm or raw\n"); fprintf(stderr,"\tvarname: label for graphic\n"); fprintf(stderr,"\n"); exit(-1); } if (!strcmp(argv[1],"c")) { out_type=OUTPUT_C; } else if (!strcmp(argv[1],"asm")) { out_type=OUTPUT_ASM; } else if (!strcmp(argv[1],"raw")) { out_type=OUTPUT_RAW; } if (loadpng(argv[2],&image,&xsize,&ysize)<0) { fprintf(stderr,"Error loading png!\n"); exit(-1); } fprintf(stderr,"Loaded image %d by %d\n",xsize,ysize); size=gr_lz4(out_type,argv[3], xsize,ysize,image); fprintf(stderr,"Size %d bytes\n",size); return 0; }