2008-07-14 09:15:55 +12:00
|
|
|
/* main.c - Command line handling routines for Zint */
|
|
|
|
|
|
|
|
/*
|
|
|
|
libzint - the open source barcode library
|
2008-11-17 21:47:42 +13:00
|
|
|
Copyright (C) 2008 Robin Stuart <robin@zint.org.uk>
|
2008-07-14 09:15:55 +12:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along
|
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2009-06-03 08:23:38 +12:00
|
|
|
#ifndef _MSC_VER
|
2008-07-14 09:15:55 +12:00
|
|
|
#include <getopt.h>
|
|
|
|
#include <zint.h>
|
2009-06-03 08:23:38 +12:00
|
|
|
#else
|
|
|
|
#include "getopt.h"
|
|
|
|
#include "zint.h"
|
|
|
|
#endif
|
2008-07-14 09:15:55 +12:00
|
|
|
#define NESET "0123456789"
|
|
|
|
|
2008-09-27 06:01:20 +12:00
|
|
|
void types(void) {
|
2009-07-14 07:25:23 +12:00
|
|
|
printf( " 1: Code 11 51: Pharma One-Track 89: ITF-14\n"
|
|
|
|
" 2: Standard 2of5 52: PZN 90: KIX Code\n"
|
|
|
|
" 3: Interleaved 2of5 53: Pharma Two-Track 92: Aztec Code\n"
|
|
|
|
" 4: IATA 2of5 55: PDF417 93: DAFT Code\n"
|
|
|
|
" 6: Data Logic 56: PDF417 Trunc 97: Micro QR Code\n"
|
|
|
|
" 7: Industrial 2of5 57: Maxicode 98: HIBC Code 128\n"
|
|
|
|
" 8: Code 39 58: QR Code 99: HIBC Code 39\n"
|
|
|
|
" 9: Extended Code 39 60: Code 128-B 102: HIBC Data Matrix\n"
|
|
|
|
"13: EAN 63: AP Standard Customer 104: HIBC QR Code\n"
|
|
|
|
"16: GS1-128 66: AP Reply Paid 106: HIBC PDF417\n"
|
|
|
|
"18: Codabar 67: AP Routing 108: HIBC MicroPDF417\n"
|
|
|
|
"20: Code 128 68: AP Redirection 110: HIBC Codablock-F\n"
|
|
|
|
"21: Leitcode 69: ISBN 128: Aztec Runes\n"
|
|
|
|
"22: Identcode 70: RM4SCC 129: Code 23\n"
|
|
|
|
"23: Code 16k 71: Data Matrix 130: Comp EAN\n"
|
|
|
|
"24: Code 49 72: EAN-14 131: Comp GS1-128\n"
|
|
|
|
"25: Code 93 74: Codablock-F 132: Comp Databar-14\n"
|
|
|
|
"28: Flattermarken 75: NVE-18 133: Comp Databar Ltd\n"
|
|
|
|
"29: Databar-14 76: Japanese Post 134: Comp Databar Ext\n"
|
|
|
|
"30: Databar Limited 77: Korea Post 135: Comp UPC-A\n"
|
|
|
|
"31: Databar Extended 79: Databar-14 Stack 136: Comp UPC-E\n"
|
|
|
|
"32: Telepen Alpha 80: Databar-14 Stack Omni 137: Comp Databar-14 Stack\n"
|
|
|
|
"34: UPC-A 81: Databar Extended Stack 138: Comp Databar Stack Omni\n"
|
|
|
|
"37: UPC-E 82: Planet 139: Comp Databar Ext Stack\n"
|
|
|
|
"40: Postnet 84: MicroPDF 140: Channel Code\n"
|
|
|
|
"47: MSI Plessey 85: USPS OneCode 141: Code One\n"
|
|
|
|
"49: FIM 86: UK Plessey\n"
|
|
|
|
"50: Logmars 87: Telepen Numeric\n"
|
2008-12-08 09:12:57 +13:00
|
|
|
);
|
2008-09-27 06:01:20 +12:00
|
|
|
}
|
|
|
|
|
2008-07-14 09:15:55 +12:00
|
|
|
void usage(void)
|
|
|
|
{
|
|
|
|
printf(
|
|
|
|
"Zint version %s\n"
|
2009-06-20 06:30:47 +12:00
|
|
|
"Encode input data in a barcode and save as a PNG, EPS or SVG file.\n\n"
|
2008-07-14 09:15:55 +12:00
|
|
|
" -h, --help Display this message.\n"
|
2008-09-27 06:01:20 +12:00
|
|
|
" -t, --types Display table of barcode types\n"
|
2008-07-14 09:15:55 +12:00
|
|
|
" -o, --output=FILE Write image to FILE. (default is out.png)\n"
|
|
|
|
" -d, --data=DATA Barcode content.\n"
|
|
|
|
" -b, --barcode=NUMBER Number of barcode type (default is 20 (=Code128)).\n"
|
2008-12-25 10:31:07 +13:00
|
|
|
" --height=NUMBER Height of symbol in multiples of x-dimension.\n"
|
|
|
|
" -w, --whitesp=NUMBER Width of whitespace in multiples of x-dimension.\n"
|
|
|
|
" --border=NUMBER Width of border in multiples of x-dimension.\n"
|
2008-07-14 09:15:55 +12:00
|
|
|
" --box Add a box.\n"
|
|
|
|
" --bind Add boundary bars.\n"
|
|
|
|
" -r, --reverse Reverse colours (white on black).\n"
|
|
|
|
" --fg=COLOUR Specify a foreground colour.\n"
|
|
|
|
" --bg=COLOUR Specify a background colour.\n"
|
2008-12-22 01:17:14 +13:00
|
|
|
" --scale=NUMBER Adjust size of output image.\n"
|
|
|
|
" --directpng Send PNG output to stdout\n"
|
|
|
|
" --directeps Send EPS output to stdout\n"
|
2008-09-03 08:22:39 +12:00
|
|
|
" --rotate=NUMBER Rotate symbol (PNG output only).\n"
|
2008-07-14 09:15:55 +12:00
|
|
|
" --cols=NUMBER (PDF417) Number of columns.\n"
|
|
|
|
" --vers=NUMBER (QR Code) Version\n"
|
|
|
|
" --secure=NUMBER (PDF417 and QR Code) Error correction level.\n"
|
|
|
|
" --primary=STRING (Maxicode and Composite) Structured primary message.\n"
|
|
|
|
" --mode=NUMBER (Maxicode and Composite) Set encoding mode.\n"
|
2009-01-03 10:09:16 +13:00
|
|
|
" --null=NUMBER Character to represent NULL.\n"
|
2009-01-25 11:01:41 +13:00
|
|
|
" --gs1 Treat input as GS1 data\n"
|
2009-02-23 03:13:32 +13:00
|
|
|
" --kanji Treat input as Kanji characters in Unicode\n"
|
|
|
|
" --sjis Treat input as Shift-JIS\n"
|
2008-09-19 02:36:31 +12:00
|
|
|
, ZINT_VERSION);
|
2008-07-14 09:15:55 +12:00
|
|
|
}
|
|
|
|
|
2008-10-01 04:13:35 +13:00
|
|
|
int validator(char test_string[], char source[])
|
|
|
|
{ /* Verifies that a string only uses valid characters */
|
|
|
|
unsigned int i, j, latch;
|
|
|
|
|
|
|
|
for(i = 0; i < strlen(source); i++) {
|
|
|
|
latch = 0;
|
|
|
|
for(j = 0; j < strlen(test_string); j++) {
|
|
|
|
if (source[i] == test_string[j]) { latch = 1; } }
|
|
|
|
if (!(latch)) {
|
|
|
|
return ERROR_INVALID_DATA; }
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-07-14 09:15:55 +12:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
struct zint_symbol *my_symbol;
|
|
|
|
int c;
|
2008-09-27 06:01:20 +12:00
|
|
|
int error_number;
|
2008-09-03 08:22:39 +12:00
|
|
|
int rotate_angle;
|
2008-10-05 18:51:58 +13:00
|
|
|
int generated;
|
2008-07-14 09:15:55 +12:00
|
|
|
|
2008-09-27 06:01:20 +12:00
|
|
|
error_number = 0;
|
2008-09-03 08:22:39 +12:00
|
|
|
rotate_angle = 0;
|
2008-10-05 18:51:58 +13:00
|
|
|
generated = 0;
|
2008-07-14 09:15:55 +12:00
|
|
|
my_symbol = ZBarcode_Create();
|
2009-01-16 07:35:03 +13:00
|
|
|
my_symbol->input_mode = UNICODE_MODE;
|
2008-07-14 09:15:55 +12:00
|
|
|
|
|
|
|
if(argc == 1) {
|
|
|
|
usage();
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
while(1) {
|
|
|
|
int option_index = 0;
|
|
|
|
static struct option long_options[] = {
|
|
|
|
{"help", 0, 0, 'h'},
|
2008-09-27 06:01:20 +12:00
|
|
|
{"types", 0, 0, 't'},
|
2008-07-14 09:15:55 +12:00
|
|
|
{"bind", 0, 0, 0},
|
|
|
|
{"box", 0, 0, 0},
|
2008-12-22 01:17:14 +13:00
|
|
|
{"directeps", 0, 0, 0},
|
|
|
|
{"directpng", 0, 0, 0},
|
2009-02-23 06:21:11 +13:00
|
|
|
{"directsvg", 0, 0, 0},
|
2009-06-03 08:23:38 +12:00
|
|
|
{"barcode", 1, 0, 'b'},
|
|
|
|
{"height", 1, 0, 0},
|
|
|
|
{"whitesp", 1, 0, 'w'},
|
|
|
|
{"border", 1, 0, 0},
|
|
|
|
{"data", 1, 0, 'd'},
|
|
|
|
{"output", 1, 0, 'o'},
|
|
|
|
{"fg", 1, 0, 0},
|
|
|
|
{"bg", 1, 0, 0},
|
|
|
|
{"cols", 1, 0, 0},
|
|
|
|
{"vers", 1, 0, 0},
|
|
|
|
{"rotate", 1, 0, 0},
|
|
|
|
{"secure", 1, 0, 0},
|
2008-07-14 09:15:55 +12:00
|
|
|
{"reverse", 1, 0, 'r'},
|
2009-06-03 08:23:38 +12:00
|
|
|
{"mode", 1, 0, 0},
|
|
|
|
{"primary", 1, 0, 0},
|
|
|
|
{"scale", 1, 0, 0},
|
|
|
|
{"null", 1, 0, 0},
|
2009-01-16 07:35:03 +13:00
|
|
|
{"gs1", 0, 0, 0},
|
2009-01-25 11:01:41 +13:00
|
|
|
{"kanji", 0, 0, 0},
|
2009-02-23 03:13:32 +13:00
|
|
|
{"sjis", 0, 0, 0},
|
2008-07-14 09:15:55 +12:00
|
|
|
{0, 0, 0, 0}
|
|
|
|
};
|
2008-09-27 06:01:20 +12:00
|
|
|
c = getopt_long(argc, argv, "htb:w:d:o:i:rcmp", long_options, &option_index);
|
2008-07-14 09:15:55 +12:00
|
|
|
if(c == -1) break;
|
|
|
|
|
|
|
|
switch(c) {
|
|
|
|
case 0:
|
|
|
|
if(!strcmp(long_options[option_index].name, "bind")) {
|
2008-12-22 01:17:14 +13:00
|
|
|
my_symbol->output_options += BARCODE_BIND;
|
2008-07-14 09:15:55 +12:00
|
|
|
}
|
|
|
|
if(!strcmp(long_options[option_index].name, "box")) {
|
2008-12-22 01:17:14 +13:00
|
|
|
my_symbol->output_options += BARCODE_BOX;
|
|
|
|
}
|
|
|
|
if(!strcmp(long_options[option_index].name, "directeps")) {
|
|
|
|
my_symbol->output_options += BARCODE_STDOUT;
|
|
|
|
strncpy(my_symbol->outfile, "dummy.eps", 10);
|
|
|
|
}
|
|
|
|
if(!strcmp(long_options[option_index].name, "directpng")) {
|
|
|
|
my_symbol->output_options += BARCODE_STDOUT;
|
|
|
|
strncpy(my_symbol->outfile, "dummy.png", 10);
|
2008-07-14 09:15:55 +12:00
|
|
|
}
|
2009-02-23 06:21:11 +13:00
|
|
|
if(!strcmp(long_options[option_index].name, "directsvg")) {
|
|
|
|
my_symbol->output_options += BARCODE_STDOUT;
|
|
|
|
strncpy(my_symbol->outfile, "dummy.svg", 10);
|
|
|
|
}
|
2009-01-16 07:35:03 +13:00
|
|
|
if(!strcmp(long_options[option_index].name, "gs1")) {
|
|
|
|
my_symbol->input_mode = GS1_MODE;
|
|
|
|
}
|
2009-01-25 11:01:41 +13:00
|
|
|
if(!strcmp(long_options[option_index].name, "kanji")) {
|
|
|
|
my_symbol->input_mode = KANJI_MODE;
|
|
|
|
}
|
2009-02-23 03:13:32 +13:00
|
|
|
if(!strcmp(long_options[option_index].name, "sjis")) {
|
|
|
|
my_symbol->input_mode = SJIS_MODE;
|
|
|
|
}
|
2009-06-03 08:23:38 +12:00
|
|
|
if(!strcmp(long_options[option_index].name, "fg")) {
|
2008-07-14 09:15:55 +12:00
|
|
|
strncpy(my_symbol->fgcolour, optarg, 7);
|
|
|
|
}
|
2009-06-03 08:23:38 +12:00
|
|
|
if(!strcmp(long_options[option_index].name, "bg")) {
|
2008-07-14 09:15:55 +12:00
|
|
|
strncpy(my_symbol->bgcolour, optarg, 7);
|
|
|
|
}
|
2009-06-03 08:23:38 +12:00
|
|
|
if(!strcmp(long_options[option_index].name, "scale")) {
|
2008-12-22 00:29:15 +13:00
|
|
|
my_symbol->scale = (float)(atof(optarg));
|
|
|
|
if(my_symbol->scale < 0.01) {
|
|
|
|
/* Zero and negative values are not permitted */
|
|
|
|
fprintf(stderr, "Invalid scale value\n");
|
|
|
|
my_symbol->scale = 1.0;
|
|
|
|
}
|
|
|
|
}
|
2009-06-03 08:23:38 +12:00
|
|
|
if(!strcmp(long_options[option_index].name, "border")) {
|
2008-10-01 04:13:35 +13:00
|
|
|
error_number = validator(NESET, optarg);
|
2008-09-27 06:01:20 +12:00
|
|
|
if(error_number == ERROR_INVALID_DATA) {
|
2008-07-14 09:15:55 +12:00
|
|
|
fprintf(stderr, "Invalid border width\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
if((atoi(optarg) >= 0) && (atoi(optarg) <= 1000)) {
|
|
|
|
my_symbol->border_width = atoi(optarg);
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "Border width out of range\n");
|
|
|
|
}
|
|
|
|
}
|
2009-06-03 08:23:38 +12:00
|
|
|
if(!strcmp(long_options[option_index].name, "null")) {
|
2009-01-03 10:09:16 +13:00
|
|
|
error_number = validator(NESET, optarg);
|
|
|
|
if(error_number == ERROR_INVALID_DATA) {
|
|
|
|
fprintf(stderr, "Invalid NULL replacement\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
if((atoi(optarg) >= 1) && (atoi(optarg) <= 128)) {
|
|
|
|
my_symbol->nullchar = atoi(optarg);
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "Invalid NULL replacement\n");
|
|
|
|
}
|
|
|
|
}
|
2009-06-03 08:23:38 +12:00
|
|
|
if(!strcmp(long_options[option_index].name, "height")) {
|
2008-10-01 04:13:35 +13:00
|
|
|
error_number = validator(NESET, optarg);
|
2008-09-27 06:01:20 +12:00
|
|
|
if(error_number == ERROR_INVALID_DATA) {
|
2008-07-14 09:15:55 +12:00
|
|
|
fprintf(stderr, "Invalid symbol height\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
if((atoi(optarg) >= 1) && (atoi(optarg) <= 1000)) {
|
|
|
|
my_symbol->height = atoi(optarg);
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "Symbol height out of range\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-03 08:23:38 +12:00
|
|
|
if(!strcmp(long_options[option_index].name, "cols")) {
|
2008-07-14 09:15:55 +12:00
|
|
|
if((atoi(optarg) >= 1) && (atoi(optarg) <= 30)) {
|
|
|
|
my_symbol->option_2 = atoi(optarg);
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "Number of columns out of range\n");
|
|
|
|
}
|
|
|
|
}
|
2009-06-03 08:23:38 +12:00
|
|
|
if(!strcmp(long_options[option_index].name, "vers")) {
|
2008-07-14 09:15:55 +12:00
|
|
|
if((atoi(optarg) >= 1) && (atoi(optarg) <= 40)) {
|
|
|
|
my_symbol->option_2 = atoi(optarg);
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "Invalid QR Code version\n");
|
|
|
|
}
|
|
|
|
}
|
2009-06-03 08:23:38 +12:00
|
|
|
if(!strcmp(long_options[option_index].name, "secure")) {
|
2008-07-14 09:15:55 +12:00
|
|
|
if((atoi(optarg) >= 1) && (atoi(optarg) <= 8)) {
|
|
|
|
my_symbol->option_1 = atoi(optarg);
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "ECC level out of range\n");
|
|
|
|
}
|
|
|
|
}
|
2009-06-03 08:23:38 +12:00
|
|
|
if(!strcmp(long_options[option_index].name, "primary")) {
|
2008-07-14 09:15:55 +12:00
|
|
|
if(strlen(optarg) <= 90) {
|
|
|
|
strcpy(my_symbol->primary, optarg);
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "Primary data string too long");
|
|
|
|
}
|
|
|
|
}
|
2009-06-03 08:23:38 +12:00
|
|
|
if(!strcmp(long_options[option_index].name, "mode")) {
|
2008-07-14 09:15:55 +12:00
|
|
|
/* Don't allow specification of modes 2 and 3 - do it
|
|
|
|
automagically instead */
|
|
|
|
if((optarg[0] >= '0') && (optarg[0] <= '6')) {
|
|
|
|
my_symbol->option_1 = optarg[0] - '0';
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "Invalid mode\n");
|
|
|
|
}
|
|
|
|
}
|
2009-06-03 08:23:38 +12:00
|
|
|
if(!strcmp(long_options[option_index].name, "rotate")) {
|
2008-09-03 08:22:39 +12:00
|
|
|
/* Only certain inputs allowed */
|
2008-10-01 04:13:35 +13:00
|
|
|
error_number = validator(NESET, optarg);
|
2008-09-27 06:01:20 +12:00
|
|
|
if(error_number == ERROR_INVALID_DATA) {
|
2008-09-03 08:22:39 +12:00
|
|
|
fprintf(stderr, "Invalid rotation parameter\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
switch(atoi(optarg)) {
|
|
|
|
case 90: rotate_angle = 90; break;
|
|
|
|
case 180: rotate_angle = 180; break;
|
|
|
|
case 270: rotate_angle = 270; break;
|
|
|
|
default: rotate_angle = 0; break;
|
|
|
|
}
|
|
|
|
}
|
2008-07-14 09:15:55 +12:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'h':
|
|
|
|
usage();
|
|
|
|
break;
|
|
|
|
|
2008-09-27 06:01:20 +12:00
|
|
|
case 't':
|
|
|
|
types();
|
|
|
|
break;
|
|
|
|
|
2008-07-14 09:15:55 +12:00
|
|
|
case 'b':
|
2008-10-01 04:13:35 +13:00
|
|
|
error_number = validator(NESET, optarg);
|
2008-09-27 06:01:20 +12:00
|
|
|
if(error_number == ERROR_INVALID_DATA) {
|
2008-10-05 18:51:58 +13:00
|
|
|
fprintf(stderr, "Invalid barcode type\n");
|
2008-07-14 09:15:55 +12:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
my_symbol->symbology = atoi(optarg);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'w':
|
2008-10-01 04:13:35 +13:00
|
|
|
error_number = validator(NESET, optarg);
|
2008-09-27 06:01:20 +12:00
|
|
|
if(error_number == ERROR_INVALID_DATA) {
|
2008-10-05 18:51:58 +13:00
|
|
|
fprintf(stderr, "Invalid whitespace value\n");
|
2008-07-14 09:15:55 +12:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
if((atoi(optarg) >= 0) && (atoi(optarg) <= 1000)) {
|
|
|
|
my_symbol->whitespace_width = atoi(optarg);
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "Whitespace value out of range");
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'd': /* we have some data! */
|
2008-12-25 10:31:07 +13:00
|
|
|
if(rotate_angle == 0) {
|
|
|
|
error_number = ZBarcode_Encode_and_Print(my_symbol, (unsigned char*)optarg);
|
|
|
|
} else {
|
|
|
|
error_number = ZBarcode_Encode_and_Print_Rotated(my_symbol, (unsigned char*)optarg, rotate_angle);
|
|
|
|
}
|
2008-10-05 18:51:58 +13:00
|
|
|
generated = 1;
|
2008-09-27 06:01:20 +12:00
|
|
|
if(error_number != 0) {
|
2008-10-05 18:51:58 +13:00
|
|
|
fprintf(stderr, "%s\n", my_symbol->errtxt);
|
2008-09-28 10:15:38 +13:00
|
|
|
ZBarcode_Delete(my_symbol);
|
2008-09-27 06:01:20 +12:00
|
|
|
return 1;
|
2008-07-14 09:15:55 +12:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'o':
|
|
|
|
strncpy(my_symbol->outfile, optarg, 250);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'r':
|
|
|
|
strcpy(my_symbol->fgcolour, "ffffff");
|
|
|
|
strcpy(my_symbol->bgcolour, "000000");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case '?':
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2008-10-05 18:51:58 +13:00
|
|
|
fprintf(stderr, "?? getopt error 0%o\n", c);
|
2008-07-14 09:15:55 +12:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (optind < argc) {
|
2008-10-05 18:51:58 +13:00
|
|
|
fprintf(stderr, "Invalid option ");
|
2008-07-14 09:15:55 +12:00
|
|
|
while (optind < argc)
|
2008-10-05 18:51:58 +13:00
|
|
|
fprintf(stderr, "%s", argv[optind++]);
|
|
|
|
fprintf(stderr, "\n");
|
2008-07-14 09:15:55 +12:00
|
|
|
}
|
|
|
|
|
2008-10-05 18:51:58 +13:00
|
|
|
if(generated == 0) {
|
|
|
|
fprintf(stderr, "error: No data received, no symbol generated\n");
|
2008-07-14 09:15:55 +12:00
|
|
|
}
|
2008-10-05 18:51:58 +13:00
|
|
|
|
2008-07-14 09:15:55 +12:00
|
|
|
ZBarcode_Delete(my_symbol);
|
|
|
|
|
2008-09-27 06:01:20 +12:00
|
|
|
return error_number;
|
2008-07-14 09:15:55 +12:00
|
|
|
}
|