minor fixes on TIFF handling

This commit is contained in:
2020-08-22 17:38:27 +02:00
parent 301a0133e7
commit 3223caa03b
2 changed files with 7 additions and 6 deletions

View File

@@ -46,7 +46,7 @@ if (grisaille) {
foo = fimg_write_as_tiff(&fimg, dstname, 0);
if (foo) {
fprintf(stderr, "%s: saving as png '%s' -> %d\n", __func__,
fprintf(stderr, "%s: saving as tiff '%s' -> %d\n", __func__,
dstname, foo);
return -1;
}
@@ -59,9 +59,9 @@ return 0;
void help(int k)
{
puts("usage:\n\tfimg2tiff [options] foo.fimg bar.png");
puts("usage:\n\tfimg2tiff [options] foo.fimg bar.tiff");
puts("options:");
puts("\t-g\tconvert to gray");
// puts("\t-g\tconvert to gray");
puts("\t-v\tincrease verbosity");
if (verbosity) fimg_print_version(1);