/* * Lecture des images PNG */ #include #include #include #include #include "../floatimg.h" /* --------------------------------------------------------------------- */ static char *pngerr2str(int code) { switch (code) { case 1: return "Done"; case 0: return "No error"; case -1: return "File error"; case -2: return "Header error"; case -3: return "IO error"; case -4: return "EOF error"; case -5: return "CRC error"; case -6: return "Memory error"; case -7: return "Zlib error"; case -8: return "Unknow filter"; case -9: return "Not supported"; case -10: return "Wrong arguments"; } return "*unknow*"; } /* --------------------------------------------------------------------- */ /* * warning : this func has been tested only with * RGB (3x8bits) PNG files */ int fimg_create_from_png(char *filename, FloatImg *fimg) { png_t png; int foo, idx; unsigned char *datas, *ptr; int datasize; #if DEBUG_LEVEL fprintf(stderr, ">>> %-25s ( '%s' %p )\n", __func__, filename, fimg); #endif /* We MUSTclear the fimg destination header first */ memset(fimg, 0, sizeof(FloatImg)); memset(&png, 0, sizeof(png_t)); png_init(NULL, NULL); /* this is VITAL ! */ foo = png_open_file_read(&png, filename); if (PNG_NO_ERROR != foo) { fprintf(stderr, "%s :\n\topen_file '%s' = %d %s\n", __func__, filename, foo, pngerr2str(foo)); return foo; } #if DEBUG_LEVEL > 1 fprintf(stderr, "%s opened\n", filename); #endif datasize = png.width * png.height * png.bpp; if ( 3 != png.bpp ) { fprintf(stderr, "format %d of '%s' not supported\n", png.color_type, filename); return -21; } #if DEBUG_LEVEL printf("\t%s is %d x %d\n", filename, png.width, png.height); printf("\tdatalen %d\n", png.png_datalen); printf("\tcolor type %d\n", png.color_type); printf("\tbyte/pixel %d\n", png.bpp); printf("\tdatasize %d\n", datasize); puts(""); png_print_info(&png); puts(""); #endif datas = malloc(datasize); if (NULL==datas) { fprintf(stderr, "%s : fatal memory failure\n", __func__); exit(1); } memset(fimg, 0, sizeof(FloatImg)); foo = fimg_create(fimg, png.width, png.height, 3); if (foo) { fprintf(stderr, "can't create fimg\n"); exit(1); } foo = png_get_data(&png, datas); if (PNG_NO_ERROR != foo) { fprintf(stderr, "error in '%s' : read png -> %d %s\n", __func__, foo, pngerr2str(foo)); return foo; } ptr = datas; for (idx=0; idxR[idx] = (float)*ptr++; fimg->G[idx] = (float)*ptr++; fimg->B[idx] = (float)*ptr++; } free(datas); png_close_file(&png); // fprintf(stderr, "png closed...\n"); return foo; } /* --------------------------------------------------------------------- */ /* * warning : this func has been tested only with * RGB (3x8bits) PNG files */ int fimg_load_from_png(char *filename, FloatImg *fimg) { png_t png; int foo, idx, datasize; unsigned char *datas, *ptr; #if DEBUG_LEVEL fprintf(stderr, ">>> %-25s ( '%s' %p )\n", __func__, filename, fimg); #endif memset(&png, 0, sizeof(png_t)); png_init(NULL, NULL); /* this is VITAL ! */ foo = png_open_file_read(&png, filename); if (PNG_NO_ERROR != foo) { #if DEBUG_LEVEL fprintf(stderr, "open png -> %d\n", foo); #endif return foo; } // puts(""); png_print_info(&png); puts(""); if ( 3 != png.bpp ) { /* TO BE PATCHED */ fprintf(stderr, "format of '%s' not supported\n", filename); return -21; } /* check if floatimg and PNG have the same size */ if ((fimg->width != png.width) || (fimg->height != png.height)) { fprintf(stderr, "%s : fatal error on images sizes\n", __func__); exit(1); } datasize = png.width * png.height * png.bpp; datas = malloc(datasize); if (NULL==datas) { fprintf(stderr, "%s : fatal memory failure\n", __func__); exit(1); } foo = png_get_data(&png, datas); if (PNG_NO_ERROR != foo) { fprintf(stderr, "error in '%s' : read png -> %d\n", __func__, foo); return foo; } ptr = datas; for (idx=0; idxR[idx] = (float)*ptr++; fimg->G[idx] = (float)*ptr++; fimg->B[idx] = (float)*ptr++; } free(datas); png_close_file(&png); return 0; } /* --------------------------------------------------------------------- */ int fimg_save_as_png(FloatImg *src, char *outname, int flags) { png_t png; return -1; } /* --------------------------------------------------------------------- */