@sythos/js_barcode_universal 1.2.5 → 1.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AI_USAGE.md +33 -0
- package/LICENSE +11 -2
- package/NOTICE.md +10 -4
- package/README.md +601 -465
- package/bundle/sythos-barcode.esm.js +4669 -74
- package/bundle/sythos-barcode.js +4575 -72
- package/examples/create.html +1010 -730
- package/examples/read.html +1 -0
- package/licenses/README.md +40 -58
- package/licenses/aztec-code.license +15 -13
- package/licenses/aztec-rune.license +76 -0
- package/licenses/codabar.license +18 -15
- package/licenses/code-11.license +11 -9
- package/licenses/code-128.license +10 -8
- package/licenses/code-39.license +10 -8
- package/licenses/code-93.license +16 -14
- package/licenses/compact-pdf417.license +76 -0
- package/licenses/data-matrix.license +15 -13
- package/licenses/ean-13.license +10 -8
- package/licenses/ean-2.license +74 -0
- package/licenses/ean-5.license +74 -0
- package/licenses/ean-8.license +10 -8
- package/licenses/frameqr.license +84 -0
- package/licenses/gs1-128.license +10 -8
- package/licenses/gs1-databar.license +81 -0
- package/licenses/isbn.license +10 -8
- package/licenses/itf-14.license +10 -8
- package/licenses/itf.license +9 -7
- package/licenses/micro-qr.license +79 -0
- package/licenses/micropdf417.license +52 -67
- package/licenses/msi-plessey.license +13 -11
- package/licenses/pdf417.license +78 -37
- package/licenses/pharmacode.license +14 -12
- package/licenses/qr-code.license +9 -7
- package/licenses/rmqr.license +79 -0
- package/licenses/upc-a.license +12 -10
- package/licenses/upc-e.license +10 -8
- package/package.json +109 -88
- package/src/aztec/decoder.js +1 -0
- package/src/aztec/detector.js +1 -0
- package/src/aztec/encoder.js +1 -0
- package/src/aztec/high-level.js +1 -0
- package/src/aztec/index.js +1 -0
- package/src/aztec/tables.js +1 -0
- package/src/aztecrune/decoder.js +156 -0
- package/src/aztecrune/detector.js +167 -0
- package/src/aztecrune/encoder.js +122 -0
- package/src/aztecrune/index.js +50 -0
- package/src/aztecrune/tables.js +138 -0
- package/src/compactpdf417/decoder.js +129 -0
- package/src/compactpdf417/detector.js +140 -0
- package/src/compactpdf417/encoder.js +141 -0
- package/src/compactpdf417/index.js +22 -0
- package/src/compactpdf417/tables.js +174 -0
- package/src/core/bit-buffer.js +1 -0
- package/src/core/bit-matrix.js +1 -0
- package/src/core/errors.js +1 -0
- package/src/core/galois-field.js +1 -0
- package/src/core/index.js +1 -0
- package/src/core/reed-solomon.js +1 -0
- package/src/databar/codec.js +182 -0
- package/src/databar/decoder.js +115 -0
- package/src/databar/encoder.js +97 -0
- package/src/databar/gs1.js +178 -0
- package/src/databar/index.js +69 -0
- package/src/databar/patterns.js +144 -0
- package/src/databar/tables.js +125 -0
- package/src/datamatrix/decoder.js +263 -262
- package/src/datamatrix/detector.js +226 -225
- package/src/datamatrix/encoder.js +192 -191
- package/src/datamatrix/index.js +43 -42
- package/src/datamatrix/tables.js +124 -123
- package/src/frameqr/decoder.js +240 -0
- package/src/frameqr/detector.js +193 -0
- package/src/frameqr/encoder.js +157 -0
- package/src/frameqr/index.js +43 -0
- package/src/frameqr/tables.js +271 -0
- package/src/image/binarizer.js +1 -0
- package/src/image/grid-sampler.js +1 -0
- package/src/image/index.js +1 -0
- package/src/image/luminance.js +1 -0
- package/src/image/perspective.js +1 -0
- package/src/index.js +155 -2
- package/src/micropdf417/compaction.js +1 -0
- package/src/micropdf417/decoder.js +1 -0
- package/src/micropdf417/detector.js +1 -0
- package/src/micropdf417/encoder.js +1 -0
- package/src/micropdf417/error-correction.js +1 -0
- package/src/micropdf417/index.js +1 -0
- package/src/micropdf417/tables.js +1 -0
- package/src/microqr/decoder.js +246 -0
- package/src/microqr/detector.js +356 -0
- package/src/microqr/encoder.js +270 -0
- package/src/microqr/index.js +37 -0
- package/src/microqr/tables.js +317 -0
- package/src/oned/addons.js +421 -0
- package/src/oned/index.js +77 -59
- package/src/oned/patterns.js +1 -0
- package/src/oned/reader.js +1 -0
- package/src/oned/writers.js +1 -0
- package/src/pdf417/compaction.js +1 -0
- package/src/pdf417/decoder.js +1 -0
- package/src/pdf417/detector.js +1 -0
- package/src/pdf417/encoder.js +1 -0
- package/src/pdf417/error-correction.js +1 -0
- package/src/pdf417/index.js +5 -0
- package/src/pdf417/tables.js +1 -0
- package/src/qr/decoder.js +1 -0
- package/src/qr/detector.js +1 -0
- package/src/qr/encoder.js +1 -0
- package/src/qr/index.js +1 -0
- package/src/qr/tables.js +1 -0
- package/src/render/image-data.js +1 -0
- package/src/render/index.js +1 -0
- package/src/render/options.js +1 -0
- package/src/render/png.js +1 -0
- package/src/render/svg.js +1 -0
- package/src/render/webgl.js +1 -0
- package/src/render/webgpu.js +1 -0
- package/src/rmqr/decoder.js +102 -0
- package/src/rmqr/detector.js +91 -0
- package/src/rmqr/encoder.js +173 -0
- package/src/rmqr/index.js +38 -0
- package/src/rmqr/tables.js +155 -0
|
@@ -4,7 +4,7 @@ Data Matrix ECC 200 — format provenance and usability
|
|
|
4
4
|
This file records where the Data Matrix ECC 200 symbology comes from, what governs
|
|
5
5
|
it, and the basis on which this project implements and redistributes it.
|
|
6
6
|
|
|
7
|
-
It is an ENGINEERING INVENTORY, NOT LEGAL ADVICE. Items
|
|
7
|
+
It is an ENGINEERING INVENTORY, NOT LEGAL ADVICE. Items marked [TO VERIFY]
|
|
8
8
|
have not been independently confirmed by the author.
|
|
9
9
|
|
|
10
10
|
|
|
@@ -13,8 +13,8 @@ ORIGIN
|
|
|
13
13
|
|
|
14
14
|
Data Matrix emerged from industrial automatic-identification work
|
|
15
15
|
associated with International Data Matrix and later RVSI/CI Matrix in the
|
|
16
|
-
late 1980s and early 1990s. The
|
|
17
|
-
|
|
16
|
+
late 1980s and early 1990s. The exact corporate chronology and attribution
|
|
17
|
+
have not been independently confirmed by the author. [LEGAL REVIEW]
|
|
18
18
|
|
|
19
19
|
|
|
20
20
|
SPECIFICATION
|
|
@@ -38,16 +38,16 @@ PATENT STATUS
|
|
|
38
38
|
Patent rights associated with ECC 200 have been reported as released for
|
|
39
39
|
public use by an earlier rights holder, but the original patents, chain of
|
|
40
40
|
title and release terms have not been independently confirmed by the
|
|
41
|
-
author. [
|
|
41
|
+
author. [LEGAL REVIEW]
|
|
42
42
|
|
|
43
43
|
|
|
44
44
|
TRADEMARK
|
|
45
45
|
--------------------------------------------------------------------------
|
|
46
46
|
|
|
47
47
|
The current registration status and ownership of the words "Data Matrix"
|
|
48
|
-
have not been independently established. [
|
|
48
|
+
have not been independently established. [LEGAL REVIEW] "GS1" and "GS1
|
|
49
49
|
DataMatrix" are GS1 designations; their use is descriptive here and does
|
|
50
|
-
not imply endorsement. [
|
|
50
|
+
not imply endorsement. [LEGAL REVIEW]
|
|
51
51
|
|
|
52
52
|
A trademark does not restrict implementing a symbology. It restricts
|
|
53
53
|
branding — how a product names and presents itself.
|
|
@@ -58,8 +58,10 @@ IMPLEMENTATION BASIS IN THIS PROJECT
|
|
|
58
58
|
|
|
59
59
|
Data Matrix ECC 200 is implemented here from published descriptions of the format,
|
|
60
60
|
which are systems and facts rather than works of authorship. No source
|
|
61
|
-
code
|
|
62
|
-
|
|
61
|
+
code or constant table from any other barcode implementation is copied or
|
|
62
|
+
shipped. Public technical material and independent implementations may be
|
|
63
|
+
consulted for engineering review or black-box verification; provenance is
|
|
64
|
+
recorded in NOTICE.md.
|
|
63
65
|
|
|
64
66
|
|
|
65
67
|
CONCLUSION
|
|
@@ -68,15 +70,15 @@ CONCLUSION
|
|
|
68
70
|
This project's original implementation is distributed under the MIT
|
|
69
71
|
License. The ISO/IEC and GS1 references establish the technical standards;
|
|
70
72
|
this engineering inventory does not claim to have resolved the
|
|
71
|
-
patent-release or trademark entries that remain
|
|
73
|
+
patent-release or trademark entries that remain marked [LEGAL REVIEW].
|
|
72
74
|
|
|
73
75
|
References relied upon:
|
|
74
76
|
- ISO/IEC 16022:2024, ISO/IEC
|
|
75
77
|
- GS1 General Specifications, GS1 AISBL
|
|
76
78
|
- GS1 DataMatrix Guideline, GS1 AISBL
|
|
77
|
-
- Reported ECC 200 patent-release position [
|
|
78
|
-
- Data Matrix trademark status and ownership [
|
|
79
|
+
- Reported ECC 200 patent-release position [LEGAL REVIEW]
|
|
80
|
+
- Data Matrix trademark status and ownership [LEGAL REVIEW]
|
|
79
81
|
|
|
80
|
-
This is an engineering assessment, not legal advice.
|
|
81
|
-
|
|
82
|
+
This is an engineering assessment, not legal advice. Items marked
|
|
83
|
+
[TO VERIFY] have not been independently confirmed by the author. If your
|
|
82
84
|
use is commercially sensitive, obtain your own legal review.
|
package/licenses/ean-13.license
CHANGED
|
@@ -4,7 +4,7 @@ EAN-13 — format provenance and usability
|
|
|
4
4
|
This file records where the EAN-13 symbology comes from, what governs
|
|
5
5
|
it, and the basis on which this project implements and redistributes it.
|
|
6
6
|
|
|
7
|
-
It is an ENGINEERING INVENTORY, NOT LEGAL ADVICE. Items
|
|
7
|
+
It is an ENGINEERING INVENTORY, NOT LEGAL ADVICE. Items marked [TO VERIFY]
|
|
8
8
|
have not been independently confirmed by the author.
|
|
9
9
|
|
|
10
10
|
|
|
@@ -20,7 +20,7 @@ SPECIFICATION
|
|
|
20
20
|
|
|
21
21
|
ISO/IEC 15420 — EAN/UPC bar code symbology specification.
|
|
22
22
|
GS1 General Specifications, GS1 AISBL — freely published; redistribution
|
|
23
|
-
terms are GS1's own [
|
|
23
|
+
terms are GS1's own [LEGAL REVIEW]
|
|
24
24
|
|
|
25
25
|
Specification TEXT is copyrighted by its publisher. The SYMBOLOGY it
|
|
26
26
|
describes is not — an encoding scheme is a system, not a work of
|
|
@@ -32,7 +32,7 @@ PATENT STATUS
|
|
|
32
32
|
--------------------------------------------------------------------------
|
|
33
33
|
|
|
34
34
|
The originating patents date from the 1970s-1980s and are understood to
|
|
35
|
-
have expired long ago. [
|
|
35
|
+
have expired long ago. [LEGAL REVIEW]
|
|
36
36
|
|
|
37
37
|
|
|
38
38
|
TRADEMARK
|
|
@@ -49,8 +49,10 @@ IMPLEMENTATION BASIS IN THIS PROJECT
|
|
|
49
49
|
|
|
50
50
|
EAN-13 is implemented here from published descriptions of the format,
|
|
51
51
|
which are systems and facts rather than works of authorship. No source
|
|
52
|
-
code
|
|
53
|
-
|
|
52
|
+
code or constant table from any other barcode implementation is copied or
|
|
53
|
+
shipped. Public technical material and independent implementations may be
|
|
54
|
+
consulted for engineering review or black-box verification; provenance is
|
|
55
|
+
recorded in NOTICE.md.
|
|
54
56
|
|
|
55
57
|
|
|
56
58
|
CONCLUSION
|
|
@@ -63,8 +65,8 @@ is distributed under the MIT License with no additional restriction.
|
|
|
63
65
|
References relied upon:
|
|
64
66
|
- ISO/IEC 15420, ISO/IEC
|
|
65
67
|
- GS1 General Specifications, GS1 AISBL — freely published;
|
|
66
|
-
redistribution terms are GS1's own [
|
|
68
|
+
redistribution terms are GS1's own [LEGAL REVIEW]
|
|
67
69
|
|
|
68
|
-
This is an engineering assessment, not legal advice.
|
|
69
|
-
|
|
70
|
+
This is an engineering assessment, not legal advice. Items marked
|
|
71
|
+
[TO VERIFY] have not been independently confirmed by the author. If your
|
|
70
72
|
use is commercially sensitive, obtain your own legal review.
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
EAN-2 supplement — format provenance and usability
|
|
2
|
+
==========================================================================
|
|
3
|
+
|
|
4
|
+
This file records where the EAN-2 supplement symbology comes from, what governs
|
|
5
|
+
it, and the basis on which this project implements and redistributes it.
|
|
6
|
+
|
|
7
|
+
It is an ENGINEERING INVENTORY, NOT LEGAL ADVICE. Items marked [TO VERIFY]
|
|
8
|
+
have not been independently confirmed by the author.
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
ORIGIN
|
|
12
|
+
--------------------------------------------------------------------------
|
|
13
|
+
|
|
14
|
+
EAN-2 is the two-digit EAN/UPC add-on symbol used as a supplement to a
|
|
15
|
+
primary EAN or UPC symbol. This project exposes its parity and guard
|
|
16
|
+
geometry as a writable add-on.
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
SPECIFICATION
|
|
20
|
+
--------------------------------------------------------------------------
|
|
21
|
+
|
|
22
|
+
ISO/IEC 15420 — EAN/UPC bar code symbology specification.
|
|
23
|
+
GS1 General Specifications, GS1 AISBL — freely published; redistribution
|
|
24
|
+
terms are GS1's own [LEGAL REVIEW]
|
|
25
|
+
|
|
26
|
+
Specification TEXT is copyrighted by its publisher. The SYMBOLOGY it
|
|
27
|
+
describes is not — an encoding scheme is a system, not a work of
|
|
28
|
+
authorship. This project implements the symbology; it does not reproduce,
|
|
29
|
+
redistribute or excerpt any specification document.
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
PATENT STATUS
|
|
33
|
+
--------------------------------------------------------------------------
|
|
34
|
+
|
|
35
|
+
The originating patents date from the 1970s-1980s and are understood to
|
|
36
|
+
have expired long ago. [LEGAL REVIEW]
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
TRADEMARK
|
|
40
|
+
--------------------------------------------------------------------------
|
|
41
|
+
|
|
42
|
+
"GS1" and its symbology names are trademarks of GS1 AISBL.
|
|
43
|
+
|
|
44
|
+
A trademark does not restrict implementing a symbology. It restricts
|
|
45
|
+
branding — how a product names and presents itself.
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
IMPLEMENTATION BASIS IN THIS PROJECT
|
|
49
|
+
--------------------------------------------------------------------------
|
|
50
|
+
|
|
51
|
+
EAN-2 supplement is implemented here from published descriptions of the format,
|
|
52
|
+
which are systems and facts rather than works of authorship. No source
|
|
53
|
+
code or constant table from any other barcode implementation is copied or
|
|
54
|
+
shipped. Public technical material and independent implementations may be
|
|
55
|
+
consulted for engineering review or black-box verification; provenance is
|
|
56
|
+
recorded in NOTICE.md.
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
CONCLUSION
|
|
60
|
+
--------------------------------------------------------------------------
|
|
61
|
+
|
|
62
|
+
The original add-on implementation is distributed under the MIT License.
|
|
63
|
+
Generic camera read capability remains intentionally separate from the
|
|
64
|
+
direct matrix helper.
|
|
65
|
+
|
|
66
|
+
References relied upon:
|
|
67
|
+
- ISO/IEC 15420, ISO/IEC
|
|
68
|
+
- GS1 General Specifications, GS1 AISBL — freely published;
|
|
69
|
+
redistribution terms are GS1's own [LEGAL REVIEW]
|
|
70
|
+
- ZXing-C++ add-on black-box check, https://github.com/zxing-cpp/zxing-cpp
|
|
71
|
+
|
|
72
|
+
This is an engineering assessment, not legal advice. Items marked
|
|
73
|
+
[TO VERIFY] have not been independently confirmed by the author. If your
|
|
74
|
+
use is commercially sensitive, obtain your own legal review.
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
EAN-5 supplement — format provenance and usability
|
|
2
|
+
==========================================================================
|
|
3
|
+
|
|
4
|
+
This file records where the EAN-5 supplement symbology comes from, what governs
|
|
5
|
+
it, and the basis on which this project implements and redistributes it.
|
|
6
|
+
|
|
7
|
+
It is an ENGINEERING INVENTORY, NOT LEGAL ADVICE. Items marked [TO VERIFY]
|
|
8
|
+
have not been independently confirmed by the author.
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
ORIGIN
|
|
12
|
+
--------------------------------------------------------------------------
|
|
13
|
+
|
|
14
|
+
EAN-5 is the five-digit EAN/UPC add-on symbol used as a supplement to a
|
|
15
|
+
primary EAN or UPC symbol. This implementation covers the published 3/9
|
|
16
|
+
checksum, parity and guard geometry.
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
SPECIFICATION
|
|
20
|
+
--------------------------------------------------------------------------
|
|
21
|
+
|
|
22
|
+
ISO/IEC 15420 — EAN/UPC bar code symbology specification.
|
|
23
|
+
GS1 General Specifications, GS1 AISBL — freely published; redistribution
|
|
24
|
+
terms are GS1's own [LEGAL REVIEW]
|
|
25
|
+
|
|
26
|
+
Specification TEXT is copyrighted by its publisher. The SYMBOLOGY it
|
|
27
|
+
describes is not — an encoding scheme is a system, not a work of
|
|
28
|
+
authorship. This project implements the symbology; it does not reproduce,
|
|
29
|
+
redistribute or excerpt any specification document.
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
PATENT STATUS
|
|
33
|
+
--------------------------------------------------------------------------
|
|
34
|
+
|
|
35
|
+
The originating patents date from the 1970s-1980s and are understood to
|
|
36
|
+
have expired long ago. [LEGAL REVIEW]
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
TRADEMARK
|
|
40
|
+
--------------------------------------------------------------------------
|
|
41
|
+
|
|
42
|
+
"GS1" and its symbology names are trademarks of GS1 AISBL.
|
|
43
|
+
|
|
44
|
+
A trademark does not restrict implementing a symbology. It restricts
|
|
45
|
+
branding — how a product names and presents itself.
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
IMPLEMENTATION BASIS IN THIS PROJECT
|
|
49
|
+
--------------------------------------------------------------------------
|
|
50
|
+
|
|
51
|
+
EAN-5 supplement is implemented here from published descriptions of the format,
|
|
52
|
+
which are systems and facts rather than works of authorship. No source
|
|
53
|
+
code or constant table from any other barcode implementation is copied or
|
|
54
|
+
shipped. Public technical material and independent implementations may be
|
|
55
|
+
consulted for engineering review or black-box verification; provenance is
|
|
56
|
+
recorded in NOTICE.md.
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
CONCLUSION
|
|
60
|
+
--------------------------------------------------------------------------
|
|
61
|
+
|
|
62
|
+
The original add-on implementation is distributed under the MIT License.
|
|
63
|
+
Generic camera read capability remains intentionally separate from the
|
|
64
|
+
direct matrix helper.
|
|
65
|
+
|
|
66
|
+
References relied upon:
|
|
67
|
+
- ISO/IEC 15420, ISO/IEC
|
|
68
|
+
- GS1 General Specifications, GS1 AISBL — freely published;
|
|
69
|
+
redistribution terms are GS1's own [LEGAL REVIEW]
|
|
70
|
+
- ZXing-C++ add-on black-box check, https://github.com/zxing-cpp/zxing-cpp
|
|
71
|
+
|
|
72
|
+
This is an engineering assessment, not legal advice. Items marked
|
|
73
|
+
[TO VERIFY] have not been independently confirmed by the author. If your
|
|
74
|
+
use is commercially sensitive, obtain your own legal review.
|
package/licenses/ean-8.license
CHANGED
|
@@ -4,7 +4,7 @@ EAN-8 — format provenance and usability
|
|
|
4
4
|
This file records where the EAN-8 symbology comes from, what governs
|
|
5
5
|
it, and the basis on which this project implements and redistributes it.
|
|
6
6
|
|
|
7
|
-
It is an ENGINEERING INVENTORY, NOT LEGAL ADVICE. Items
|
|
7
|
+
It is an ENGINEERING INVENTORY, NOT LEGAL ADVICE. Items marked [TO VERIFY]
|
|
8
8
|
have not been independently confirmed by the author.
|
|
9
9
|
|
|
10
10
|
|
|
@@ -20,7 +20,7 @@ SPECIFICATION
|
|
|
20
20
|
|
|
21
21
|
ISO/IEC 15420 — EAN/UPC bar code symbology specification.
|
|
22
22
|
GS1 General Specifications, GS1 AISBL — freely published; redistribution
|
|
23
|
-
terms are GS1's own [
|
|
23
|
+
terms are GS1's own [LEGAL REVIEW]
|
|
24
24
|
|
|
25
25
|
Specification TEXT is copyrighted by its publisher. The SYMBOLOGY it
|
|
26
26
|
describes is not — an encoding scheme is a system, not a work of
|
|
@@ -32,7 +32,7 @@ PATENT STATUS
|
|
|
32
32
|
--------------------------------------------------------------------------
|
|
33
33
|
|
|
34
34
|
The originating patents date from the 1970s-1980s and are understood to
|
|
35
|
-
have expired long ago. [
|
|
35
|
+
have expired long ago. [LEGAL REVIEW]
|
|
36
36
|
|
|
37
37
|
|
|
38
38
|
TRADEMARK
|
|
@@ -49,8 +49,10 @@ IMPLEMENTATION BASIS IN THIS PROJECT
|
|
|
49
49
|
|
|
50
50
|
EAN-8 is implemented here from published descriptions of the format,
|
|
51
51
|
which are systems and facts rather than works of authorship. No source
|
|
52
|
-
code
|
|
53
|
-
|
|
52
|
+
code or constant table from any other barcode implementation is copied or
|
|
53
|
+
shipped. Public technical material and independent implementations may be
|
|
54
|
+
consulted for engineering review or black-box verification; provenance is
|
|
55
|
+
recorded in NOTICE.md.
|
|
54
56
|
|
|
55
57
|
|
|
56
58
|
CONCLUSION
|
|
@@ -63,8 +65,8 @@ is distributed under the MIT License with no additional restriction.
|
|
|
63
65
|
References relied upon:
|
|
64
66
|
- ISO/IEC 15420, ISO/IEC
|
|
65
67
|
- GS1 General Specifications, GS1 AISBL — freely published;
|
|
66
|
-
redistribution terms are GS1's own [
|
|
68
|
+
redistribution terms are GS1's own [LEGAL REVIEW]
|
|
67
69
|
|
|
68
|
-
This is an engineering assessment, not legal advice.
|
|
69
|
-
|
|
70
|
+
This is an engineering assessment, not legal advice. Items marked
|
|
71
|
+
[TO VERIFY] have not been independently confirmed by the author. If your
|
|
70
72
|
use is commercially sensitive, obtain your own legal review.
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
FrameQR Code — format provenance and usability
|
|
2
|
+
==========================================================================
|
|
3
|
+
|
|
4
|
+
This file records where the FrameQR Code symbology comes from, what governs
|
|
5
|
+
it, and the basis on which this project implements and redistributes it.
|
|
6
|
+
|
|
7
|
+
It is an ENGINEERING INVENTORY, NOT LEGAL ADVICE. Items marked [TO VERIFY]
|
|
8
|
+
have not been independently confirmed by the author.
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
ORIGIN
|
|
12
|
+
--------------------------------------------------------------------------
|
|
13
|
+
|
|
14
|
+
DENSO WAVE publicly describes FrameQR(R) as a proprietary QR-family
|
|
15
|
+
product with a freely shaped canvas and dedicated generation and reading
|
|
16
|
+
software. The public material does not publish the complete bitstream,
|
|
17
|
+
placement or error-correction rules required for native interoperability.
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
SPECIFICATION
|
|
21
|
+
--------------------------------------------------------------------------
|
|
22
|
+
|
|
23
|
+
DENSO WAVE public FrameQR material, including the product overview
|
|
24
|
+
and the public announcement. The proprietary format definition is not
|
|
25
|
+
reproduced here. This project implements the separate FrameQR Code
|
|
26
|
+
profile on an ISO/IEC 18004 QR Model 2 baseline.
|
|
27
|
+
|
|
28
|
+
Specification TEXT is copyrighted by its publisher. The SYMBOLOGY it
|
|
29
|
+
describes is not — an encoding scheme is a system, not a work of
|
|
30
|
+
authorship. This project implements the symbology; it does not reproduce,
|
|
31
|
+
redistribute or excerpt any specification document.
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
PATENT STATUS
|
|
35
|
+
--------------------------------------------------------------------------
|
|
36
|
+
|
|
37
|
+
DENSO WAVE's FrameQR patent position, licensing terms and complete
|
|
38
|
+
patent-family status have not been independently established. The public
|
|
39
|
+
product material is not treated as a licence to implement native FrameQR.
|
|
40
|
+
[LEGAL REVIEW]
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
TRADEMARK
|
|
44
|
+
--------------------------------------------------------------------------
|
|
45
|
+
|
|
46
|
+
FrameQR and Frame QR are associated with DENSO WAVE and may be protected
|
|
47
|
+
marks. This project uses the name only to explain the compatibility
|
|
48
|
+
boundary and does not claim endorsement or native DENSO compatibility.
|
|
49
|
+
[LEGAL REVIEW]
|
|
50
|
+
|
|
51
|
+
A trademark does not restrict implementing a symbology. It restricts
|
|
52
|
+
branding — how a product names and presents itself.
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
IMPLEMENTATION BASIS IN THIS PROJECT
|
|
56
|
+
--------------------------------------------------------------------------
|
|
57
|
+
|
|
58
|
+
FrameQR Code is implemented here from published descriptions of the format,
|
|
59
|
+
which are systems and facts rather than works of authorship. No source
|
|
60
|
+
code or constant table from any other barcode implementation is copied or
|
|
61
|
+
shipped. Public technical material and independent implementations may be
|
|
62
|
+
consulted for engineering review or black-box verification; provenance is
|
|
63
|
+
recorded in NOTICE.md.
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
CONCLUSION
|
|
67
|
+
--------------------------------------------------------------------------
|
|
68
|
+
|
|
69
|
+
The distributed implementation is the original, non-certified FrameQR Code
|
|
70
|
+
profile `sythos-canvas-qr/1`, not DENSO FrameQR. It reserves a
|
|
71
|
+
bounded artwork canvas inside a QR Model 2 ECC-H symbol and does not claim
|
|
72
|
+
native FrameQR interoperability. Third-party software cited here was used
|
|
73
|
+
exclusively as an independent verification and cross-checking tool; no
|
|
74
|
+
third-party source code or table is copied or shipped. [LEGAL REVIEW]
|
|
75
|
+
|
|
76
|
+
References relied upon:
|
|
77
|
+
- DENSO WAVE FrameQR overview, https://www.qrcode.com/en/codes/frameqr.html
|
|
78
|
+
- DENSO WAVE FrameQR product page, https://www.denso-wave.com/en/system/qr/product/frame.html
|
|
79
|
+
- DENSO WAVE FrameQR announcement, https://www.denso-wave.com/en/adcd/info/detail__272.html
|
|
80
|
+
- ZXing Java 3.5.3 independent black-box capability check; FRAME_QR is not an exposed native format
|
|
81
|
+
|
|
82
|
+
This is an engineering assessment, not legal advice. Items marked
|
|
83
|
+
[TO VERIFY] have not been independently confirmed by the author. If your
|
|
84
|
+
use is commercially sensitive, obtain your own legal review.
|
package/licenses/gs1-128.license
CHANGED
|
@@ -4,7 +4,7 @@ GS1-128 — format provenance and usability
|
|
|
4
4
|
This file records where the GS1-128 symbology comes from, what governs
|
|
5
5
|
it, and the basis on which this project implements and redistributes it.
|
|
6
6
|
|
|
7
|
-
It is an ENGINEERING INVENTORY, NOT LEGAL ADVICE. Items
|
|
7
|
+
It is an ENGINEERING INVENTORY, NOT LEGAL ADVICE. Items marked [TO VERIFY]
|
|
8
8
|
have not been independently confirmed by the author.
|
|
9
9
|
|
|
10
10
|
|
|
@@ -21,7 +21,7 @@ SPECIFICATION
|
|
|
21
21
|
|
|
22
22
|
ISO/IEC 15417 — Code 128 (the underlying symbology).
|
|
23
23
|
GS1 General Specifications, GS1 AISBL — freely published; redistribution
|
|
24
|
-
terms are GS1's own [
|
|
24
|
+
terms are GS1's own [LEGAL REVIEW] (the Application Identifier rules)
|
|
25
25
|
|
|
26
26
|
Specification TEXT is copyrighted by its publisher. The SYMBOLOGY it
|
|
27
27
|
describes is not — an encoding scheme is a system, not a work of
|
|
@@ -32,7 +32,7 @@ redistribute or excerpt any specification document.
|
|
|
32
32
|
PATENT STATUS
|
|
33
33
|
--------------------------------------------------------------------------
|
|
34
34
|
|
|
35
|
-
Inherits Code 128's position; understood expired. [
|
|
35
|
+
Inherits Code 128's position; understood expired. [LEGAL REVIEW]
|
|
36
36
|
|
|
37
37
|
|
|
38
38
|
TRADEMARK
|
|
@@ -50,8 +50,10 @@ IMPLEMENTATION BASIS IN THIS PROJECT
|
|
|
50
50
|
|
|
51
51
|
GS1-128 is implemented here from published descriptions of the format,
|
|
52
52
|
which are systems and facts rather than works of authorship. No source
|
|
53
|
-
code
|
|
54
|
-
|
|
53
|
+
code or constant table from any other barcode implementation is copied or
|
|
54
|
+
shipped. Public technical material and independent implementations may be
|
|
55
|
+
consulted for engineering review or black-box verification; provenance is
|
|
56
|
+
recorded in NOTICE.md.
|
|
55
57
|
|
|
56
58
|
|
|
57
59
|
CONCLUSION
|
|
@@ -64,8 +66,8 @@ is distributed under the MIT License with no additional restriction.
|
|
|
64
66
|
References relied upon:
|
|
65
67
|
- ISO/IEC 15417, ISO/IEC
|
|
66
68
|
- GS1 General Specifications, GS1 AISBL — freely published;
|
|
67
|
-
redistribution terms are GS1's own [
|
|
69
|
+
redistribution terms are GS1's own [LEGAL REVIEW]
|
|
68
70
|
|
|
69
|
-
This is an engineering assessment, not legal advice.
|
|
70
|
-
|
|
71
|
+
This is an engineering assessment, not legal advice. Items marked
|
|
72
|
+
[TO VERIFY] have not been independently confirmed by the author. If your
|
|
71
73
|
use is commercially sensitive, obtain your own legal review.
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
GS1 DataBar data-layer codecs — format provenance and usability
|
|
2
|
+
==========================================================================
|
|
3
|
+
|
|
4
|
+
This file records where the GS1 DataBar data-layer codecs symbology comes from, what governs
|
|
5
|
+
it, and the basis on which this project implements and redistributes it.
|
|
6
|
+
|
|
7
|
+
It is an ENGINEERING INVENTORY, NOT LEGAL ADVICE. Items marked [TO VERIFY]
|
|
8
|
+
have not been independently confirmed by the author.
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
ORIGIN
|
|
12
|
+
--------------------------------------------------------------------------
|
|
13
|
+
|
|
14
|
+
GS1 DataBar is a family of seven GS1 linear symbologies defined by ISO/IEC
|
|
15
|
+
24724 and GS1 specifications. This release contains original GTIN and GS1
|
|
16
|
+
element-string data-layer codecs; physical bar-pattern support is limited
|
|
17
|
+
to the variants explicitly listed by the package.
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
SPECIFICATION
|
|
21
|
+
--------------------------------------------------------------------------
|
|
22
|
+
|
|
23
|
+
ISO/IEC 24724 — GS1 DataBar bar code symbology specification.
|
|
24
|
+
GS1 General Specifications, GS1 AISBL — freely published; redistribution
|
|
25
|
+
terms are GS1's own [LEGAL REVIEW]
|
|
26
|
+
GS1 public DataBar overview,
|
|
27
|
+
https://www.gs1.org/standards/barcodes/databar
|
|
28
|
+
|
|
29
|
+
Specification TEXT is copyrighted by its publisher. The SYMBOLOGY it
|
|
30
|
+
describes is not — an encoding scheme is a system, not a work of
|
|
31
|
+
authorship. This project implements the symbology; it does not reproduce,
|
|
32
|
+
redistribute or excerpt any specification document.
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
PATENT STATUS
|
|
36
|
+
--------------------------------------------------------------------------
|
|
37
|
+
|
|
38
|
+
GS1's intellectual-property policy and third-party patent declarations
|
|
39
|
+
require a dedicated review for deployed implementations. No unconditional
|
|
40
|
+
patent-free or public-domain claim is made. [LEGAL REVIEW]
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
TRADEMARK
|
|
44
|
+
--------------------------------------------------------------------------
|
|
45
|
+
|
|
46
|
+
"GS1" and its symbology names are trademarks of GS1 AISBL. "GS1 DataBar"
|
|
47
|
+
is used descriptively with attribution and does not imply endorsement or
|
|
48
|
+
certification.
|
|
49
|
+
|
|
50
|
+
A trademark does not restrict implementing a symbology. It restricts
|
|
51
|
+
branding — how a product names and presents itself.
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
IMPLEMENTATION BASIS IN THIS PROJECT
|
|
55
|
+
--------------------------------------------------------------------------
|
|
56
|
+
|
|
57
|
+
GS1 DataBar data-layer codecs is implemented here from published descriptions of the format,
|
|
58
|
+
which are systems and facts rather than works of authorship. No source
|
|
59
|
+
code or constant table from any other barcode implementation is copied or
|
|
60
|
+
shipped. Public technical material and independent implementations may be
|
|
61
|
+
consulted for engineering review or black-box verification; provenance is
|
|
62
|
+
recorded in NOTICE.md.
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
CONCLUSION
|
|
66
|
+
--------------------------------------------------------------------------
|
|
67
|
+
|
|
68
|
+
Only original Sythos DataBar code is distributed under the MIT License.
|
|
69
|
+
Unsupported physical variants and conformance questions are intentionally
|
|
70
|
+
not presented as completed capability. [LEGAL REVIEW]
|
|
71
|
+
|
|
72
|
+
References relied upon:
|
|
73
|
+
- ISO/IEC 24724, ISO/IEC
|
|
74
|
+
- GS1 General Specifications, GS1 AISBL — freely published;
|
|
75
|
+
redistribution terms are GS1's own [LEGAL REVIEW]
|
|
76
|
+
- GS1 DataBar overview, https://www.gs1.org/standards/barcodes/databar
|
|
77
|
+
- GS1 IP policy, https://ref.gs1.org/gs1/ip-policy/
|
|
78
|
+
|
|
79
|
+
This is an engineering assessment, not legal advice. Items marked
|
|
80
|
+
[TO VERIFY] have not been independently confirmed by the author. If your
|
|
81
|
+
use is commercially sensitive, obtain your own legal review.
|
package/licenses/isbn.license
CHANGED
|
@@ -4,7 +4,7 @@ ISBN (Bookland EAN-13) — format provenance and usability
|
|
|
4
4
|
This file records where the ISBN (Bookland EAN-13) symbology comes from, what governs
|
|
5
5
|
it, and the basis on which this project implements and redistributes it.
|
|
6
6
|
|
|
7
|
-
It is an ENGINEERING INVENTORY, NOT LEGAL ADVICE. Items
|
|
7
|
+
It is an ENGINEERING INVENTORY, NOT LEGAL ADVICE. Items marked [TO VERIFY]
|
|
8
8
|
have not been independently confirmed by the author.
|
|
9
9
|
|
|
10
10
|
|
|
@@ -23,7 +23,7 @@ SPECIFICATION
|
|
|
23
23
|
ISO 2108 — International Standard Book Number (the numbering rules).
|
|
24
24
|
ISO/IEC 15420 — EAN/UPC bar code symbology specification (the symbol).
|
|
25
25
|
GS1 General Specifications, GS1 AISBL — freely published; redistribution
|
|
26
|
-
terms are GS1's own [
|
|
26
|
+
terms are GS1's own [LEGAL REVIEW]
|
|
27
27
|
|
|
28
28
|
Specification TEXT is copyrighted by its publisher. The SYMBOLOGY it
|
|
29
29
|
describes is not — an encoding scheme is a system, not a work of
|
|
@@ -43,7 +43,7 @@ TRADEMARK
|
|
|
43
43
|
|
|
44
44
|
No live trademark restriction is known on implementing ISBN encoding.
|
|
45
45
|
"ISBN" is a standard designation administered by the International ISBN
|
|
46
|
-
Agency. [
|
|
46
|
+
Agency. [LEGAL REVIEW]
|
|
47
47
|
|
|
48
48
|
A trademark does not restrict implementing a symbology. It restricts
|
|
49
49
|
branding — how a product names and presents itself.
|
|
@@ -54,8 +54,10 @@ IMPLEMENTATION BASIS IN THIS PROJECT
|
|
|
54
54
|
|
|
55
55
|
ISBN (Bookland EAN-13) is implemented here from published descriptions of the format,
|
|
56
56
|
which are systems and facts rather than works of authorship. No source
|
|
57
|
-
code
|
|
58
|
-
|
|
57
|
+
code or constant table from any other barcode implementation is copied or
|
|
58
|
+
shipped. Public technical material and independent implementations may be
|
|
59
|
+
consulted for engineering review or black-box verification; provenance is
|
|
60
|
+
recorded in NOTICE.md.
|
|
59
61
|
|
|
60
62
|
|
|
61
63
|
CONCLUSION
|
|
@@ -69,8 +71,8 @@ References relied upon:
|
|
|
69
71
|
- ISO 2108, ISO
|
|
70
72
|
- ISO/IEC 15420, ISO/IEC
|
|
71
73
|
- GS1 General Specifications, GS1 AISBL — freely published;
|
|
72
|
-
redistribution terms are GS1's own [
|
|
74
|
+
redistribution terms are GS1's own [LEGAL REVIEW]
|
|
73
75
|
|
|
74
|
-
This is an engineering assessment, not legal advice.
|
|
75
|
-
|
|
76
|
+
This is an engineering assessment, not legal advice. Items marked
|
|
77
|
+
[TO VERIFY] have not been independently confirmed by the author. If your
|
|
76
78
|
use is commercially sensitive, obtain your own legal review.
|
package/licenses/itf-14.license
CHANGED
|
@@ -4,7 +4,7 @@ ITF-14 — format provenance and usability
|
|
|
4
4
|
This file records where the ITF-14 symbology comes from, what governs
|
|
5
5
|
it, and the basis on which this project implements and redistributes it.
|
|
6
6
|
|
|
7
|
-
It is an ENGINEERING INVENTORY, NOT LEGAL ADVICE. Items
|
|
7
|
+
It is an ENGINEERING INVENTORY, NOT LEGAL ADVICE. Items marked [TO VERIFY]
|
|
8
8
|
have not been independently confirmed by the author.
|
|
9
9
|
|
|
10
10
|
|
|
@@ -20,7 +20,7 @@ SPECIFICATION
|
|
|
20
20
|
|
|
21
21
|
ISO/IEC 16390 — Interleaved 2 of 5 (the underlying symbology).
|
|
22
22
|
GS1 General Specifications, GS1 AISBL — freely published; redistribution
|
|
23
|
-
terms are GS1's own [
|
|
23
|
+
terms are GS1's own [LEGAL REVIEW] (the fourteen-digit GTIN rules)
|
|
24
24
|
|
|
25
25
|
Specification TEXT is copyrighted by its publisher. The SYMBOLOGY it
|
|
26
26
|
describes is not — an encoding scheme is a system, not a work of
|
|
@@ -31,7 +31,7 @@ redistribute or excerpt any specification document.
|
|
|
31
31
|
PATENT STATUS
|
|
32
32
|
--------------------------------------------------------------------------
|
|
33
33
|
|
|
34
|
-
Inherits ITF's position; understood expired. [
|
|
34
|
+
Inherits ITF's position; understood expired. [LEGAL REVIEW]
|
|
35
35
|
|
|
36
36
|
|
|
37
37
|
TRADEMARK
|
|
@@ -48,8 +48,10 @@ IMPLEMENTATION BASIS IN THIS PROJECT
|
|
|
48
48
|
|
|
49
49
|
ITF-14 is implemented here from published descriptions of the format,
|
|
50
50
|
which are systems and facts rather than works of authorship. No source
|
|
51
|
-
code
|
|
52
|
-
|
|
51
|
+
code or constant table from any other barcode implementation is copied or
|
|
52
|
+
shipped. Public technical material and independent implementations may be
|
|
53
|
+
consulted for engineering review or black-box verification; provenance is
|
|
54
|
+
recorded in NOTICE.md.
|
|
53
55
|
|
|
54
56
|
|
|
55
57
|
CONCLUSION
|
|
@@ -62,8 +64,8 @@ is distributed under the MIT License with no additional restriction.
|
|
|
62
64
|
References relied upon:
|
|
63
65
|
- ISO/IEC 16390, ISO/IEC
|
|
64
66
|
- GS1 General Specifications, GS1 AISBL — freely published;
|
|
65
|
-
redistribution terms are GS1's own [
|
|
67
|
+
redistribution terms are GS1's own [LEGAL REVIEW]
|
|
66
68
|
|
|
67
|
-
This is an engineering assessment, not legal advice.
|
|
68
|
-
|
|
69
|
+
This is an engineering assessment, not legal advice. Items marked
|
|
70
|
+
[TO VERIFY] have not been independently confirmed by the author. If your
|
|
69
71
|
use is commercially sensitive, obtain your own legal review.
|