mirror of
https://git.code.sf.net/p/zint/code
synced 2025-05-16 16:14:36 -04:00
parent
9011a96134
commit
e39d2ff915
3 changed files with 44 additions and 29 deletions
|
@ -476,6 +476,7 @@ int main(int argc, char **argv) {
|
|||
{"mirror", 0, 0, 0},
|
||||
{"mirroreps", 0, 0, 0},
|
||||
{"mirrorsvg", 0, 0, 0},
|
||||
{"dotty", 0, 0, 0},
|
||||
{0, 0, 0, 0}
|
||||
};
|
||||
c = getopt_long(argc, argv, "htb:w:d:o:i:rcmp", long_options, &option_index);
|
||||
|
@ -501,6 +502,9 @@ int main(int argc, char **argv) {
|
|||
if (!strcmp(long_options[option_index].name, "cmyk")) {
|
||||
my_symbol->output_options += CMYK_COLOUR;
|
||||
}
|
||||
if (!strcmp(long_options[option_index].name, "dotty")) {
|
||||
my_symbol->output_options += BARCODE_DOTTY_MODE;
|
||||
}
|
||||
if (!strcmp(long_options[option_index].name, "directeps")) {
|
||||
my_symbol->output_options += BARCODE_STDOUT;
|
||||
strncpy(my_symbol->outfile, "dummy.eps", 10);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue