mirror of
https://git.code.sf.net/p/zint/code
synced 2026-05-14 18:13:53 +00:00
debian: updated using https://salsa.debian.org/debian/zint as
template, props Dmitry Smirnov (ticket #147, props John Crisp); TODO: enable building with the GS1 Syntax Engine; this involved auditing copyrights which prompted the next item re "tif.c" and will prompt the next next item "pdf417.c" tif.c: replaced LZW compression with tree-based one due to "tif_lzw.h"'s original BSD-TAHOE license which has the equivalent of the "advertising clause", new implementation (which is much faster anyway) props Harald Kuhr and Bob Montgomery pdf417.c: TODO: Replace all code adapted from "pdf417.frm" as it was released under GPL v2.0 or later pdf417.h: replace unnecessary "pdf417.frm" references with ISO/IEC standard as 1st step re above, some expanded comments general: Codablock-F -> Codablock F (i.e. lose hyphen) cmake: frontend/frontend_qt: go back to only setting RPATH on macOS as not Debian compatible and it seems it's not a good idea on Linux anyway; TODO: check BSD + other Unixes CLI/GUI: make "--verbose" option official and document tools/gen_eci_sb_h.php/gen_eci_mb_h.php: add SPDX Unicode-3.0; update haible.de/bruno tarball info - "GB18030.TXT" no longer in "jdk-1.4.2/" so mention "libiconv-1.11/" version instead (same) general: add various SPDXs and normalize some Copyrights reedsol.c: malloced `logt`/`alog` tables int -> short (slight performance improvement) aztec.c: add copyrights, some code fiddling BWIPP: update to latest
This commit is contained in:
@@ -2,6 +2,8 @@
|
||||
% Version 2.16.0.9
|
||||
% March 2026
|
||||
|
||||
[//]: # ( vim: set ts=4 sw=4 et : )
|
||||
|
||||
# 1. Introduction
|
||||
|
||||
The Zint project aims to provide a complete cross-platform open source barcode
|
||||
@@ -781,7 +783,7 @@ Value
|
||||
|
||||
73 `BARCODE_VIN` Vehicle Identification Number
|
||||
|
||||
74 `BARCODE_CODABLOCKF` Codablock-F
|
||||
74 `BARCODE_CODABLOCKF` Codablock F
|
||||
|
||||
75 `BARCODE_NVE18` NVE-18 (SSCC-18)
|
||||
|
||||
@@ -829,7 +831,7 @@ Value
|
||||
|
||||
108 `BARCODE_HIBC_MICPDF` HIBC MicroPDF417
|
||||
|
||||
110 `BARCODE_HIBC_BLOCKF` HIBC Codablock-F
|
||||
110 `BARCODE_HIBC_BLOCKF` HIBC Codablock F
|
||||
|
||||
112 `BARCODE_HIBC_AZTEC` HIBC Aztec Code
|
||||
|
||||
@@ -934,7 +936,7 @@ Warning 247: Height not compliant with standards
|
||||
```
|
||||
|
||||
Another switch is `--heightperrow`, which can be useful for symbologies that
|
||||
have a variable number of linear rows, namely Codablock-F, Code 16K, Code 49,
|
||||
have a variable number of linear rows, namely Codablock F, Code 16K, Code 49,
|
||||
GS1 DataBar Expanded Stacked, MicroPDF417 and PDF417, as it changes the
|
||||
treatment of the height value from overall height to per-row height, allowing
|
||||
you to specify a consistent height for each linear row without having to know
|
||||
@@ -982,7 +984,7 @@ A `--quietzones` option is also available which adds quiet zones compliant with
|
||||
the symbology's specification. This is in addition to any whitespace specified
|
||||
with the `--whitesp` or `--vwhitesp` switches.
|
||||
|
||||
Note that Codablock-F, Code 16K, Code 49, ITF-14, EAN-13, EAN-8, EAN/UPC
|
||||
Note that Codablock F, Code 16K, Code 49, ITF-14, EAN-13, EAN-8, EAN/UPC
|
||||
add-ons, ISBN, UPC-A and UPC-E have compliant quiet zones added by default. This
|
||||
can be disabled with the option `--noquietzones`.
|
||||
|
||||
@@ -1016,7 +1018,7 @@ whitespace.
|
||||
{.i2d}
|
||||
|
||||
Codablock-F, Code 16K and Code 49 always have boundary bars, and default to
|
||||
Codablock F, Code 16K and Code 49 always have boundary bars, and default to
|
||||
particular horizontal whitespace values. Special considerations apply to ITF-14
|
||||
and DPD - see [6.1.2.6 ITF-14] and [6.1.10.7 DPD Code] for those symbologies.
|
||||
|
||||
@@ -1258,7 +1260,7 @@ Latin-2 (ISO/IEC 8859-2 plus ASCII).
|
||||
Symbology Default character sets Alternate if input not Latin-1
|
||||
------------- ------------------------ ------------------------------
|
||||
Aztec Code Latin-1 None
|
||||
Codablock-F Latin-1 None
|
||||
Codablock F Latin-1 None
|
||||
Code 128 Latin-1 None
|
||||
Code 16K Latin-1 None
|
||||
Code One Latin-1 None
|
||||
@@ -1290,7 +1292,7 @@ GS1 data can be encoded in a number of symbologies - see [4.11.3 GS1 Data Entry
|
||||
and Options].
|
||||
|
||||
Health Industry Barcode (HIBC) data may be encoded in the symbologies Aztec
|
||||
Code, Codablock-F, Code 128, Code 39, Data Matrix, MicroPDF417, PDF417 and QR
|
||||
Code, Codablock F, Code 128, Code 39, Data Matrix, MicroPDF417, PDF417 and QR
|
||||
Code. Within this mode, the leading `'+'` and the check character are
|
||||
automatically added by Zint, conforming to HIBC Labeler Identification Code
|
||||
(HIBC LIC). For HIBC Provider Applications Standard (HIBC PAS), preface the data
|
||||
@@ -1769,6 +1771,9 @@ values if asked to output to a text file (`"*.txt"`) or if given the option
|
||||
`--filetype=txt` or the option `--dump`. This can be used for test and
|
||||
diagnostic purposes.
|
||||
|
||||
Also there's the `--verbose` option which will output debug information to
|
||||
`stdout`.
|
||||
|
||||
Additional options are available which are specific to certain symbologies.
|
||||
These may, for example, control the amount of error correction data or the size
|
||||
of the symbol. These options are discussed in section [6. Types of Symbology] of
|
||||
@@ -2479,10 +2484,10 @@ Table: API `output_options` Values {#tbl:api_output_options}
|
||||
[^15]: The `BARCODE_BIND_TOP` flag is set by default for DPD - see [6.1.10.7 DPD
|
||||
Code].
|
||||
|
||||
[^16]: The `BARCODE_BIND` flag is always set for Codablock-F, Code 16K and Code
|
||||
[^16]: The `BARCODE_BIND` flag is always set for Codablock F, Code 16K and Code
|
||||
49. Special considerations apply to ITF-14 - see [6.1.2.6 ITF-14].
|
||||
|
||||
[^17]: Codablock-F, Code 16K, Code 49, EAN-13, EAN-8, EAN/UPC add-ons, ISBN,
|
||||
[^17]: Codablock F, Code 16K, Code 49, EAN-13, EAN-8, EAN/UPC add-ons, ISBN,
|
||||
ITF-14, UPC-A and UPC-E have compliant quiet zones added by default.
|
||||
|
||||
## 5.11 Setting the Input Mode
|
||||
@@ -2719,7 +2724,7 @@ if (ZBarcode_BarcodeName(BARCODE_PDF417, name) == 0) {
|
||||
}
|
||||
```
|
||||
|
||||
will print `BARCODE_PDF417`.
|
||||
will print "BARCODE_PDF417".
|
||||
|
||||
## 5.15 Checking Symbology Capabilities
|
||||
|
||||
@@ -2896,6 +2901,12 @@ int ZBarcode_Version(void);
|
||||
The version parts are separated by hundreds. For instance, version `"2.9.1"` is
|
||||
returned as `"20901"`.
|
||||
|
||||
## 5.19 Debug Info
|
||||
|
||||
Debugging information can be output to `stdout` by setting the `debug` member to
|
||||
`ZINT_DEBUG_PRINT` (`1`). Other values are used internally by the test suite and
|
||||
shouldn't be set.
|
||||
|
||||
|
||||
# 6. Types of Symbology
|
||||
|
||||
@@ -3733,7 +3744,7 @@ A more sophisticated method is to use some type of line indexing which indicates
|
||||
to the barcode reader which order the stacked symbols should be read in. This is
|
||||
demonstrated by the symbologies below.
|
||||
|
||||
### 6.2.2 Codablock-F
|
||||
### 6.2.2 Codablock F
|
||||
|
||||
This is a stacked symbology based on Code 128 which can encode Latin-1 data up
|
||||
to a maximum length of 2726 symbol characters, meaning for instance up to 2726
|
||||
@@ -3743,10 +3754,10 @@ all ASCII characters, or 5452 all numeric, or up to 1363 all extended ASCII
|
||||
{.lin}
|
||||
|
||||
The width of the Codablock-F symbol can be set using the `--cols` option (API
|
||||
The width of the Codablock F symbol can be set using the `--cols` option (API
|
||||
`option_2`), to a value between 9 and 67. The height (number of rows) can be set
|
||||
using the `--rows` option (API `option_1`), with a maximum of 44. Zint does not
|
||||
currently support encoding of GS1 data in Codablock-F symbols.
|
||||
currently support encoding of GS1 data in Codablock F symbols.
|
||||
|
||||
A separate symbology ID (`BARCODE_HIBC_BLOCKF`) can be used to encode Health
|
||||
Industry Barcode (HIBC) data which adds a leading `'+'` character and a
|
||||
@@ -5200,7 +5211,7 @@ international standards:
|
||||
(BC412) (1996)
|
||||
- ANSI/AIM BC12-1998 - Uniform Symbology Specification Channel Code
|
||||
- BS EN 798:1996 Bar coding - Symbology specifications - 'Codabar'
|
||||
- AIM Europe ISS-X-24 - Uniform Symbology Specification Codablock-F (1995)
|
||||
- AIM Europe ISS-X-24 - Uniform Symbology Specification Codablock F (1995)
|
||||
- ISO/IEC 15417:2007 Information technology - Automatic identification and data
|
||||
capture techniques - Code 128 bar code symbology specification
|
||||
- BS EN 12323:2005 AIDC technologies - Symbology specifications - Code 16K
|
||||
|
||||
Reference in New Issue
Block a user