can now save as 8bits png file

This commit is contained in:
tonton Th 2020-01-25 17:22:31 +01:00
parent 0a814f1bc6
commit 5da64b6145
1 changed files with 6 additions and 0 deletions

View File

@ -365,6 +365,12 @@ switch (foo) {
case FILE_TYPE_PNM:
foo = fimg_save_as_pnm(&cumul, outfile, 1);
break;
case FILE_TYPE_PNG:
foo = fimg_save_as_png(&cumul, outfile, 0);
break;
default:
fprintf(stderr, "can't save as %s\n", outfile);
break;
}
// free buffers
fimg_destroy(&cumul);