2008-07-14 09:15:55 +12:00
|
|
|
/* main.c - Command line handling routines for Zint */
|
|
|
|
|
|
|
|
/*
|
|
|
|
libzint - the open source barcode library
|
2016-02-21 01:37:50 +13:00
|
|
|
Copyright (C) 2008-2016 Robin Stuart <rstuart114@gmail.com>
|
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.
|
2016-02-21 01:37:50 +13:00
|
|
|
*/
|
2008-07-14 09:15:55 +12:00
|
|
|
|
|
|
|
#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"
|
|
|
|
|
2010-06-13 23:03:40 +12:00
|
|
|
#ifdef _MSC_VER
|
2016-02-21 01:37:50 +13:00
|
|
|
#include <malloc.h>
|
2010-06-13 23:03:40 +12:00
|
|
|
#endif
|
|
|
|
|
2016-02-21 01:37:50 +13:00
|
|
|
/* Print list of supported symbologies */
|
2008-09-27 06:01:20 +12:00
|
|
|
void types(void) {
|
2016-08-25 06:37:49 +12:00
|
|
|
printf( " 1: Code 11 52: PZN 92: Aztec Code\n"
|
|
|
|
" 2: Standard 2of5 53: Pharma Two-Track 93: DAFT Code\n"
|
|
|
|
" 3: Interleaved 2of5 55: PDF417 97: Micro QR Code\n"
|
|
|
|
" 4: IATA 2of5 56: PDF417 Trunc 98: HIBC Code 128\n"
|
|
|
|
" 6: Data Logic 57: Maxicode 99: HIBC Code 39\n"
|
|
|
|
" 7: Industrial 2of5 58: QR Code 102: HIBC Data Matrix\n"
|
|
|
|
" 8: Code 39 60: Code 128-B 104: HIBC QR Code\n"
|
|
|
|
" 9: Extended Code 39 63: AP Standard Customer 106: HIBC PDF417\n"
|
|
|
|
"13: EAN 66: AP Reply Paid 108: HIBC MicroPDF417\n"
|
2016-08-26 23:34:14 +12:00
|
|
|
"16: GS1-128 67: AP Routing 110: HIBC Codablock-F\n"
|
|
|
|
"18: Codabar 68: AP Redirection 112: HIBC Aztec Code\n"
|
|
|
|
"20: Code 128 69: ISBN 115: DotCode\n"
|
|
|
|
"21: Leitcode 70: RM4SCC 116: Han Xin Code\n"
|
|
|
|
"22: Identcode 71: Data Matrix 128: Aztec Runes\n"
|
|
|
|
"23: Code 16k 72: EAN-14 129: Code 32\n"
|
2016-09-17 22:39:01 +12:00
|
|
|
"24: Code 49 74: Codablock-F 130: Comp EAN\n"
|
2016-08-26 23:34:14 +12:00
|
|
|
"25: Code 93 75: NVE-18 131: Comp GS1-128\n"
|
|
|
|
"28: Flattermarken 76: Japanese Post 132: Comp DataBar Omni\n"
|
|
|
|
"29: GS1 DataBar Omni 77: Korea Post 133: Comp DataBar Ltd\n"
|
|
|
|
"30: GS1 DataBar Ltd 79: GS1 DataBar Stack 134: Comp DataBar ExpOm\n"
|
|
|
|
"31: GS1 DataBar ExpOm 80: GS1 DataBar Stack Omni 135: Comp UPC-A\n"
|
|
|
|
"32: Telepen Alpha 81: GS1 DataBar ESO 136: Comp UPC-E\n"
|
|
|
|
"34: UPC-A 82: Planet 137: Comp DataBar Stack\n"
|
|
|
|
"37: UPC-E 84: MicroPDF 138: Comp DataBar Stack Omni\n"
|
|
|
|
"40: Postnet 85: USPS OneCode 139: Comp DataBar ESO\n"
|
|
|
|
"47: MSI Plessey 86: UK Plessey 140: Channel Code\n"
|
|
|
|
"49: FIM 87: Telepen Numeric 141: Code One\n"
|
|
|
|
"50: Logmars 89: ITF-14 142: Grid Matrix\n"
|
2016-08-25 06:37:49 +12:00
|
|
|
"51: Pharma One-Track 90: KIX Code\n"
|
2016-02-21 01:37:50 +13:00
|
|
|
);
|
2008-09-27 06:01:20 +12:00
|
|
|
}
|
|
|
|
|
2016-02-21 01:37:50 +13:00
|
|
|
/* Output usage information */
|
|
|
|
void usage(void) {
|
|
|
|
printf( "Zint version %s\n"
|
2016-08-16 23:43:41 +12:00
|
|
|
"Encode input data in a barcode and save as a PNG, BMP, GIF, PCX, EPS or SVG file.\n\n"
|
2016-02-21 01:37:50 +13:00
|
|
|
" -h, --help Display this message.\n"
|
|
|
|
" -t, --types Display table of barcode types\n"
|
2016-08-16 23:43:41 +12:00
|
|
|
" -e, --ecinos Display table of ECI character encodings\n"
|
2016-02-21 01:37:50 +13:00
|
|
|
" -i, --input=FILE Read data from FILE.\n"
|
|
|
|
" -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"
|
|
|
|
" --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"
|
|
|
|
" --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"
|
2016-06-20 01:14:30 +12:00
|
|
|
" --cmyk Convert to CMYK colour space for EPS\n"
|
2016-02-21 01:37:50 +13:00
|
|
|
" --scale=NUMBER Adjust size of output image.\n"
|
|
|
|
" --directpng Send PNG output to stdout\n"
|
|
|
|
" --directeps Send EPS output to stdout\n"
|
|
|
|
" --directsvg Send SVG output to stdout\n"
|
|
|
|
" --dump Dump hexadecimal representation to stdout\n"
|
|
|
|
" --rotate=NUMBER Rotate symbol (PNG output only).\n"
|
2016-09-01 02:29:21 +12:00
|
|
|
" --cols=NUMBER (PDF417, Codablock F) Number of columns.\n"
|
|
|
|
" --rows=NUMBER (Codablock F) Number of rows.\n"
|
2016-08-25 06:37:49 +12:00
|
|
|
" --vers=NUMBER (QR Code or Han Xin) Version\n"
|
2016-02-21 01:37:50 +13:00
|
|
|
" --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"
|
|
|
|
" --gs1 Treat input as GS1 data\n"
|
|
|
|
" --binary Treat input as Binary data\n"
|
|
|
|
" --notext Remove human readable text\n"
|
|
|
|
" --square Force Data Matrix symbols to be square\n"
|
2016-02-28 09:26:52 +13:00
|
|
|
" --dmre Allow Data Matrix Rectangular Extended\n"
|
2016-09-19 01:09:58 +12:00
|
|
|
" --init Create reader initialisation/programming symbol\n"
|
2016-02-21 01:37:50 +13:00
|
|
|
" --smalltext Use half-size text in PNG images\n"
|
2016-06-19 23:32:49 +12:00
|
|
|
" --boldtext Use bold text in PNG images\n"
|
2016-02-21 01:37:50 +13:00
|
|
|
" --batch Treat each line of input as a separate data set\n"
|
2016-07-12 23:00:57 +12:00
|
|
|
" --mirror Use batch data to determine filename (PNG output)\n"
|
|
|
|
" --mirroreps Use batch data to determine filename (EPS output)\n"
|
|
|
|
" --mirrorsvg Use batch data to determine filename (SVG output)\n"
|
2016-08-16 23:43:41 +12:00
|
|
|
" --eci=NUMBER Set the ECI mode for raw data\n"
|
2016-09-19 01:09:58 +12:00
|
|
|
" --dotty Use dots instead of squares for matrix symbols\n"
|
|
|
|
" --dotsize=NUMBER Set radius of dots in dotty mode\n"
|
2016-02-21 01:37:50 +13:00
|
|
|
, ZINT_VERSION);
|
2008-07-14 09:15:55 +12:00
|
|
|
}
|
|
|
|
|
2016-08-16 23:43:41 +12:00
|
|
|
/* Display supported ECI codes */
|
|
|
|
void show_eci(void) {
|
|
|
|
printf( " 3: ISO-8859-1 - Latin alphabet No. 1 (default)\n"
|
|
|
|
" 4: ISO-8859-2 - Latin alphabet No. 2\n"
|
|
|
|
" 5: ISO-8859-3 - Latin alphabet No. 3\n"
|
|
|
|
" 6: ISO-8859-4 - Latin alphabet No. 4\n"
|
|
|
|
" 7: ISO-8859-5 - Latin/Cyrillic alphabet\n"
|
|
|
|
" 8: ISO-8859-6 - Latin/Arabic alphabet\n"
|
|
|
|
" 9: ISO-8859-7 - Latin/Greek alphabet\n"
|
|
|
|
"10: ISO-8859-8 - Latin/Hebrew alphabet\n"
|
|
|
|
"11: ISO-8859-9 - Latin alphabet No. 5\n"
|
|
|
|
"12: ISO-8859-10 - Latin alphabet No. 6\n"
|
|
|
|
"13: ISO-8859-11 - Latin/Thai alphabet\n"
|
|
|
|
"15: ISO-8859-13 - Latin alphabet No. 7\n"
|
|
|
|
"16: ISO-8859-14 - Latin alphabet No. 8 (Celtic)\n"
|
|
|
|
"17: ISO-8859-15 - Latin alphabet No. 9\n"
|
|
|
|
"18: ISO-8859-16 - Latin alphabet No. 10\n"
|
|
|
|
"21: Windows-1250\n"
|
|
|
|
"22: Windows-1251\n"
|
|
|
|
"23: Windows-1252\n"
|
|
|
|
"24: Windows-1256\n"
|
|
|
|
"26: Unicode (UTF-8)\n"
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-02-21 01:37:50 +13:00
|
|
|
/* Verifies that a string only uses valid characters */
|
|
|
|
int validator(char test_string[], char source[]) {
|
|
|
|
unsigned int i, j, latch;
|
2008-10-01 04:13:35 +13:00
|
|
|
|
2016-02-21 01:37:50 +13:00
|
|
|
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 ZINT_ERROR_INVALID_DATA;
|
|
|
|
}
|
|
|
|
}
|
2012-12-31 02:55:05 +13:00
|
|
|
|
2016-02-21 01:37:50 +13:00
|
|
|
return 0;
|
2008-10-01 04:13:35 +13:00
|
|
|
}
|
|
|
|
|
2016-02-21 01:37:50 +13:00
|
|
|
int escape_char_process(struct zint_symbol *my_symbol, unsigned char input_string[], int length) {
|
|
|
|
int error_number;
|
|
|
|
int i, j;
|
|
|
|
|
2010-06-13 23:03:40 +12:00
|
|
|
#ifndef _MSC_VER
|
2016-02-21 01:37:50 +13:00
|
|
|
unsigned char escaped_string[length + 1];
|
2010-06-13 23:03:40 +12:00
|
|
|
#else
|
2016-02-21 01:37:50 +13:00
|
|
|
unsigned char* escaped_string = (unsigned char*) _alloca(length + 1);
|
2010-06-13 23:03:40 +12:00
|
|
|
#endif
|
|
|
|
|
2016-02-21 01:37:50 +13:00
|
|
|
i = 0;
|
|
|
|
j = 0;
|
|
|
|
|
|
|
|
do {
|
|
|
|
if (input_string[i] == '\\') {
|
|
|
|
switch (input_string[i + 1]) {
|
|
|
|
case '0': escaped_string[j] = 0x00; /* Null */
|
|
|
|
i += 2;
|
|
|
|
break;
|
|
|
|
case 'E': escaped_string[j] = 0x04; /* End of Transmission */
|
|
|
|
i += 2;
|
|
|
|
break;
|
|
|
|
case 'a': escaped_string[j] = 0x07; /* Bell */
|
|
|
|
i += 2;
|
|
|
|
break;
|
|
|
|
case 'b': escaped_string[j] = 0x08; /* Backspace */
|
|
|
|
i += 2;
|
|
|
|
break;
|
|
|
|
case 't': escaped_string[j] = 0x09; /* Horizontal tab */
|
|
|
|
i += 2;
|
|
|
|
break;
|
|
|
|
case 'n': escaped_string[j] = 0x0a; /* Line feed */
|
|
|
|
i += 2;
|
|
|
|
break;
|
|
|
|
case 'v': escaped_string[j] = 0x0b; /* Vertical tab */
|
|
|
|
i += 2;
|
|
|
|
break;
|
|
|
|
case 'f': escaped_string[j] = 0x0c; /* Form feed */
|
|
|
|
i += 2;
|
|
|
|
break;
|
|
|
|
case 'r': escaped_string[j] = 0x0d; /* Carriage return */
|
|
|
|
i += 2;
|
|
|
|
break;
|
|
|
|
case 'e': escaped_string[j] = 0x1b; /* Escape */
|
|
|
|
i += 2;
|
|
|
|
break;
|
|
|
|
case 'G': escaped_string[j] = 0x1d; /* Group Separator */
|
|
|
|
i += 2;
|
|
|
|
break;
|
|
|
|
case 'R': escaped_string[j] = 0x1e; /* Record Separator */
|
|
|
|
i += 2;
|
|
|
|
break;
|
|
|
|
case '\\': escaped_string[j] = '\\';
|
|
|
|
i += 2;
|
|
|
|
break;
|
|
|
|
default: escaped_string[j] = input_string[i];
|
|
|
|
i++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
escaped_string[j] = input_string[i];
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
j++;
|
|
|
|
} while (i < length);
|
|
|
|
escaped_string[j] = '\0';
|
|
|
|
|
|
|
|
error_number = ZBarcode_Encode(my_symbol, escaped_string, j);
|
|
|
|
|
|
|
|
return error_number;
|
2010-06-13 23:03:40 +12:00
|
|
|
}
|
|
|
|
|
2016-02-21 01:37:50 +13:00
|
|
|
/* Converts an integer value to its hexadecimal character */
|
|
|
|
static char itoc(int source) {
|
|
|
|
if ((source >= 0) && (source <= 9)) {
|
|
|
|
return ('0' + source);
|
|
|
|
} else {
|
|
|
|
return ('A' + (source - 10));
|
|
|
|
}
|
2010-12-24 23:55:08 +13:00
|
|
|
}
|
|
|
|
|
2016-02-21 01:37:50 +13:00
|
|
|
/* Concatinates dest[] with the contents of source[], copying /0 as well */
|
|
|
|
static void concat(char dest[], char source[]) {
|
|
|
|
unsigned int i, j, n;
|
2010-12-24 23:55:08 +13:00
|
|
|
|
2016-02-21 01:37:50 +13:00
|
|
|
j = strlen(dest);
|
|
|
|
n = strlen(source);
|
|
|
|
for (i = 0; i <= n; i++) {
|
|
|
|
dest[i + j] = source[i];
|
|
|
|
}
|
2010-12-24 23:55:08 +13:00
|
|
|
}
|
|
|
|
|
2016-07-12 23:00:57 +12:00
|
|
|
int batch_process(struct zint_symbol *symbol, char *filename, int mirror_mode) {
|
2016-02-21 01:37:50 +13:00
|
|
|
FILE *file;
|
|
|
|
unsigned char buffer[7100];
|
|
|
|
unsigned char character = 0;
|
|
|
|
int posn = 0, error_number = 0, line_count = 1;
|
2016-07-12 23:00:57 +12:00
|
|
|
char output_file[256];
|
2016-02-21 01:37:50 +13:00
|
|
|
char number[12], reverse_number[12];
|
|
|
|
int inpos, local_line_count;
|
|
|
|
char format_string[127], reversed_string[127], format_char;
|
|
|
|
int format_len, i;
|
|
|
|
char adjusted[2];
|
|
|
|
|
|
|
|
memset(buffer, 0, sizeof (unsigned char) * 7100);
|
|
|
|
if (symbol->outfile[0] == '\0') {
|
|
|
|
strcpy(format_string, "~~~~~.png");
|
|
|
|
} else {
|
|
|
|
if (strlen(format_string) < 127) {
|
|
|
|
strcpy(format_string, symbol->outfile);
|
|
|
|
} else {
|
|
|
|
strcpy(symbol->errtxt, "Format string too long");
|
|
|
|
return ZINT_ERROR_INVALID_DATA;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
memset(adjusted, 0, sizeof (char) * 2);
|
|
|
|
|
|
|
|
if (!strcmp(filename, "-")) {
|
|
|
|
file = stdin;
|
|
|
|
} else {
|
|
|
|
file = fopen(filename, "rb");
|
|
|
|
if (!file) {
|
|
|
|
strcpy(symbol->errtxt, "Unable to read input file");
|
|
|
|
return ZINT_ERROR_INVALID_DATA;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
do {
|
|
|
|
int intChar;
|
|
|
|
intChar = fgetc(file);
|
|
|
|
if (intChar == EOF) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
character = (unsigned char) intChar;
|
|
|
|
if (character == '\n') {
|
|
|
|
if (buffer[posn - 1] == '\r') {
|
|
|
|
/* CR+LF - assume Windows formatting and remove CR */
|
|
|
|
posn--;
|
|
|
|
buffer[posn] = '\0';
|
|
|
|
}
|
2016-07-12 23:00:57 +12:00
|
|
|
|
|
|
|
if (mirror_mode == 0) {
|
|
|
|
inpos = 0;
|
|
|
|
local_line_count = line_count;
|
|
|
|
memset(number, 0, sizeof (char) * 12);
|
|
|
|
memset(reverse_number, 0, sizeof (char) * 12);
|
|
|
|
memset(reversed_string, 0, sizeof (char) * 127);
|
|
|
|
memset(output_file, 0, sizeof (char) * 127);
|
|
|
|
do {
|
|
|
|
number[inpos] = itoc(local_line_count % 10);
|
|
|
|
local_line_count /= 10;
|
|
|
|
inpos++;
|
|
|
|
} while (local_line_count > 0);
|
|
|
|
number[inpos] = '\0';
|
|
|
|
|
|
|
|
for (i = 0; i < inpos; i++) {
|
|
|
|
reverse_number[i] = number[inpos - i - 1];
|
|
|
|
}
|
|
|
|
|
|
|
|
format_len = strlen(format_string);
|
|
|
|
for (i = format_len; i > 0; i--) {
|
|
|
|
format_char = format_string[i - 1];
|
|
|
|
|
|
|
|
switch (format_char) {
|
|
|
|
case '#':
|
|
|
|
if (inpos > 0) {
|
|
|
|
adjusted[0] = reverse_number[inpos - 1];
|
|
|
|
inpos--;
|
|
|
|
} else {
|
|
|
|
adjusted[0] = ' ';
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case '~':
|
|
|
|
if (inpos > 0) {
|
|
|
|
adjusted[0] = reverse_number[inpos - 1];
|
|
|
|
inpos--;
|
|
|
|
} else {
|
|
|
|
adjusted[0] = '0';
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case '@':
|
|
|
|
if (inpos > 0) {
|
|
|
|
adjusted[0] = reverse_number[inpos - 1];
|
|
|
|
inpos--;
|
|
|
|
} else {
|
|
|
|
adjusted[0] = '*';
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
adjusted[0] = format_string[i - 1];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
concat(reversed_string, adjusted);
|
|
|
|
}
|
2016-02-21 01:37:50 +13:00
|
|
|
|
2016-07-12 23:00:57 +12:00
|
|
|
for (i = 0; i < format_len; i++) {
|
|
|
|
output_file[i] = reversed_string[format_len - i - 1];
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* Name the output file from the data being processed */
|
|
|
|
for (i = 0; (i < posn && i < 250); i++) {
|
|
|
|
if (buffer[i] < 0x20) {
|
|
|
|
output_file[i] = '_';
|
|
|
|
} else {
|
|
|
|
switch (buffer[i]) {
|
|
|
|
case 0x21: // !
|
|
|
|
case 0x22: // "
|
|
|
|
case 0x2a: // *
|
|
|
|
case 0x2f: // /
|
|
|
|
case 0x3a: // :
|
|
|
|
case 0x3c: // <
|
|
|
|
case 0x3e: // >
|
|
|
|
case 0x3f: // ?
|
|
|
|
case 0x7c: // |
|
|
|
|
case 0x7f: // DEL
|
|
|
|
output_file[i] = '_';
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
output_file[i] = buffer[i];
|
2016-02-21 01:37:50 +13:00
|
|
|
}
|
2016-07-12 23:00:57 +12:00
|
|
|
}
|
2016-02-21 01:37:50 +13:00
|
|
|
}
|
2016-07-12 23:00:57 +12:00
|
|
|
|
|
|
|
/* Add file extension */
|
|
|
|
output_file[i] = '.';
|
|
|
|
|
|
|
|
if (mirror_mode == 1) {
|
|
|
|
output_file[i + 1] = 'p';
|
|
|
|
output_file[i + 2] = 'n';
|
|
|
|
output_file[i + 3] = 'g';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mirror_mode == 2) {
|
|
|
|
output_file[i + 1] = 'e';
|
|
|
|
output_file[i + 2] = 'p';
|
|
|
|
output_file[i + 3] = 's';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mirror_mode == 3) {
|
|
|
|
output_file[i + 1] = 's';
|
|
|
|
output_file[i + 2] = 'v';
|
|
|
|
output_file[i + 3] = 'g';
|
|
|
|
}
|
|
|
|
|
|
|
|
output_file[i + 4] = '\0';
|
2016-02-21 01:37:50 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
strcpy(symbol->outfile, output_file);
|
|
|
|
error_number = ZBarcode_Encode_and_Print(symbol, buffer, posn, 0);
|
|
|
|
if (error_number != 0) {
|
|
|
|
fprintf(stderr, "On line %d: %s\n", line_count, symbol->errtxt);
|
|
|
|
fflush(stderr);
|
|
|
|
}
|
|
|
|
ZBarcode_Clear(symbol);
|
|
|
|
memset(buffer, 0, sizeof (unsigned char) * 7100);
|
|
|
|
posn = 0;
|
|
|
|
line_count++;
|
|
|
|
} else {
|
|
|
|
buffer[posn] = character;
|
|
|
|
posn++;
|
|
|
|
}
|
|
|
|
if (posn > 7090) {
|
|
|
|
fprintf(stderr, "On line %d: Input data too long\n", line_count);
|
|
|
|
fflush(stderr);
|
|
|
|
do {
|
|
|
|
character = fgetc(file);
|
|
|
|
} while ((!feof(file)) && (character != '\n'));
|
|
|
|
}
|
|
|
|
} while ((!feof(file)) && (line_count < 2000000000));
|
|
|
|
|
|
|
|
if (character != '\n') {
|
|
|
|
fprintf(stderr, "Warning: No newline at end of file\n");
|
|
|
|
fflush(stderr);
|
|
|
|
}
|
|
|
|
|
|
|
|
fclose(file);
|
|
|
|
return error_number;
|
2010-12-24 23:55:08 +13:00
|
|
|
}
|
|
|
|
|
2016-02-21 01:37:50 +13:00
|
|
|
int main(int argc, char **argv) {
|
|
|
|
struct zint_symbol *my_symbol;
|
|
|
|
int c;
|
|
|
|
int error_number;
|
|
|
|
int rotate_angle;
|
|
|
|
int generated;
|
|
|
|
int batch_mode;
|
2016-07-12 23:00:57 +12:00
|
|
|
int filename_reflects_data;
|
2016-02-21 01:37:50 +13:00
|
|
|
|
|
|
|
error_number = 0;
|
|
|
|
rotate_angle = 0;
|
|
|
|
generated = 0;
|
|
|
|
my_symbol = ZBarcode_Create();
|
|
|
|
my_symbol->input_mode = UNICODE_MODE;
|
|
|
|
batch_mode = 0;
|
2016-07-12 23:00:57 +12:00
|
|
|
filename_reflects_data = 0;
|
2016-02-21 01:37:50 +13:00
|
|
|
|
|
|
|
if (argc == 1) {
|
|
|
|
usage();
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
int option_index = 0;
|
|
|
|
static struct option long_options[] = {
|
|
|
|
{"help", 0, 0, 'h'},
|
|
|
|
{"types", 0, 0, 't'},
|
2016-08-16 23:43:41 +12:00
|
|
|
{"ecinos", 0, 0, 'e'},
|
2016-02-21 01:37:50 +13:00
|
|
|
{"bind", 0, 0, 0},
|
|
|
|
{"box", 0, 0, 0},
|
|
|
|
{"directeps", 0, 0, 0},
|
|
|
|
{"directpng", 0, 0, 0},
|
|
|
|
{"directsvg", 0, 0, 0},
|
|
|
|
{"dump", 0, 0, 0},
|
|
|
|
{"barcode", 1, 0, 'b'},
|
|
|
|
{"height", 1, 0, 0},
|
|
|
|
{"whitesp", 1, 0, 'w'},
|
|
|
|
{"border", 1, 0, 0},
|
|
|
|
{"data", 1, 0, 'd'},
|
|
|
|
{"output", 1, 0, 'o'},
|
|
|
|
{"input", 1, 0, 'i'},
|
|
|
|
{"fg", 1, 0, 0},
|
|
|
|
{"bg", 1, 0, 0},
|
|
|
|
{"cols", 1, 0, 0},
|
2016-09-01 02:29:21 +12:00
|
|
|
{"rows", 1, 0, 0},
|
2016-02-21 01:37:50 +13:00
|
|
|
{"vers", 1, 0, 0},
|
|
|
|
{"rotate", 1, 0, 0},
|
|
|
|
{"secure", 1, 0, 0},
|
|
|
|
{"reverse", 1, 0, 'r'},
|
|
|
|
{"mode", 1, 0, 0},
|
|
|
|
{"primary", 1, 0, 0},
|
|
|
|
{"scale", 1, 0, 0},
|
|
|
|
{"gs1", 0, 0, 0},
|
|
|
|
{"kanji", 0, 0, 0},
|
|
|
|
{"sjis", 0, 0, 0},
|
|
|
|
{"binary", 0, 0, 0},
|
|
|
|
{"notext", 0, 0, 0},
|
|
|
|
{"square", 0, 0, 0},
|
2016-02-28 09:26:52 +13:00
|
|
|
{"dmre", 0, 0, 0},
|
2016-02-21 01:37:50 +13:00
|
|
|
{"init", 0, 0, 0},
|
|
|
|
{"smalltext", 0, 0, 0},
|
2016-06-19 23:32:49 +12:00
|
|
|
{"boldtext", 0, 0, 0},
|
2016-06-20 01:14:30 +12:00
|
|
|
{"cmyk", 0, 0, 0},
|
2016-02-21 01:37:50 +13:00
|
|
|
{"batch", 0, 0, 0},
|
2016-07-12 23:00:57 +12:00
|
|
|
{"mirror", 0, 0, 0},
|
|
|
|
{"mirroreps", 0, 0, 0},
|
|
|
|
{"mirrorsvg", 0, 0, 0},
|
2016-07-13 02:00:25 +12:00
|
|
|
{"dotty", 0, 0, 0},
|
2016-09-19 01:09:58 +12:00
|
|
|
{"dotsize", 1, 0, 0},
|
2016-08-16 23:43:41 +12:00
|
|
|
{"eci", 1, 0, 'e'},
|
2016-02-21 01:37:50 +13:00
|
|
|
{0, 0, 0, 0}
|
|
|
|
};
|
2016-08-16 23:43:41 +12:00
|
|
|
c = getopt_long(argc, argv, "htb:w:d:o:i:rcmpe", long_options, &option_index);
|
2016-02-21 01:37:50 +13:00
|
|
|
if (c == -1) break;
|
|
|
|
|
|
|
|
switch (c) {
|
|
|
|
case 0:
|
|
|
|
if (!strcmp(long_options[option_index].name, "bind")) {
|
|
|
|
my_symbol->output_options += BARCODE_BIND;
|
|
|
|
}
|
|
|
|
if (!strcmp(long_options[option_index].name, "box")) {
|
|
|
|
my_symbol->output_options += BARCODE_BOX;
|
|
|
|
}
|
|
|
|
if (!strcmp(long_options[option_index].name, "init")) {
|
|
|
|
my_symbol->output_options += READER_INIT;
|
|
|
|
}
|
|
|
|
if (!strcmp(long_options[option_index].name, "smalltext")) {
|
|
|
|
my_symbol->output_options += SMALL_TEXT;
|
|
|
|
}
|
2016-06-19 23:32:49 +12:00
|
|
|
if (!strcmp(long_options[option_index].name, "boldtext")) {
|
|
|
|
my_symbol->output_options += BOLD_TEXT;
|
|
|
|
}
|
2016-06-20 01:14:30 +12:00
|
|
|
if (!strcmp(long_options[option_index].name, "cmyk")) {
|
|
|
|
my_symbol->output_options += CMYK_COLOUR;
|
|
|
|
}
|
2016-07-13 02:00:25 +12:00
|
|
|
if (!strcmp(long_options[option_index].name, "dotty")) {
|
|
|
|
my_symbol->output_options += BARCODE_DOTTY_MODE;
|
|
|
|
}
|
2016-02-21 01:37:50 +13:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
if (!strcmp(long_options[option_index].name, "directsvg")) {
|
|
|
|
my_symbol->output_options += BARCODE_STDOUT;
|
|
|
|
strncpy(my_symbol->outfile, "dummy.svg", 10);
|
|
|
|
}
|
|
|
|
if (!strcmp(long_options[option_index].name, "dump")) {
|
|
|
|
my_symbol->output_options += BARCODE_STDOUT;
|
|
|
|
strncpy(my_symbol->outfile, "dummy.txt", 10);
|
|
|
|
}
|
|
|
|
if (!strcmp(long_options[option_index].name, "gs1")) {
|
|
|
|
my_symbol->input_mode = GS1_MODE;
|
|
|
|
}
|
|
|
|
if (!strcmp(long_options[option_index].name, "kanji")) {
|
|
|
|
my_symbol->input_mode = KANJI_MODE;
|
|
|
|
}
|
|
|
|
if (!strcmp(long_options[option_index].name, "sjis")) {
|
|
|
|
my_symbol->input_mode = SJIS_MODE;
|
|
|
|
}
|
|
|
|
if (!strcmp(long_options[option_index].name, "binary")) {
|
|
|
|
my_symbol->input_mode = DATA_MODE;
|
|
|
|
}
|
|
|
|
if (!strcmp(long_options[option_index].name, "fg")) {
|
|
|
|
strncpy(my_symbol->fgcolour, optarg, 7);
|
|
|
|
}
|
|
|
|
if (!strcmp(long_options[option_index].name, "bg")) {
|
|
|
|
strncpy(my_symbol->bgcolour, optarg, 7);
|
|
|
|
}
|
|
|
|
if (!strcmp(long_options[option_index].name, "notext")) {
|
|
|
|
my_symbol->show_hrt = 0;
|
|
|
|
}
|
|
|
|
if (!strcmp(long_options[option_index].name, "square")) {
|
|
|
|
my_symbol->option_3 = DM_SQUARE;
|
|
|
|
}
|
2016-02-28 09:26:52 +13:00
|
|
|
/* Square overwrites DMRE */
|
|
|
|
if (!strcmp(long_options[option_index].name, "dmre")
|
|
|
|
&& my_symbol->option_3 != DM_SQUARE) {
|
|
|
|
my_symbol->option_3 = DM_DMRE;
|
|
|
|
}
|
2016-02-21 01:37:50 +13:00
|
|
|
if (!strcmp(long_options[option_index].name, "scale")) {
|
|
|
|
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");
|
|
|
|
fflush(stderr);
|
|
|
|
my_symbol->scale = 1.0;
|
|
|
|
}
|
|
|
|
}
|
2016-09-19 01:09:58 +12:00
|
|
|
if (!strcmp(long_options[option_index].name, "dotsize")) {
|
|
|
|
my_symbol->dot_size = (float) (atof(optarg));
|
|
|
|
if (my_symbol->dot_size < 0.01) {
|
|
|
|
/* Zero and negative values are not permitted */
|
|
|
|
fprintf(stderr, "Invalid dot radius value\n");
|
|
|
|
fflush(stderr);
|
|
|
|
my_symbol->dot_size = 4.0 / 5.0;
|
|
|
|
}
|
|
|
|
}
|
2016-02-21 01:37:50 +13:00
|
|
|
if (!strcmp(long_options[option_index].name, "border")) {
|
|
|
|
error_number = validator(NESET, optarg);
|
|
|
|
if (error_number == ZINT_ERROR_INVALID_DATA) {
|
|
|
|
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");
|
|
|
|
fflush(stderr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!strcmp(long_options[option_index].name, "height")) {
|
|
|
|
error_number = validator(NESET, optarg);
|
|
|
|
if (error_number == ZINT_ERROR_INVALID_DATA) {
|
|
|
|
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");
|
|
|
|
fflush(stderr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!strcmp(long_options[option_index].name, "cols")) {
|
2016-09-01 02:29:21 +12:00
|
|
|
if ((atoi(optarg) >= 6) && (atoi(optarg) <= 66)) {
|
2016-02-21 01:37:50 +13:00
|
|
|
my_symbol->option_2 = atoi(optarg);
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "Number of columns out of range\n");
|
|
|
|
fflush(stderr);
|
|
|
|
}
|
|
|
|
}
|
2016-09-01 02:29:21 +12:00
|
|
|
if (!strcmp(long_options[option_index].name, "rows")) {
|
|
|
|
if ((atoi(optarg) >= 1) && (atoi(optarg) <= 44)) {
|
|
|
|
my_symbol->option_1 = atoi(optarg);
|
|
|
|
} else {
|
2016-09-19 01:09:58 +12:00
|
|
|
fprintf(stderr, "Number of rows out of range\n");
|
2016-09-01 02:29:21 +12:00
|
|
|
fflush(stderr);
|
|
|
|
}
|
|
|
|
}
|
2016-02-21 01:37:50 +13:00
|
|
|
if (!strcmp(long_options[option_index].name, "vers")) {
|
2016-08-25 06:37:49 +12:00
|
|
|
if ((atoi(optarg) >= 1) && (atoi(optarg) <= 84)) {
|
2016-02-21 01:37:50 +13:00
|
|
|
my_symbol->option_2 = atoi(optarg);
|
|
|
|
} else {
|
2016-08-25 06:37:49 +12:00
|
|
|
fprintf(stderr, "Invalid Version\n");
|
2016-02-21 01:37:50 +13:00
|
|
|
fflush(stderr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!strcmp(long_options[option_index].name, "secure")) {
|
|
|
|
if ((atoi(optarg) >= 1) && (atoi(optarg) <= 8)) {
|
|
|
|
my_symbol->option_1 = atoi(optarg);
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "ECC level out of range\n");
|
|
|
|
fflush(stderr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!strcmp(long_options[option_index].name, "primary")) {
|
|
|
|
if (strlen(optarg) <= 90) {
|
|
|
|
strcpy(my_symbol->primary, optarg);
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "Primary data string too long");
|
|
|
|
fflush(stderr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!strcmp(long_options[option_index].name, "mode")) {
|
|
|
|
if ((optarg[0] >= '0') && (optarg[0] <= '6')) {
|
|
|
|
my_symbol->option_1 = optarg[0] - '0';
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "Invalid mode\n");
|
|
|
|
fflush(stderr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!strcmp(long_options[option_index].name, "rotate")) {
|
|
|
|
/* Only certain inputs allowed */
|
|
|
|
error_number = validator(NESET, optarg);
|
|
|
|
if (error_number == ZINT_ERROR_INVALID_DATA) {
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!strcmp(long_options[option_index].name, "batch")) {
|
|
|
|
/* Switch to batch processing mode */
|
|
|
|
batch_mode = 1;
|
|
|
|
}
|
2016-07-12 23:00:57 +12:00
|
|
|
if (!strcmp(long_options[option_index].name, "mirror")) {
|
|
|
|
/* Use filenames which reflect content, output to PNG */
|
|
|
|
filename_reflects_data = 1;
|
|
|
|
}
|
|
|
|
if (!strcmp(long_options[option_index].name, "mirroreps")) {
|
|
|
|
/* Use filenames which reflect content, output to EPS */
|
|
|
|
filename_reflects_data = 2;
|
|
|
|
}
|
|
|
|
if (!strcmp(long_options[option_index].name, "mirrorsvg")) {
|
|
|
|
/* Use filenames which reflect content, output to SVG */
|
|
|
|
filename_reflects_data = 3;
|
|
|
|
}
|
2016-08-16 23:43:41 +12:00
|
|
|
if (!strcmp(long_options[option_index].name, "eci")) {
|
|
|
|
if ((atoi(optarg) >= 0) && (atoi(optarg) <= 30)) {
|
|
|
|
my_symbol->eci = atoi(optarg);
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "Invalid ECI code\n");
|
|
|
|
fflush(stderr);
|
|
|
|
}
|
|
|
|
}
|
2016-02-21 01:37:50 +13:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'h':
|
|
|
|
usage();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 't':
|
|
|
|
types();
|
|
|
|
break;
|
2016-08-16 23:43:41 +12:00
|
|
|
|
|
|
|
case 'e':
|
|
|
|
show_eci();
|
|
|
|
break;
|
2016-02-21 01:37:50 +13:00
|
|
|
|
|
|
|
case 'b':
|
|
|
|
error_number = validator(NESET, optarg);
|
|
|
|
if (error_number == ZINT_ERROR_INVALID_DATA) {
|
|
|
|
fprintf(stderr, "Invalid barcode type\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
my_symbol->symbology = atoi(optarg);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'w':
|
|
|
|
error_number = validator(NESET, optarg);
|
|
|
|
if (error_number == ZINT_ERROR_INVALID_DATA) {
|
|
|
|
fprintf(stderr, "Invalid whitespace value\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
if ((atoi(optarg) >= 0) && (atoi(optarg) <= 1000)) {
|
|
|
|
my_symbol->whitespace_width = atoi(optarg);
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "Whitespace value out of range");
|
|
|
|
fflush(stderr);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'd': /* we have some data! */
|
|
|
|
if (batch_mode == 0) {
|
|
|
|
error_number = escape_char_process(my_symbol, (unsigned char*) optarg, strlen(optarg));
|
|
|
|
if (error_number == 0) {
|
|
|
|
error_number = ZBarcode_Print(my_symbol, rotate_angle);
|
|
|
|
}
|
|
|
|
generated = 1;
|
|
|
|
if (error_number != 0) {
|
|
|
|
fprintf(stderr, "%s\n", my_symbol->errtxt);
|
|
|
|
fflush(stderr);
|
|
|
|
ZBarcode_Delete(my_symbol);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "Cannot define data in batch mode");
|
|
|
|
fflush(stderr);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'i': /* Take data from file */
|
|
|
|
if (batch_mode == 0) {
|
|
|
|
error_number = ZBarcode_Encode_File(my_symbol, optarg);
|
|
|
|
if (error_number == 0) {
|
|
|
|
error_number = ZBarcode_Print(my_symbol, rotate_angle);
|
|
|
|
}
|
|
|
|
generated = 1;
|
|
|
|
if (error_number != 0) {
|
|
|
|
fprintf(stderr, "%s\n", my_symbol->errtxt);
|
|
|
|
fflush(stderr);
|
|
|
|
ZBarcode_Delete(my_symbol);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* Take each line of text as a separate data set */
|
2016-07-12 23:00:57 +12:00
|
|
|
error_number = batch_process(my_symbol, optarg, filename_reflects_data);
|
2016-02-21 01:37:50 +13:00
|
|
|
generated = 1;
|
|
|
|
if (error_number != 0) {
|
|
|
|
fprintf(stderr, "%s\n", my_symbol->errtxt);
|
|
|
|
fflush(stderr);
|
|
|
|
ZBarcode_Delete(my_symbol);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
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:
|
|
|
|
fprintf(stderr, "?? getopt error 0%o\n", c);
|
|
|
|
fflush(stderr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (optind < argc) {
|
|
|
|
fprintf(stderr, "Invalid option ");
|
|
|
|
while (optind < argc)
|
|
|
|
fprintf(stderr, "%s", argv[optind++]);
|
|
|
|
fprintf(stderr, "\n");
|
|
|
|
fflush(stderr);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (generated == 0) {
|
|
|
|
fprintf(stderr, "error: No data received, no symbol generated\n");
|
|
|
|
fflush(stderr);
|
|
|
|
}
|
|
|
|
|
|
|
|
ZBarcode_Delete(my_symbol);
|
|
|
|
|
|
|
|
return error_number;
|
2008-07-14 09:15:55 +12:00
|
|
|
}
|