comparison tools/gfxconv.c @ 2059:5b7f5505267c

Improve gfxconv --help a bit.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 04 Dec 2018 19:22:56 +0200
parents 020f2151949a
children f11fad2dc3b5
comparison
equal deleted inserted replaced
2058:020f2151949a 2059:5b7f5505267c
161 { 9, 'S', "scale", "Scale output image by specified value(s) (see below)", OPT_ARGREQ }, 161 { 9, 'S', "scale", "Scale output image by specified value(s) (see below)", OPT_ARGREQ },
162 { 12, 'P', "paletted", "Use indexed/paletted output IF possible.", OPT_NONE }, 162 { 12, 'P', "paletted", "Use indexed/paletted output IF possible.", OPT_NONE },
163 { 13, 'N', "nplanes", "# of bitplanes (some output formats)", OPT_ARGREQ }, 163 { 13, 'N', "nplanes", "# of bitplanes (some output formats)", OPT_ARGREQ },
164 { 18, 'B', "bpp", "Bits per pixel (some output formats)", OPT_ARGREQ }, 164 { 18, 'B', "bpp", "Bits per pixel (some output formats)", OPT_ARGREQ },
165 { 14, 'I', "interleave", "Interleaved/planar output (some output formats)", OPT_NONE }, 165 { 14, 'I', "interleave", "Interleaved/planar output (some output formats)", OPT_NONE },
166 { 20, 'C', "compress", "Use compression -C <level 0-9>, 0 = disable, default is 9", OPT_ARGREQ }, 166 { 20, 'C', "compress", "Use compression -C <0-9>, 0 = disable, default is 9", OPT_ARGREQ },
167 { 16, 'R', "remap", "Remap output image colors (-R <(#RRGGBB|index):index>[,<..>][+remove] | -R @map.txt[+remove])", OPT_ARGREQ }, 167 { 16, 'R', "remap", "Remap output image colors (-R <(#RRGGBB|index):index>[,<..>][+remove] | -R @map.txt[+remove])", OPT_ARGREQ },
168 }; 168 };
169 169
170 static const int optListN = sizeof(optList) / sizeof(optList[0]); 170 static const int optListN = sizeof(optList) / sizeof(optList[0]);
171 171