mirror of
https://git.code.sf.net/p/zint/code
synced 2025-05-09 13:41:59 -04:00

README: mention "manual.html" tools/update_version.php: update for "zint.h" version, README year test suite: fix some clang-tidy-20 warnings
939 lines
40 KiB
C
939 lines
40 KiB
C
/* code128.c - Handles Code 128 and derivatives */
|
|
/*
|
|
libzint - the open source barcode library
|
|
Copyright (C) 2008-2024 Robin Stuart <rstuart114@gmail.com>
|
|
Bugfixes thanks to Christian Sakowski and BogDan Vatra
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
modification, are permitted provided that the following conditions
|
|
are met:
|
|
|
|
1. Redistributions of source code must retain the above copyright
|
|
notice, this list of conditions and the following disclaimer.
|
|
2. Redistributions in binary form must reproduce the above copyright
|
|
notice, this list of conditions and the following disclaimer in the
|
|
documentation and/or other materials provided with the distribution.
|
|
3. Neither the name of the project nor the names of its contributors
|
|
may be used to endorse or promote products derived from this software
|
|
without specific prior written permission.
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
|
|
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
SUCH DAMAGE.
|
|
*/
|
|
/* SPDX-License-Identifier: BSD-3-Clause */
|
|
|
|
#include <assert.h>
|
|
#include <stdio.h>
|
|
#include "common.h"
|
|
#include "code128.h"
|
|
#include "gs1.h"
|
|
|
|
#define C128_SYMBOL_MAX 102 /* 102 * 10 + 10 (check digit) + 13 (Stop) = 1043 */
|
|
#define C128_SYMBOL_MAX_S "102" /* String version of above */
|
|
|
|
#define C128_VALUES_MAX (C128_SYMBOL_MAX + 2) /* Allow for debug/test check digit and Stop */
|
|
|
|
/* Code 128 tables checked against ISO/IEC 15417:2007 */
|
|
|
|
/* Code 128 character encodation - Table 1 (with final CODE16K-only character in place of Stop character) */
|
|
INTERNAL_DATA const char C128Table[107][6] = { /* Used by CODABLOCKF and CODE16K also */
|
|
{'2','1','2','2','2','2'}, {'2','2','2','1','2','2'}, {'2','2','2','2','2','1'}, {'1','2','1','2','2','3'},
|
|
{'1','2','1','3','2','2'}, {'1','3','1','2','2','2'}, {'1','2','2','2','1','3'}, {'1','2','2','3','1','2'},
|
|
{'1','3','2','2','1','2'}, {'2','2','1','2','1','3'}, {'2','2','1','3','1','2'}, {'2','3','1','2','1','2'},
|
|
{'1','1','2','2','3','2'}, {'1','2','2','1','3','2'}, {'1','2','2','2','3','1'}, {'1','1','3','2','2','2'},
|
|
{'1','2','3','1','2','2'}, {'1','2','3','2','2','1'}, {'2','2','3','2','1','1'}, {'2','2','1','1','3','2'},
|
|
{'2','2','1','2','3','1'}, {'2','1','3','2','1','2'}, {'2','2','3','1','1','2'}, {'3','1','2','1','3','1'},
|
|
{'3','1','1','2','2','2'}, {'3','2','1','1','2','2'}, {'3','2','1','2','2','1'}, {'3','1','2','2','1','2'},
|
|
{'3','2','2','1','1','2'}, {'3','2','2','2','1','1'}, {'2','1','2','1','2','3'}, {'2','1','2','3','2','1'},
|
|
{'2','3','2','1','2','1'}, {'1','1','1','3','2','3'}, {'1','3','1','1','2','3'}, {'1','3','1','3','2','1'},
|
|
{'1','1','2','3','1','3'}, {'1','3','2','1','1','3'}, {'1','3','2','3','1','1'}, {'2','1','1','3','1','3'},
|
|
{'2','3','1','1','1','3'}, {'2','3','1','3','1','1'}, {'1','1','2','1','3','3'}, {'1','1','2','3','3','1'},
|
|
{'1','3','2','1','3','1'}, {'1','1','3','1','2','3'}, {'1','1','3','3','2','1'}, {'1','3','3','1','2','1'},
|
|
{'3','1','3','1','2','1'}, {'2','1','1','3','3','1'}, {'2','3','1','1','3','1'}, {'2','1','3','1','1','3'},
|
|
{'2','1','3','3','1','1'}, {'2','1','3','1','3','1'}, {'3','1','1','1','2','3'}, {'3','1','1','3','2','1'},
|
|
{'3','3','1','1','2','1'}, {'3','1','2','1','1','3'}, {'3','1','2','3','1','1'}, {'3','3','2','1','1','1'},
|
|
{'3','1','4','1','1','1'}, {'2','2','1','4','1','1'}, {'4','3','1','1','1','1'}, {'1','1','1','2','2','4'},
|
|
{'1','1','1','4','2','2'}, {'1','2','1','1','2','4'}, {'1','2','1','4','2','1'}, {'1','4','1','1','2','2'},
|
|
{'1','4','1','2','2','1'}, {'1','1','2','2','1','4'}, {'1','1','2','4','1','2'}, {'1','2','2','1','1','4'},
|
|
{'1','2','2','4','1','1'}, {'1','4','2','1','1','2'}, {'1','4','2','2','1','1'}, {'2','4','1','2','1','1'},
|
|
{'2','2','1','1','1','4'}, {'4','1','3','1','1','1'}, {'2','4','1','1','1','2'}, {'1','3','4','1','1','1'},
|
|
{'1','1','1','2','4','2'}, {'1','2','1','1','4','2'}, {'1','2','1','2','4','1'}, {'1','1','4','2','1','2'},
|
|
{'1','2','4','1','1','2'}, {'1','2','4','2','1','1'}, {'4','1','1','2','1','2'}, {'4','2','1','1','1','2'},
|
|
{'4','2','1','2','1','1'}, {'2','1','2','1','4','1'}, {'2','1','4','1','2','1'}, {'4','1','2','1','2','1'},
|
|
{'1','1','1','1','4','3'}, {'1','1','1','3','4','1'}, {'1','3','1','1','4','1'}, {'1','1','4','1','1','3'},
|
|
{'1','1','4','3','1','1'}, {'4','1','1','1','1','3'}, {'4','1','1','3','1','1'}, {'1','1','3','1','4','1'},
|
|
{'1','1','4','1','3','1'}, {'3','1','1','1','4','1'}, {'4','1','1','1','3','1'}, {'2','1','1','4','1','2'},
|
|
{'2','1','1','2','1','4'}, {'2','1','1','2','3','2'}, {/* Only used by CODE16K */ '2','1','1','1','3','3'}
|
|
};
|
|
|
|
/* Code Set states */
|
|
#define C128_A0 1
|
|
#define C128_B0 2
|
|
#define C128_A1 3
|
|
#define C128_B1 4
|
|
#define C128_C0 5
|
|
#define C128_C1 6
|
|
#define C128_STATES 7
|
|
|
|
/* Helpers to characterize Code Set states */
|
|
#define C128_A0B0(cset) ((cset) <= C128_B0)
|
|
#define C128_C0C1(cset) ((cset) >= C128_C0)
|
|
#define C128_A0A1(cset) ((cset) & 1) /* Assuming !C */
|
|
#define C128_AB(cset) ((cset) >> ((cset) > C128_B0)) /* Assuming !C */
|
|
|
|
/* Code Set states are named A0, B0, A1, B1, C0 and C1. A, B, and C are the Code 128 Code Sets.
|
|
0 is for ASCII and 1 is for extended ASCII range */
|
|
static const char c128_latch_seq[C128_STATES][C128_STATES][3] = {
|
|
/* Current: A0 B0 A1 B1 C0 C1 Prior */
|
|
{ {0} },
|
|
{ {0}, { 0 }, {100 }, {101,101 }, {100,100,100}, { 99 }, {101,101, 99} }, /* A0 */
|
|
{ {0}, {101 }, { 0 }, {101,101,101}, {100,100 }, { 99 }, {100,100, 99} }, /* B0 */
|
|
{ {0}, {101,101 }, {100,100,100}, { 0 }, {100 }, {101,101, 99}, { 99 } }, /* A1 */
|
|
{ {0}, {101,101,101}, {100,100 }, {101 }, { 0 }, {100,100, 99}, { 99 } }, /* B1 */
|
|
{ {0}, {101 }, {100 }, {101,101,101}, {100,100,100}, { 0 }, { 0 } }, /* C0 */
|
|
{ {0}, {101,101,101}, {100,100,100}, {101 }, {100 }, { 0 }, { 0 } }, /* C1 */
|
|
};
|
|
static const char c128_latch_len[C128_STATES][C128_STATES] = { /* Lengths of above */
|
|
/* Current: A0 B0 A1 B1 C0 C1 Prior */
|
|
{ 0 },
|
|
{ 0, 0, 1, 2, 3, 1, 3 }, /* A0 */
|
|
{ 0, 1, 0, 3, 2, 1, 3 }, /* B0 */
|
|
{ 0, 2, 3, 0, 1, 3, 1 }, /* A1 */
|
|
{ 0, 3, 2, 1, 0, 3, 1 }, /* B1 */
|
|
{ 0, 1, 1, 3, 3, 0, 64 }, /* C0 */
|
|
{ 0, 3, 3, 1, 1, 64, 0 }, /* C1 */
|
|
};
|
|
|
|
/* Start sequences for normal, GS1_MODE and READER_INIT (mutually exclusive) */
|
|
static const char c128_start_latch_seq[3][C128_STATES][4] = {
|
|
/* A0 B0 A1 B1 C0 C1 (not used) */
|
|
{ {0}, {103 }, {104 }, {103,101,101 }, {104,100,100 }, {105 } }, /* Normal */
|
|
{ {0}, {103,102}, {104,102}, {103,102,101,101}, {104,102,100,100}, {105,102 } }, /* GS1_MODE */
|
|
{ {0}, {103, 96}, {104, 96}, {103, 96,101,101}, {104, 96,100,100}, {104, 96,99} }, /* READER_INIT */
|
|
};
|
|
static const char c128_start_latch_len[3][C128_STATES] = { /* Lengths of above */
|
|
/* A0 B0 A1 B1 C0 C1 (not used) */
|
|
{ 0, 1, 1, 3, 3, 1 }, /* Normal */
|
|
{ 0, 2, 2, 4, 4, 2 }, /* GS1_MODE */
|
|
{ 0, 2, 2, 4, 4, 3 }, /* READER_INIT */
|
|
};
|
|
|
|
/* Output cost (length) for Code Sets A/B */
|
|
static int c128_cost_ab(const int cset, const unsigned char ch, int *p_mode) {
|
|
const unsigned char mask_0x60 = ch & 0x60; /* 0 for (ch & 0x7F) < 32, 0x60 for (ch & 0x7F) >= 96 */
|
|
const int ga = C128_A0A1(cset);
|
|
int cost = 1;
|
|
|
|
assert(!C128_C0C1(cset));
|
|
|
|
/* SHIFT */
|
|
if ((ga && mask_0x60 == 0x60) || (!ga && !mask_0x60)) { /* A and (ch & 0x7F) >= 96, or B and (ch & 0x7F) < 32 */
|
|
cost++;
|
|
*p_mode |= 0x10;
|
|
}
|
|
|
|
/* FNC4 */
|
|
if (C128_A0B0(cset) == (ch >= 128)) { /* If A0/B0 and extended ASCII, or A1/B1 and ASCII */
|
|
cost++;
|
|
*p_mode |= 0x20;
|
|
}
|
|
|
|
return cost;
|
|
}
|
|
|
|
/* Calculate the cost of encoding from `i` starting in Code Set `prior_cset` (see `c128_set_values()` below) */
|
|
static int c128_cost(const unsigned char source[], const int length, const int i, const int prior_cset,
|
|
const int start_idx, const char priority[C128_STATES], const char fncs[C128_MAX],
|
|
const char manuals[C128_MAX], short (*costs)[C128_STATES], char (*modes)[C128_STATES]) {
|
|
|
|
const unsigned char ch = source[i];
|
|
const char *const latch_len = prior_cset == 0 ? c128_start_latch_len[start_idx] : c128_latch_len[prior_cset];
|
|
const int is_fnc1 = ch == '\x1D' && fncs[i];
|
|
const int can_c = is_fnc1 || (z_isdigit(ch) && z_isdigit(source[i + 1])); /* Assumes source NUL-terminated */
|
|
const int manual_c_fail = !can_c && manuals[i] == C128_C0; /* C requested but not doable */
|
|
int min_cost = 999999; /* Max possible cost less than 2 * 256 */
|
|
int min_mode = 0;
|
|
int p;
|
|
|
|
for (p = 0; priority[p]; p++) {
|
|
const int cset = priority[p];
|
|
if (C128_C0C1(cset)) {
|
|
if (can_c && (!manuals[i] || manuals[i] == C128_C0)) {
|
|
const int incr = 2 - is_fnc1;
|
|
int mode = prior_cset;
|
|
int cost = 1;
|
|
if (prior_cset != cset) {
|
|
cost += latch_len[cset];
|
|
mode = cset;
|
|
}
|
|
if (i + incr < length) {
|
|
/* Check if memoized */
|
|
if (costs[i + incr][cset]) {
|
|
cost += costs[i + incr][cset];
|
|
} else {
|
|
cost += c128_cost(source, length, i + incr, cset, 0 /*start_idx*/, priority, fncs, manuals,
|
|
costs, modes);
|
|
}
|
|
}
|
|
if (cost < min_cost) {
|
|
min_cost = cost;
|
|
min_mode = mode;
|
|
}
|
|
}
|
|
} else {
|
|
if (!manuals[i] || manuals[i] == C128_AB(cset) || manual_c_fail) {
|
|
int mode = cset;
|
|
int cost = is_fnc1 ? 1 : c128_cost_ab(cset, ch, &mode);
|
|
if (prior_cset != cset) {
|
|
cost += latch_len[cset];
|
|
}
|
|
if (i + 1 < length) {
|
|
/* Check if memoized */
|
|
if (costs[i + 1][cset]) {
|
|
cost += costs[i + 1][cset];
|
|
} else {
|
|
cost += c128_cost(source, length, i + 1, cset, 0 /*start_idx*/, priority, fncs, manuals,
|
|
costs, modes);
|
|
}
|
|
}
|
|
if (cost < min_cost) {
|
|
min_cost = cost;
|
|
min_mode = mode;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
assert(min_cost != 999999);
|
|
|
|
costs[i][prior_cset] = min_cost;
|
|
modes[i][prior_cset] = min_mode;
|
|
|
|
return min_cost;
|
|
}
|
|
|
|
/* Minimal encoding using Divide-And-Conquer with Memoization by Alex Geller - see
|
|
https://github.com/zxing/zxing/commit/94fb277607003c070ffd1413754a782f3f87cbcd
|
|
Many ideas, especially enabling extended ASCII, taken from BWIPP minimal encoding by Bue Jensen - see
|
|
https://github.com/bwipp/postscriptbarcode/pull/278 */
|
|
static int c128_set_values(const unsigned char source[], const int length, const int start_idx,
|
|
const char priority[C128_STATES], const char fncs[C128_MAX], const char manuals[C128_MAX],
|
|
int values[C128_VALUES_MAX], int *p_final_cset) {
|
|
|
|
short (*costs)[C128_STATES] = (short (*)[C128_STATES]) z_alloca(sizeof(*costs) * length);
|
|
char (*modes)[C128_STATES] = (char (*)[C128_STATES]) z_alloca(sizeof(*modes) * length);
|
|
int glyph_count = 0;
|
|
int cset = 0;
|
|
int i;
|
|
|
|
memset(costs, 0, sizeof(*costs) * length);
|
|
|
|
c128_cost(source, length, 0 /*i*/, 0 /*prior_cset*/, start_idx, priority, fncs, manuals, costs, modes);
|
|
|
|
if (costs[0][0] > C128_SYMBOL_MAX) { /* Total minimal cost (glyph count) */
|
|
return costs[0][0];
|
|
}
|
|
|
|
/* Output codewords into `values` */
|
|
for (i = 0; i < length; i++) {
|
|
const unsigned char ch = source[i];
|
|
const int is_fnc1 = ch == '\x1D' && fncs[i];
|
|
const int mode = modes[i][cset];
|
|
const int prior_cset = cset;
|
|
|
|
cset = mode & 0x0F;
|
|
assert(cset);
|
|
if (cset != prior_cset) {
|
|
int j;
|
|
if (prior_cset == 0) {
|
|
for (j = 0; j < c128_start_latch_len[start_idx][cset]; j++) {
|
|
values[glyph_count++] = c128_start_latch_seq[start_idx][cset][j];
|
|
}
|
|
} else {
|
|
for (j = 0; j < c128_latch_len[prior_cset][cset]; j++) {
|
|
values[glyph_count++] = c128_latch_seq[prior_cset][cset][j];
|
|
}
|
|
}
|
|
}
|
|
if (mode >= 0x30) {
|
|
/* Extended Shift A/B */
|
|
values[glyph_count++] = 100 + C128_A0A1(cset); /* FNC4 */
|
|
values[glyph_count++] = 98; /* SHIFT */
|
|
} else if (mode >= 0x20) {
|
|
/* Extended A/B */
|
|
values[glyph_count++] = 100 + C128_A0A1(cset); /* FNC4 */
|
|
} else if (mode >= 0x10) {
|
|
/* Shift A/B */
|
|
values[glyph_count++] = 98; /* SHIFT */
|
|
}
|
|
if (is_fnc1) {
|
|
values[glyph_count++] = 102; /* FNC1 */
|
|
} else if (C128_C0C1(cset)) {
|
|
assert(i + 1 < length); /* Guaranteed by algorithm */
|
|
values[glyph_count++] = (ch - '0') * 10 + source[++i] - '0';
|
|
} else {
|
|
/* (ch & 0x7F) < 32 ? (ch & 0x7F) + 64 : (ch & 0x7F) - 32 */
|
|
values[glyph_count++] = (ch & 0x7F) + 96 * !(ch & 0x60) - 32;
|
|
}
|
|
}
|
|
assert(glyph_count == costs[0][0]);
|
|
|
|
if (p_final_cset) {
|
|
*p_final_cset = cset;
|
|
}
|
|
|
|
return glyph_count;
|
|
}
|
|
|
|
/* Helper to write out symbol, calculating check digit */
|
|
static void c128_expand(struct zint_symbol *symbol, int values[C128_VALUES_MAX], int glyph_count) {
|
|
char dest[640]; /* (102 + 1 (check digit)) * 6 + 7 (Stop) = 625 */
|
|
char *d = dest;
|
|
int total_sum;
|
|
int i;
|
|
|
|
/* Destination setting and check digit calculation */
|
|
memcpy(d, C128Table[values[0]], 6);
|
|
d += 6;
|
|
total_sum = values[0];
|
|
|
|
for (i = 1; i < glyph_count; i++, d += 6) {
|
|
memcpy(d, C128Table[values[i]], 6);
|
|
total_sum += values[i] * i; /* Note can't overflow as 106 * C128_SYMBOL_MAX * C128_SYMBOL_MAX = 1102824 */
|
|
}
|
|
total_sum %= 103;
|
|
memcpy(d, C128Table[total_sum], 6);
|
|
d += 6;
|
|
values[glyph_count++] = total_sum; /* For debug/test */
|
|
|
|
/* Stop character */
|
|
memcpy(d, "2331112", 7);
|
|
d += 7;
|
|
values[glyph_count++] = 106; /* For debug/test */
|
|
|
|
if (symbol->debug & ZINT_DEBUG_PRINT) {
|
|
fputs("Codewords:", stdout);
|
|
for (i = 0; i < glyph_count; i++) {
|
|
printf(" %d", values[i]);
|
|
}
|
|
printf(" (%d)\n", glyph_count);
|
|
printf("Barspaces: %.*s\n", (int) (d - dest), dest);
|
|
printf("Checksum: %d\n", total_sum);
|
|
}
|
|
#ifdef ZINT_TEST
|
|
if (symbol->debug & ZINT_DEBUG_TEST) {
|
|
debug_test_codeword_dump_int(symbol, values, glyph_count);
|
|
}
|
|
#endif
|
|
|
|
expand(symbol, dest, d - dest);
|
|
}
|
|
|
|
/* Helper to set `priority` array based on flags */
|
|
static void c128_set_priority(char priority[C128_STATES], const int have_a, const int have_b, const int have_c,
|
|
const int have_extended) {
|
|
int i = 0;
|
|
if (have_c) {
|
|
priority[i++] = C128_C0;
|
|
}
|
|
if (have_b || !have_a) {
|
|
priority[i++] = C128_B0;
|
|
}
|
|
if (have_a) {
|
|
priority[i++] = C128_A0;
|
|
}
|
|
if (have_extended) {
|
|
if (have_c) {
|
|
priority[i++] = C128_C1;
|
|
}
|
|
if (have_b || !have_a) {
|
|
priority[i++] = C128_B1;
|
|
}
|
|
if (have_a) {
|
|
priority[i++] = C128_A1;
|
|
}
|
|
}
|
|
priority[i] = 0;
|
|
}
|
|
|
|
/* Handle Code 128, 128AB and HIBC 128 */
|
|
INTERNAL int code128(struct zint_symbol *symbol, unsigned char source[], int length) {
|
|
int i;
|
|
int error_number;
|
|
char manuals[C128_MAX] = {0};
|
|
char fncs[C128_MAX] = {0}; /* Manual FNC1 positions */
|
|
int have_fnc1 = 0; /* Whether have at least 1 manual FNC1 */
|
|
int have_a = 0, have_b = 0, have_c = 0, have_extended = 0;
|
|
char priority[C128_STATES];
|
|
int values[C128_VALUES_MAX] = {0};
|
|
int glyph_count;
|
|
unsigned char src_buf[C128_MAX + 1];
|
|
unsigned char *src = source;
|
|
const int ab_only = symbol->symbology == BARCODE_CODE128AB;
|
|
const int start_idx = (symbol->output_options & READER_INIT) ? 2 : 0;
|
|
|
|
if (length > C128_MAX) {
|
|
/* This only blocks ridiculously long input - the actual length of the
|
|
resulting barcode depends on the type of data, so this is trapped later */
|
|
return errtxtf(ZINT_ERROR_TOO_LONG, symbol, 340, "Input length %d too long (maximum " C128_MAX_S ")", length);
|
|
}
|
|
|
|
/* Detect special Code Set escapes for Code 128 in extra escape mode only */
|
|
if ((symbol->input_mode & EXTRA_ESCAPE_MODE) && symbol->symbology == BARCODE_CODE128) {
|
|
char manual = 0;
|
|
int j = 0;
|
|
for (i = 0; i < length; i++) {
|
|
if (source[i] == '\\' && i + 2 < length && source[i + 1] == '^'
|
|
&& ((source[i + 2] >= '@' && source[i + 2] <= 'C') || source[i + 2] == '1'
|
|
|| source[i + 2] == '^')) {
|
|
if (source[i + 2] == '^') { /* Escape sequence '\^^' */
|
|
manuals[j] = manual;
|
|
src_buf[j++] = source[i++];
|
|
manuals[j] = manual;
|
|
src_buf[j++] = source[i++];
|
|
/* Drop second '^' */
|
|
} else if (source[i + 2] == '1') { /* FNC1 */
|
|
i += 2;
|
|
fncs[j] = have_fnc1 = 1;
|
|
manuals[j] = manual;
|
|
src_buf[j++] = '\x1D'; /* Manual FNC1 dummy */
|
|
} else { /* Manual mode A/B/C/@ */
|
|
i += 2;
|
|
manual = source[i] == 'C' ? C128_C0 : source[i] - '@'; /* Assuming A0 = 1, B0 = 2 */
|
|
}
|
|
} else {
|
|
manuals[j] = manual;
|
|
src_buf[j++] = source[i];
|
|
}
|
|
}
|
|
if (j != length) {
|
|
length = j;
|
|
if (length == 0) {
|
|
return errtxt(ZINT_ERROR_INVALID_DATA, symbol, 842, "No input data");
|
|
}
|
|
src = src_buf;
|
|
src[length] = '\0';
|
|
if (symbol->debug & ZINT_DEBUG_PRINT) {
|
|
fputs("Manuals: ", stdout);
|
|
for (i = 0; i < length; i++) {
|
|
printf("%c", manuals[i] == C128_C0 ? 'C' : '@' + manuals[i]); /* Assuming A0 = 1, B0 = 2 */
|
|
}
|
|
fputc('\n', stdout);
|
|
}
|
|
}
|
|
}
|
|
|
|
/* Classify data to detect which Code Set states are needed */
|
|
if (ab_only) {
|
|
for (i = 0; i < length; i++) {
|
|
const unsigned char ch = src[i];
|
|
const unsigned char mask_0x60 = ch & 0x60; /* 0 for (ch & 0x7F) < 32, 0x60 for (ch & 0x7F) >= 96 */
|
|
have_extended |= ch & 0x80;
|
|
have_a |= !mask_0x60;
|
|
have_b |= mask_0x60 == 0x60;
|
|
}
|
|
} else {
|
|
int prev_digit, digit = 0;
|
|
for (i = 0; i < length; i++) {
|
|
const unsigned char ch = src[i];
|
|
const int is_fnc1 = ch == '\x1D' && fncs[i];
|
|
if (!is_fnc1) {
|
|
const unsigned char mask_0x60 = ch & 0x60; /* 0 for (ch & 0x7F) < 32, 0x60 for (ch & 0x7F) >= 96 */
|
|
const int manual = manuals[i];
|
|
have_extended |= ch & 0x80;
|
|
have_a |= !mask_0x60 || manual == C128_A0;
|
|
have_b |= mask_0x60 == 0x60 || manual == C128_B0;
|
|
prev_digit = digit;
|
|
digit = z_isdigit(ch);
|
|
have_c |= prev_digit && digit;
|
|
}
|
|
}
|
|
}
|
|
c128_set_priority(priority, have_a, have_b, have_c, have_extended);
|
|
|
|
glyph_count = c128_set_values(src, length, start_idx, priority, fncs, manuals, values, NULL /*p_final_cset*/);
|
|
|
|
if (symbol->debug & ZINT_DEBUG_PRINT) {
|
|
printf("Data (%d): %.*s", length, length >= 100 ? 1 : length >= 10 ? 2 : 3, " ");
|
|
debug_print_escape(src, length, NULL);
|
|
printf("\nGlyphs: %d\n", glyph_count);
|
|
}
|
|
|
|
/* Now we know how long the barcode is - stop it from being too long */
|
|
if (glyph_count > C128_SYMBOL_MAX) {
|
|
return errtxtf(ZINT_ERROR_TOO_LONG, symbol, 341,
|
|
"Input too long, requires %d symbol characters (maximum " C128_SYMBOL_MAX_S ")", glyph_count);
|
|
}
|
|
|
|
/* Now we can get on with it! */
|
|
c128_expand(symbol, values, glyph_count);
|
|
|
|
/* ISO/IEC 15417:2007 leaves dimensions/height as application specification */
|
|
|
|
/* HRT */
|
|
if (have_fnc1) {
|
|
/* Remove any manual FNC1 dummies ('\x1D') */
|
|
int j = 0;
|
|
for (i = 0; i < length; i++) {
|
|
if (!fncs[i]) {
|
|
src[j++] = src[i];
|
|
}
|
|
}
|
|
length = j;
|
|
}
|
|
error_number = hrt_cpy_iso8859_1(symbol, src, length);
|
|
|
|
return error_number;
|
|
}
|
|
|
|
/* Handle GS1-128 (formerly known as EAN-128), and composite version if `cc_mode` set */
|
|
INTERNAL int gs1_128_cc(struct zint_symbol *symbol, unsigned char source[], int length, const int cc_mode,
|
|
const int cc_rows) {
|
|
int i;
|
|
int error_number;
|
|
const char manuals[C128_MAX] = {0}; /* Dummy */
|
|
char fncs[C128_MAX]; /* Dummy, set to all 1s */
|
|
char priority[C128_STATES];
|
|
int values[C128_VALUES_MAX] = {0};
|
|
int glyph_count;
|
|
int final_cset;
|
|
int separator_row = 0;
|
|
int reduced_length;
|
|
unsigned char *reduced = (unsigned char *) z_alloca(length + 1);
|
|
|
|
if (length > C128_MAX) {
|
|
/* This only blocks ridiculously long input - the actual length of the
|
|
resulting barcode depends on the type of data, so this is trapped later */
|
|
return errtxtf(ZINT_ERROR_TOO_LONG, symbol, 342, "Input length %d too long (maximum " C128_MAX_S ")", length);
|
|
}
|
|
|
|
/* If part of a composite symbol make room for the separator pattern */
|
|
if (symbol->symbology == BARCODE_GS1_128_CC) {
|
|
separator_row = symbol->rows;
|
|
symbol->row_height[symbol->rows] = 1;
|
|
symbol->rows += 1;
|
|
}
|
|
|
|
error_number = gs1_verify(symbol, source, length, reduced);
|
|
if (error_number >= ZINT_ERROR) {
|
|
return error_number;
|
|
}
|
|
|
|
reduced_length = (int) ustrlen(reduced);
|
|
memset(fncs, 1, reduced_length);
|
|
|
|
/* Control and extended chars not allowed so only have B/C (+FNC1) */
|
|
c128_set_priority(priority, 0 /*have_a*/, 1 /*have_b*/, 1 /*have_c*/, 0 /*have_extended*/);
|
|
|
|
glyph_count = c128_set_values(reduced, reduced_length, 1 /*start_idx*/, priority, fncs, manuals, values,
|
|
&final_cset);
|
|
|
|
if (symbol->debug & ZINT_DEBUG_PRINT) {
|
|
printf("Data (%d): %.*s", reduced_length, reduced_length >= 100 ? 1 : reduced_length >= 10 ? 2 : 3, " ");
|
|
debug_print_escape(reduced, reduced_length, NULL);
|
|
printf("\nGlyphs: %d\n", glyph_count);
|
|
}
|
|
|
|
/* Now we can calculate how long the barcode is going to be - and stop it from
|
|
being too long */
|
|
if (glyph_count + (cc_mode != 0) > C128_SYMBOL_MAX) {
|
|
return errtxtf(ZINT_ERROR_TOO_LONG, symbol, 344,
|
|
"Input too long, requires %d symbol characters (maximum " C128_SYMBOL_MAX_S ")",
|
|
glyph_count + (cc_mode != 0));
|
|
}
|
|
|
|
/* "...note that the linkage flag is an extra Code Set character between
|
|
the last data character and the Symbol Check Character" (GS1 Specification) */
|
|
|
|
/* Linkage flags in GS1-128 are determined by ISO/IEC 24723 section 7.4 */
|
|
assert(final_cset == C128_B0 || final_cset == C128_C0);
|
|
|
|
switch (cc_mode) {
|
|
case 1:
|
|
case 2:
|
|
/* CC-A or CC-B 2D component */
|
|
switch (final_cset) {
|
|
case C128_B0:
|
|
values[glyph_count++] = 99;
|
|
break;
|
|
case C128_C0:
|
|
values[glyph_count++] = 101;
|
|
break;
|
|
}
|
|
break;
|
|
case 3:
|
|
/* CC-C 2D component */
|
|
switch (final_cset) {
|
|
case C128_B0:
|
|
values[glyph_count++] = 101;
|
|
break;
|
|
case C128_C0:
|
|
values[glyph_count++] = 100;
|
|
break;
|
|
}
|
|
break;
|
|
}
|
|
|
|
c128_expand(symbol, values, glyph_count);
|
|
|
|
/* Add the separator pattern for composite symbols */
|
|
if (symbol->symbology == BARCODE_GS1_128_CC) {
|
|
for (i = 0; i < symbol->width; i++) {
|
|
if (!(module_is_set(symbol, separator_row + 1, i))) {
|
|
set_module(symbol, separator_row, i);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (reduced_length > 48) { /* GS1 General Specifications 5.4.4.3 */
|
|
if (error_number == 0) { /* Don't overwrite any `gs1_verify()` warning */
|
|
error_number = errtxtf(ZINT_WARN_NONCOMPLIANT, symbol, 843,
|
|
"Input too long, requires %d characters (maximum 48)", reduced_length);
|
|
}
|
|
}
|
|
|
|
if (symbol->output_options & COMPLIANT_HEIGHT) {
|
|
/* GS1 General Specifications 21.0.1 5.12.3.2 table 2, including footnote (**):
|
|
same as ITF-14: "in case of further space constraints" height 5.8mm / 1.016mm (X max) ~ 5.7;
|
|
default 31.75mm / 0.495mm ~ 64.14 */
|
|
const float min_height = 5.70866156f; /* 5.8 / 1.016 */
|
|
const float default_height = 64.1414108f; /* 31.75 / 0.495 */
|
|
if (symbol->symbology == BARCODE_GS1_128_CC) {
|
|
/* Pass back via temporary linear structure */
|
|
symbol->height = symbol->height ? min_height : default_height;
|
|
} else {
|
|
if (error_number == 0) { /* Don't overwrite any `gs1_verify()` warning */
|
|
error_number = set_height(symbol, min_height, default_height, 0.0f, 0 /*no_errtxt*/);
|
|
} else {
|
|
(void) set_height(symbol, min_height, default_height, 0.0f, 1 /*no_errtxt*/);
|
|
}
|
|
}
|
|
} else {
|
|
const float height = 50.0f;
|
|
if (symbol->symbology == BARCODE_GS1_128_CC) {
|
|
symbol->height = height - cc_rows * (cc_mode == 3 ? 3 : 2) - 1.0f;
|
|
} else {
|
|
(void) set_height(symbol, 0.0f, height, 0.0f, 1 /*no_errtxt*/);
|
|
}
|
|
}
|
|
|
|
/* If no other warnings flag use of READER_INIT in GS1_MODE */
|
|
if (error_number == 0 && (symbol->output_options & READER_INIT)) {
|
|
error_number = errtxt(ZINT_WARN_INVALID_OPTION, symbol, 845,
|
|
"Cannot use Reader Initialisation in GS1 mode, ignoring");
|
|
}
|
|
|
|
if (symbol->input_mode & GS1PARENS_MODE) {
|
|
i = length < (int) sizeof(symbol->text) ? length : (int) sizeof(symbol->text);
|
|
memcpy(symbol->text, source, i);
|
|
} else {
|
|
int bracket_level = 0; /* Non-compliant closing square brackets may be in text */
|
|
for (i = 0; i < length && i < (int) sizeof(symbol->text); i++) {
|
|
if (source[i] == '[') {
|
|
symbol->text[i] = '(';
|
|
bracket_level++;
|
|
} else if (source[i] == ']' && bracket_level) {
|
|
symbol->text[i] = ')';
|
|
bracket_level--;
|
|
} else {
|
|
symbol->text[i] = source[i];
|
|
}
|
|
}
|
|
}
|
|
if (i == sizeof(symbol->text)) {
|
|
/* Trumps all other warnings */
|
|
error_number = errtxt(ZINT_WARN_HRT_TRUNCATED, symbol, 844, "Human Readable Text truncated");
|
|
i--;
|
|
}
|
|
symbol->text[i] = '\0';
|
|
|
|
return error_number;
|
|
}
|
|
|
|
/* Handle GS1-128 (formerly known as EAN-128) */
|
|
INTERNAL int gs1_128(struct zint_symbol *symbol, unsigned char source[], int length) {
|
|
return gs1_128_cc(symbol, source, length, 0 /*cc_mode*/, 0 /*cc_rows*/);
|
|
}
|
|
|
|
/* Helper to do NVE18 or EAN14 */
|
|
static int nve18_or_ean14(struct zint_symbol *symbol, unsigned char source[], const int length, const int data_len) {
|
|
static const char prefix[2][2][5] = {
|
|
{ "(01)", "[01]" }, /* EAN14 */
|
|
{ "(00)", "[00]" }, /* NVE18 */
|
|
};
|
|
unsigned char ean128_equiv[23];
|
|
int error_number, zeroes;
|
|
int i;
|
|
|
|
if (length > data_len) {
|
|
return errtxtf(ZINT_ERROR_TOO_LONG, symbol, 345, "Input length %1$d too long (maximum %2$d)", length,
|
|
data_len);
|
|
}
|
|
|
|
if ((i = not_sane(NEON_F, source, length))) {
|
|
/* Note: for all "at position" error messages, escape sequences not accounted for */
|
|
return errtxtf(ZINT_ERROR_INVALID_DATA, symbol, 346,
|
|
"Invalid character at position %d in input (digits only)", i);
|
|
}
|
|
|
|
zeroes = data_len - length;
|
|
ustrcpy(ean128_equiv, prefix[data_len == 17][!(symbol->input_mode & GS1PARENS_MODE)]);
|
|
memset(ean128_equiv + 4, '0', zeroes);
|
|
ustrcpy(ean128_equiv + 4 + zeroes, source);
|
|
|
|
ean128_equiv[data_len + 4] = gs1_check_digit(ean128_equiv + 4, data_len);
|
|
ean128_equiv[data_len + 5] = '\0';
|
|
|
|
error_number = gs1_128(symbol, ean128_equiv, data_len + 5);
|
|
|
|
return error_number;
|
|
}
|
|
|
|
|
|
/* Add check digit if encoding an NVE18 symbol */
|
|
INTERNAL int nve18(struct zint_symbol *symbol, unsigned char source[], int length) {
|
|
return nve18_or_ean14(symbol, source, length, 17 /*data_len*/);
|
|
}
|
|
|
|
/* EAN-14 - A version of EAN-128 */
|
|
INTERNAL int ean14(struct zint_symbol *symbol, unsigned char source[], int length) {
|
|
return nve18_or_ean14(symbol, source, length, 13 /*data_len*/);
|
|
}
|
|
|
|
static const char KRSET[] = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
|
|
#define KRSET_F (IS_NUM_F | IS_UPR_F)
|
|
|
|
/* DPD (Deutscher Paketdienst) Code */
|
|
/* Specification at https://esolutions.dpd.com/dokumente/DPD_Parcel_Label_Specification_2.4.1_EN.pdf
|
|
* and identification tag info (Barcode ID) at https://esolutions.dpd.com/dokumente/DPD_Routing_Database_1.3_EN.pdf */
|
|
INTERNAL int dpd(struct zint_symbol *symbol, unsigned char source[], int length) {
|
|
int error_number = 0;
|
|
int i, p;
|
|
unsigned char ident_tag;
|
|
unsigned char local_source_buf[29];
|
|
unsigned char *local_source;
|
|
const int mod = 36;
|
|
const int relabel = symbol->option_2 == 1; /* A "relabel" has no identification tag */
|
|
int cd; /* Check digit */
|
|
|
|
if ((length != 27 && length != 28) || (length == 28 && relabel)) {
|
|
if (relabel) {
|
|
return errtxtf(ZINT_ERROR_TOO_LONG, symbol, 830, "DPD relabel input length %d wrong (27 only)", length);
|
|
}
|
|
return errtxtf(ZINT_ERROR_TOO_LONG, symbol, 349, "DPD input length %d wrong (27 or 28 only)", length);
|
|
}
|
|
|
|
if (length == 27 && !relabel) {
|
|
local_source_buf[0] = '%';
|
|
ustrcpy(local_source_buf + 1, source);
|
|
local_source = local_source_buf;
|
|
length++;
|
|
} else {
|
|
local_source = source;
|
|
}
|
|
|
|
ident_tag = local_source[0];
|
|
|
|
to_upper(local_source + !relabel, length - !relabel);
|
|
if ((i = not_sane(KRSET_F, local_source + !relabel, length - !relabel))) {
|
|
if (local_source == local_source_buf || relabel) {
|
|
return errtxtf(ZINT_ERROR_INVALID_DATA, symbol, 300,
|
|
"Invalid character at position %d in input (alphanumerics only)", i);
|
|
}
|
|
return errtxtf(ZINT_ERROR_INVALID_DATA, symbol, 299,
|
|
"Invalid character at position %d in input (alphanumerics only after first)", i);
|
|
}
|
|
|
|
if ((ident_tag < 32) || (ident_tag > 127)) {
|
|
return errtxt(ZINT_ERROR_INVALID_DATA, symbol, 343,
|
|
"Invalid DPD identification tag (first character), ASCII values 32 to 127 only");
|
|
}
|
|
|
|
(void) code128(symbol, local_source, length); /* Only error returned is for large text which can't happen */
|
|
|
|
if (!(symbol->output_options & (BARCODE_BOX | BARCODE_BIND | BARCODE_BIND_TOP))) {
|
|
/* If no option has been selected then uses default bind top option */
|
|
symbol->output_options |= BARCODE_BIND_TOP; /* Note won't extend over quiet zones for DPD */
|
|
if (symbol->border_width == 0) { /* Allow override if non-zero */
|
|
symbol->border_width = 3; /* From examples, not mentioned in spec */
|
|
}
|
|
}
|
|
|
|
if (symbol->output_options & COMPLIANT_HEIGHT) {
|
|
/* DPD Parcel Label Specification Version 2.4.1 (19.01.2021) Section 4.6.1.2
|
|
25mm / 0.4mm (X max) = 62.5 min, 25mm / 0.375 (X) ~ 66.66 default */
|
|
if (relabel) { /* If relabel then half-size */
|
|
const float default_height = 33.3333321f; /* 12.5 / 0.375 */
|
|
error_number = set_height(symbol, 31.25f, default_height, 0.0f, 0 /*no_errtxt*/);
|
|
} else {
|
|
const float default_height = 66.6666641f; /* 25.0 / 0.375 */
|
|
error_number = set_height(symbol, 62.5f, default_height, 0.0f, 0 /*no_errtxt*/);
|
|
}
|
|
} else {
|
|
(void) set_height(symbol, 0.0f, relabel ? 25.0f : 50.0f, 0.0f, 1 /*no_errtxt*/);
|
|
}
|
|
|
|
cd = mod;
|
|
|
|
p = 0;
|
|
for (i = !relabel; i < length; i++) {
|
|
symbol->text[p] = local_source[i];
|
|
p++;
|
|
|
|
cd += posn(KRSET, local_source[i]);
|
|
if (cd > mod) cd -= mod;
|
|
cd *= 2;
|
|
if (cd >= (mod + 1)) cd -= mod + 1;
|
|
|
|
switch (i + relabel) {
|
|
case 4:
|
|
case 7:
|
|
case 11:
|
|
case 15:
|
|
case 19:
|
|
case 21:
|
|
case 24:
|
|
case 27:
|
|
symbol->text[p++] = ' ';
|
|
break;
|
|
}
|
|
}
|
|
|
|
cd = mod + 1 - cd;
|
|
if (cd == mod) cd = 0;
|
|
|
|
if (cd < 10) {
|
|
symbol->text[p] = cd + '0';
|
|
} else {
|
|
symbol->text[p] = (cd - 10) + 'A';
|
|
}
|
|
p++;
|
|
|
|
symbol->text[p] = '\0';
|
|
|
|
/* Some compliance checks */
|
|
if (not_sane(NEON_F, local_source + length - 16, 16)) {
|
|
if (not_sane(NEON_F, local_source + length - 3, 3)) { /* 3-digit Country Code (ISO 3166-1) */
|
|
errtxt(0, symbol, 831, "Destination Country Code (last 3 characters) should be numeric");
|
|
} else if (not_sane(NEON_F, local_source + length - 6, 3)) { /* 3-digit Service Code */
|
|
errtxt(0, symbol, 832, "Service Code (characters 6-4 from end) should be numeric");
|
|
} else { /* Last 10 characters of Tracking No. */
|
|
errtxt(0, symbol, 833,
|
|
"Last 10 characters of Tracking Number (characters 16-7 from end) should be numeric");
|
|
}
|
|
error_number = ZINT_WARN_NONCOMPLIANT;
|
|
}
|
|
|
|
return error_number;
|
|
}
|
|
|
|
/* Universal Postal Union S10 */
|
|
/* https://www.upu.int/UPU/media/upu/files/postalSolutions/programmesAndServices/standards/S10-12.pdf */
|
|
INTERNAL int upu_s10(struct zint_symbol *symbol, unsigned char source[], int length) {
|
|
int i, j;
|
|
unsigned char local_source[13 + 1];
|
|
unsigned char have_check_digit = '\0';
|
|
int check_digit;
|
|
static const char weights[8] = { 8, 6, 4, 2, 3, 5, 9, 7 };
|
|
int error_number = 0;
|
|
|
|
if (length != 12 && length != 13) {
|
|
return errtxtf(ZINT_ERROR_TOO_LONG, symbol, 834, "Input length %d wrong (12 or 13 only)", length);
|
|
}
|
|
if (length == 13) { /* Includes check digit - remove for now */
|
|
have_check_digit = source[10];
|
|
memcpy(local_source, source, 10);
|
|
ustrcpy(local_source + 10, source + 11);
|
|
} else {
|
|
ustrcpy(local_source, source);
|
|
}
|
|
to_upper(local_source, length);
|
|
|
|
if (!z_isupper(local_source[0]) || !z_isupper(local_source[1])) {
|
|
return errtxt(ZINT_ERROR_INVALID_DATA, symbol, 835,
|
|
"Invalid character in Service Indictor (first 2 characters) (alphabetic only)");
|
|
}
|
|
if (not_sane(NEON_F, local_source + 2, 12 - 4) || (have_check_digit && !z_isdigit(have_check_digit))) {
|
|
return errtxtf(ZINT_ERROR_INVALID_DATA, symbol, 836,
|
|
"Invalid character in Serial Number (middle %d characters) (digits only)",
|
|
have_check_digit ? 9 : 8);
|
|
}
|
|
if (!z_isupper(local_source[10]) || !z_isupper(local_source[11])) {
|
|
return errtxt(ZINT_ERROR_INVALID_DATA, symbol, 837,
|
|
"Invalid character in Country Code (last 2 characters) (alphabetic only)");
|
|
}
|
|
|
|
check_digit = 0;
|
|
for (i = 2; i < 10; i++) { /* Serial Number only */
|
|
check_digit += ctoi(local_source[i]) * weights[i - 2];
|
|
}
|
|
check_digit %= 11;
|
|
check_digit = 11 - check_digit;
|
|
if (check_digit == 10) {
|
|
check_digit = 0;
|
|
} else if (check_digit == 11) {
|
|
check_digit = 5;
|
|
}
|
|
if (have_check_digit && ctoi(have_check_digit) != check_digit) {
|
|
return errtxtf(ZINT_ERROR_INVALID_CHECK, symbol, 838, "Invalid check digit '%1$c', expecting '%2$c'",
|
|
have_check_digit, itoc(check_digit));
|
|
}
|
|
/* Add in (back) check digit */
|
|
local_source[12] = local_source[11];
|
|
local_source[11] = local_source[10];
|
|
local_source[10] = itoc(check_digit);
|
|
local_source[13] = '\0';
|
|
|
|
/* Do some checks on the Service Indicator (first char only) and Country Code */
|
|
if (strchr("JKSTW", local_source[0]) != NULL) { /* These are reserved & cannot be assigned */
|
|
error_number = errtxt(ZINT_WARN_NONCOMPLIANT, symbol, 839,
|
|
"Invalid Service Indicator (first character should not be any of \"JKSTW\")");
|
|
} else if (strchr("FHIOXY", local_source[0]) != NULL) { /* These aren't allocated as of spec Oct 2017 */
|
|
error_number = errtxt(ZINT_WARN_NONCOMPLIANT, symbol, 840,
|
|
"Non-standard Service Indicator (first 2 characters)");
|
|
} else if (!gs1_iso3166_alpha2(local_source + 11)) {
|
|
error_number = errtxt(ZINT_WARN_NONCOMPLIANT, symbol, 841,
|
|
"Country code (last two characters) is not ISO 3166-1");
|
|
}
|
|
|
|
(void) code128(symbol, local_source, 13); /* Only error returned is for large text which can't happen */
|
|
|
|
j = 0;
|
|
for (i = 0; i < 13; i++) {
|
|
if (i == 2 || i == 5 || i == 8 || i == 11) {
|
|
symbol->text[j++] = ' ';
|
|
}
|
|
symbol->text[j++] = local_source[i];
|
|
}
|
|
symbol->text[j] = '\0';
|
|
|
|
if (symbol->output_options & COMPLIANT_HEIGHT) {
|
|
/* Universal Postal Union S10 Section 8, using max X 0.51mm & minimum height 12.5mm or 15% of width */
|
|
const float min_height_min = 24.5098038f; /* 12.5 / 0.51 */
|
|
float min_height = stripf(symbol->width * 0.15f);
|
|
if (min_height < min_height_min) {
|
|
min_height = min_height_min;
|
|
}
|
|
/* Using 50 as default as none recommended */
|
|
if (error_number == 0) {
|
|
error_number = set_height(symbol, min_height, min_height > 50.0f ? min_height : 50.0f, 0.0f,
|
|
0 /*no_errtxt*/);
|
|
} else {
|
|
(void) set_height(symbol, min_height, min_height > 50.0f ? min_height : 50.0f, 0.0f, 1 /*no_errtxt*/);
|
|
}
|
|
} else {
|
|
(void) set_height(symbol, 0.0f, 50.0f, 0.0f, 1 /*no_errtxt*/);
|
|
}
|
|
|
|
return error_number;
|
|
}
|
|
|
|
/* vim: set ts=4 sw=4 et : */
|