@sythos/js_barcode_universal 1.2.5 → 1.3.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/LICENSE +8 -1
- package/NOTICE.md +3 -0
- package/README.md +548 -463
- package/bundle/sythos-barcode.esm.js +2377 -3
- package/bundle/sythos-barcode.js +2365 -3
- package/examples/create.html +1009 -730
- package/licenses/README.md +35 -58
- package/licenses/aztec-code.license +15 -13
- 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/data-matrix.license +15 -13
- package/licenses/ean-13.license +10 -8
- package/licenses/ean-8.license +10 -8
- package/licenses/frameqr.license +84 -0
- package/licenses/gs1-128.license +10 -8
- 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 +97 -88
- package/src/datamatrix/decoder.js +262 -262
- package/src/datamatrix/detector.js +225 -225
- package/src/datamatrix/encoder.js +191 -191
- package/src/datamatrix/index.js +42 -42
- package/src/datamatrix/tables.js +123 -123
- package/src/frameqr/decoder.js +239 -0
- package/src/frameqr/detector.js +192 -0
- package/src/frameqr/encoder.js +156 -0
- package/src/frameqr/index.js +42 -0
- package/src/frameqr/tables.js +270 -0
- package/src/index.js +91 -2
- package/src/microqr/decoder.js +245 -0
- package/src/microqr/detector.js +355 -0
- package/src/microqr/encoder.js +269 -0
- package/src/microqr/index.js +36 -0
- package/src/microqr/tables.js +316 -0
- package/src/oned/index.js +59 -59
- package/src/rmqr/decoder.js +101 -0
- package/src/rmqr/detector.js +90 -0
- package/src/rmqr/encoder.js +172 -0
- package/src/rmqr/index.js +37 -0
- package/src/rmqr/tables.js +154 -0
package/licenses/README.md
CHANGED
|
@@ -8,65 +8,42 @@ on which this project implements and redistributes it.
|
|
|
8
8
|
The library is MIT licensed in full — see [`../LICENSE`](../LICENSE), whose
|
|
9
9
|
appendix carries the consolidated inventory these files expand on.
|
|
10
10
|
|
|
11
|
-
| Format | File |
|
|
11
|
+
| Format | File | `[TO VERIFY]` items |
|
|
12
12
|
|---|---|---:|
|
|
13
|
-
| Aztec Code | [`aztec-code.license`](aztec-code.license) |
|
|
14
|
-
| QR Code | [`qr-code.license`](qr-code.license) |
|
|
15
|
-
| Data Matrix ECC 200 | [`data-matrix.license`](data-matrix.license) |
|
|
16
|
-
| PDF417 | [`pdf417.license`](pdf417.license) |
|
|
17
|
-
| MicroPDF417 | [`micropdf417.license`](micropdf417.license) |
|
|
18
|
-
| EAN-13 | [`ean-13.license`](ean-13.license) |
|
|
19
|
-
| EAN-8 | [`ean-8.license`](ean-8.license) |
|
|
20
|
-
| UPC-A | [`upc-a.license`](upc-a.license) |
|
|
21
|
-
| UPC-E | [`upc-e.license`](upc-e.license) |
|
|
22
|
-
| ISBN (Bookland EAN-13) | [`isbn.license`](isbn.license) |
|
|
23
|
-
| Code 128 | [`code-128.license`](code-128.license) |
|
|
24
|
-
| GS1-128 | [`gs1-128.license`](gs1-128.license) |
|
|
25
|
-
| Code 39 | [`code-39.license`](code-39.license) |
|
|
26
|
-
| Code 93 | [`code-93.license`](code-93.license) |
|
|
27
|
-
| ITF (Interleaved 2 of 5) | [`itf.license`](itf.license) |
|
|
28
|
-
| ITF-14 | [`itf-14.license`](itf-14.license) |
|
|
29
|
-
| Codabar | [`codabar.license`](codabar.license) |
|
|
30
|
-
| Code 11 | [`code-11.license`](code-11.license) |
|
|
31
|
-
| MSI Plessey | [`msi-plessey.license`](msi-plessey.license) |
|
|
32
|
-
| Pharmacode | [`pharmacode.license`](pharmacode.license) |
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
These labels distinguish engineering facts from unresolved legal questions.
|
|
49
|
-
They do not certify that a format is free of patent, trademark or copyright
|
|
50
|
-
constraints in every country.
|
|
51
|
-
|
|
52
|
-
The primary references used for the current review include:
|
|
53
|
-
|
|
54
|
-
- [ISO/IEC 24778:2024 — Aztec Code](https://www.iso.org/standard/82441.html)
|
|
55
|
-
- [GS1 EAN/UPC standards](https://www.gs1.org/standards/barcodes/ean-upc)
|
|
56
|
-
- [GS1 Application Identifiers](https://www.gs1.org/gs1-application-identifiers)
|
|
57
|
-
- [GS1 DataMatrix Guideline](https://www.gs1.org/sites/default/files/docs/barcodes/GS1_DataMatrix_Guideline.pdf)
|
|
58
|
-
- [ISO/IEC 15438:2015 — PDF417](https://www.iso.org/standard/65502.html)
|
|
59
|
-
- [ISO/IEC 24728:2006 — MicroPDF417](https://www.iso.org/standard/38838.html)
|
|
60
|
-
- [MicroPDF417 overview](https://en.wikipedia.org/wiki/MicroPDF417)
|
|
61
|
-
- [US 6,047,892 record](https://patents.google.com/patent/US6047892A/en) and [direct PDF](https://patentimages.storage.googleapis.com/0a/79/f5/e8d374043414f3/US6047892.pdf)
|
|
62
|
-
- [ZXing-C++ consultative interoperability reference](https://github.com/zxing-cpp/zxing-cpp)
|
|
63
|
-
- [AIM USS-PDF417 public reference](https://www.expresscorp.com/uploads/specifications/44/USS-PDF-417.pdf)
|
|
64
|
-
- [US 5,243,655 patent record](https://patents.google.com/patent/US5243655A/en)
|
|
65
|
-
- [US 5,304,786 patent record](https://patents.google.com/patent/US5304786A/en)
|
|
66
|
-
- [DENSO QR Code technology position](https://www.denso.com/global/home/business/innovation/qrcode/)
|
|
67
|
-
- [USPTO Aztec patent dedication notice](https://www.uspto.gov/web/offices/com/sol/og/1997/week24/patdisc.htm)
|
|
68
|
-
- [USPTO patent-term guidance](https://www.uspto.gov/web/offices/pac/mpep/s2701.html)
|
|
69
|
-
- [U.S. Copyright Office — ideas, methods and systems](https://www.copyright.gov/circs/circ31.pdf)
|
|
13
|
+
| Aztec Code | [`aztec-code.license`](aztec-code.license) | 2 |
|
|
14
|
+
| QR Code | [`qr-code.license`](qr-code.license) | 2 |
|
|
15
|
+
| Data Matrix ECC 200 | [`data-matrix.license`](data-matrix.license) | 2 |
|
|
16
|
+
| PDF417 | [`pdf417.license`](pdf417.license) | 2 |
|
|
17
|
+
| MicroPDF417 | [`micropdf417.license`](micropdf417.license) | 2 |
|
|
18
|
+
| EAN-13 | [`ean-13.license`](ean-13.license) | 2 |
|
|
19
|
+
| EAN-8 | [`ean-8.license`](ean-8.license) | 2 |
|
|
20
|
+
| UPC-A | [`upc-a.license`](upc-a.license) | 2 |
|
|
21
|
+
| UPC-E | [`upc-e.license`](upc-e.license) | 2 |
|
|
22
|
+
| ISBN (Bookland EAN-13) | [`isbn.license`](isbn.license) | 2 |
|
|
23
|
+
| Code 128 | [`code-128.license`](code-128.license) | 2 |
|
|
24
|
+
| GS1-128 | [`gs1-128.license`](gs1-128.license) | 2 |
|
|
25
|
+
| Code 39 | [`code-39.license`](code-39.license) | 2 |
|
|
26
|
+
| Code 93 | [`code-93.license`](code-93.license) | 2 |
|
|
27
|
+
| ITF (Interleaved 2 of 5) | [`itf.license`](itf.license) | 2 |
|
|
28
|
+
| ITF-14 | [`itf-14.license`](itf-14.license) | 2 |
|
|
29
|
+
| Codabar | [`codabar.license`](codabar.license) | 2 |
|
|
30
|
+
| Code 11 | [`code-11.license`](code-11.license) | 2 |
|
|
31
|
+
| MSI Plessey | [`msi-plessey.license`](msi-plessey.license) | 2 |
|
|
32
|
+
| Pharmacode | [`pharmacode.license`](pharmacode.license) | 2 |
|
|
33
|
+
| Micro QR Code | [`micro-qr.license`](micro-qr.license) | 2 |
|
|
34
|
+
| rMQR Code | [`rmqr.license`](rmqr.license) | 2 |
|
|
35
|
+
| Frame QR / Sythos Canvas QR profile | [`frameqr.license`](frameqr.license) | 2 |
|
|
36
|
+
|
|
37
|
+
## On the `[TO VERIFY]` markers
|
|
38
|
+
|
|
39
|
+
They are the point, not a defect. Patent expiry, trademark status and
|
|
40
|
+
rights-holder positions are exactly the claims where being confidently
|
|
41
|
+
wrong causes harm, so anything not independently confirmed is marked rather
|
|
42
|
+
than smoothed over. A file with more markers is being more honest, not less
|
|
43
|
+
reliable.
|
|
44
|
+
|
|
45
|
+
**No trademark search was performed.** Where a file says no mark is known,
|
|
46
|
+
that describes the limit of what the author knows, not a finding.
|
|
70
47
|
|
|
71
48
|
These are engineering assessments, **not legal advice**. If your use is
|
|
72
49
|
commercially sensitive, obtain your own legal review.
|
|
@@ -4,16 +4,16 @@ Aztec Code — format provenance and usability
|
|
|
4
4
|
This file records where the Aztec Code 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
|
|
|
11
11
|
ORIGIN
|
|
12
12
|
--------------------------------------------------------------------------
|
|
13
13
|
|
|
14
|
-
Created by Andrew Longacre, Jr. of Welch Allyn in the 1990s. The
|
|
15
|
-
|
|
16
|
-
|
|
14
|
+
Created by Andrew Longacre, Jr. of Welch Allyn in the 1990s. The exact
|
|
15
|
+
attribution, ownership history and release terms have not been
|
|
16
|
+
independently confirmed by the author. [LEGAL REVIEW]
|
|
17
17
|
|
|
18
18
|
|
|
19
19
|
SPECIFICATION
|
|
@@ -32,16 +32,16 @@ redistribute or excerpt any specification document.
|
|
|
32
32
|
PATENT STATUS
|
|
33
33
|
--------------------------------------------------------------------------
|
|
34
34
|
|
|
35
|
-
The
|
|
36
|
-
|
|
37
|
-
[
|
|
35
|
+
The status of patents associated with Aztec Code, including any original
|
|
36
|
+
rights-holder statements and their current effect, has not been
|
|
37
|
+
independently confirmed by the author. [LEGAL REVIEW]
|
|
38
38
|
|
|
39
39
|
|
|
40
40
|
TRADEMARK
|
|
41
41
|
--------------------------------------------------------------------------
|
|
42
42
|
|
|
43
43
|
The current registration status and ownership of the words "Aztec Code"
|
|
44
|
-
have not been independently established. [
|
|
44
|
+
have not been independently established. [LEGAL REVIEW] The name is used
|
|
45
45
|
descriptively here and does not imply endorsement by any rights holder.
|
|
46
46
|
|
|
47
47
|
A trademark does not restrict implementing a symbology. It restricts
|
|
@@ -53,8 +53,10 @@ IMPLEMENTATION BASIS IN THIS PROJECT
|
|
|
53
53
|
|
|
54
54
|
Aztec Code is implemented here from published descriptions of the format,
|
|
55
55
|
which are systems and facts rather than works of authorship. No source
|
|
56
|
-
code
|
|
57
|
-
|
|
56
|
+
code or constant table from any other barcode implementation is copied or
|
|
57
|
+
shipped. Public technical material and independent implementations may be
|
|
58
|
+
consulted for engineering review or black-box verification; provenance is
|
|
59
|
+
recorded in NOTICE.md.
|
|
58
60
|
|
|
59
61
|
|
|
60
62
|
CONCLUSION
|
|
@@ -63,12 +65,12 @@ CONCLUSION
|
|
|
63
65
|
This project's original implementation is distributed under the MIT
|
|
64
66
|
License. The ISO/IEC reference establishes the technical standard; this
|
|
65
67
|
engineering inventory does not claim to have resolved the patent or
|
|
66
|
-
trademark entries that remain
|
|
68
|
+
trademark entries that remain marked [LEGAL REVIEW].
|
|
67
69
|
|
|
68
70
|
References relied upon:
|
|
69
71
|
- ISO/IEC 24778:2024, ISO/IEC
|
|
70
72
|
- Aztec Code origin, patent position and trademark status [LEGAL REVIEW]
|
|
71
73
|
|
|
72
|
-
This is an engineering assessment, not legal advice.
|
|
73
|
-
|
|
74
|
+
This is an engineering assessment, not legal advice. Items marked
|
|
75
|
+
[TO VERIFY] have not been independently confirmed by the author. If your
|
|
74
76
|
use is commercially sensitive, obtain your own legal review.
|
package/licenses/codabar.license
CHANGED
|
@@ -4,18 +4,18 @@ Codabar — format provenance and usability
|
|
|
4
4
|
This file records where the Codabar 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
|
|
|
11
11
|
ORIGIN
|
|
12
12
|
--------------------------------------------------------------------------
|
|
13
13
|
|
|
14
|
-
Developed in the early 1970s. [LEGAL REVIEW] COMPETING ATTRIBUTIONS
|
|
15
|
-
in secondary sources — Monarch Marking Systems and Pitney Bowes
|
|
16
|
-
cited — so the credit is deliberately NOT treated as settled here
|
|
17
|
-
single originator is asserted. Long used by blood banks, libraries
|
|
18
|
-
courier services.
|
|
14
|
+
Developed in the early 1970s. [LEGAL REVIEW] COMPETING ATTRIBUTIONS
|
|
15
|
+
CIRCULATE in secondary sources — Monarch Marking Systems and Pitney Bowes
|
|
16
|
+
are both cited — so the credit is deliberately NOT treated as settled here
|
|
17
|
+
and no single originator is asserted. Long used by blood banks, libraries
|
|
18
|
+
and courier services.
|
|
19
19
|
|
|
20
20
|
|
|
21
21
|
SPECIFICATION
|
|
@@ -24,7 +24,8 @@ SPECIFICATION
|
|
|
24
24
|
AIM USS-Codabar (Uniform Symbology Specification) is understood to exist,
|
|
25
25
|
but no document number is asserted here because none has been confirmed.
|
|
26
26
|
[LEGAL REVIEW]
|
|
27
|
-
Also known as NW-7, and in the United States as Code 2 of 7. [LEGAL
|
|
27
|
+
Also known as NW-7, and in the United States as Code 2 of 7. [LEGAL
|
|
28
|
+
REVIEW]
|
|
28
29
|
|
|
29
30
|
Specification TEXT is copyrighted by its publisher. The SYMBOLOGY it
|
|
30
31
|
describes is not — an encoding scheme is a system, not a work of
|
|
@@ -36,15 +37,15 @@ PATENT STATUS
|
|
|
36
37
|
--------------------------------------------------------------------------
|
|
37
38
|
|
|
38
39
|
The originating patents date from the 1970s-1980s and are understood to
|
|
39
|
-
have expired long ago. [
|
|
40
|
+
have expired long ago. [LEGAL REVIEW]
|
|
40
41
|
|
|
41
42
|
|
|
42
43
|
TRADEMARK
|
|
43
44
|
--------------------------------------------------------------------------
|
|
44
45
|
|
|
45
46
|
No live trademark restriction on implementing Codabar is known to the
|
|
46
|
-
author. [
|
|
47
|
-
a finding that no mark subsists: no trademark search was carried out.
|
|
47
|
+
author. [LEGAL REVIEW] That is a statement about the author's knowledge,
|
|
48
|
+
not a finding that no mark subsists: no trademark search was carried out.
|
|
48
49
|
|
|
49
50
|
A trademark does not restrict implementing a symbology. It restricts
|
|
50
51
|
branding — how a product names and presents itself.
|
|
@@ -55,8 +56,10 @@ IMPLEMENTATION BASIS IN THIS PROJECT
|
|
|
55
56
|
|
|
56
57
|
Codabar is implemented here from published descriptions of the format,
|
|
57
58
|
which are systems and facts rather than works of authorship. No source
|
|
58
|
-
code
|
|
59
|
-
|
|
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.
|
|
60
63
|
|
|
61
64
|
|
|
62
65
|
CONCLUSION
|
|
@@ -67,8 +70,8 @@ implementable and redistributable, and this project's implementation of it
|
|
|
67
70
|
is distributed under the MIT License with no additional restriction.
|
|
68
71
|
|
|
69
72
|
References relied upon:
|
|
70
|
-
- AIM USS-Codabar [
|
|
73
|
+
- AIM USS-Codabar [LEGAL REVIEW]
|
|
71
74
|
|
|
72
|
-
This is an engineering assessment, not legal advice.
|
|
73
|
-
|
|
75
|
+
This is an engineering assessment, not legal advice. Items marked
|
|
76
|
+
[TO VERIFY] have not been independently confirmed by the author. If your
|
|
74
77
|
use is commercially sensitive, obtain your own legal review.
|
package/licenses/code-11.license
CHANGED
|
@@ -4,7 +4,7 @@ Code 11 — format provenance and usability
|
|
|
4
4
|
This file records where the Code 11 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
|
|
|
@@ -31,15 +31,15 @@ PATENT STATUS
|
|
|
31
31
|
--------------------------------------------------------------------------
|
|
32
32
|
|
|
33
33
|
The originating patents date from the 1970s-1980s and are understood to
|
|
34
|
-
have expired long ago. [
|
|
34
|
+
have expired long ago. [LEGAL REVIEW]
|
|
35
35
|
|
|
36
36
|
|
|
37
37
|
TRADEMARK
|
|
38
38
|
--------------------------------------------------------------------------
|
|
39
39
|
|
|
40
40
|
No live trademark restriction on implementing Code 11 is known to the
|
|
41
|
-
author. [
|
|
42
|
-
a finding that no mark subsists: no trademark search was carried out.
|
|
41
|
+
author. [LEGAL REVIEW] That is a statement about the author's knowledge,
|
|
42
|
+
not a finding that no mark subsists: no trademark search was carried out.
|
|
43
43
|
|
|
44
44
|
A trademark does not restrict implementing a symbology. It restricts
|
|
45
45
|
branding — how a product names and presents itself.
|
|
@@ -50,8 +50,10 @@ IMPLEMENTATION BASIS IN THIS PROJECT
|
|
|
50
50
|
|
|
51
51
|
Code 11 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
|
|
@@ -62,8 +64,8 @@ implementable and redistributable, and this project's implementation of it
|
|
|
62
64
|
is distributed under the MIT License with no additional restriction.
|
|
63
65
|
|
|
64
66
|
References relied upon:
|
|
65
|
-
- AIM published specification for Code 11 [
|
|
67
|
+
- AIM published specification for Code 11 [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.
|
|
@@ -4,7 +4,7 @@ Code 128 — format provenance and usability
|
|
|
4
4
|
This file records where the Code 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
|
|
|
@@ -31,15 +31,15 @@ PATENT STATUS
|
|
|
31
31
|
--------------------------------------------------------------------------
|
|
32
32
|
|
|
33
33
|
The originating patents date from the 1970s-1980s and are understood to
|
|
34
|
-
have expired long ago. [
|
|
34
|
+
have expired long ago. [LEGAL REVIEW]
|
|
35
35
|
|
|
36
36
|
|
|
37
37
|
TRADEMARK
|
|
38
38
|
--------------------------------------------------------------------------
|
|
39
39
|
|
|
40
40
|
No live trademark restriction on implementing Code 128 is known to the
|
|
41
|
-
author. [
|
|
42
|
-
a finding that no mark subsists: no trademark search was carried out.
|
|
41
|
+
author. [LEGAL REVIEW] That is a statement about the author's knowledge,
|
|
42
|
+
not a finding that no mark subsists: no trademark search was carried out.
|
|
43
43
|
|
|
44
44
|
A trademark does not restrict implementing a symbology. It restricts
|
|
45
45
|
branding — how a product names and presents itself.
|
|
@@ -50,8 +50,10 @@ IMPLEMENTATION BASIS IN THIS PROJECT
|
|
|
50
50
|
|
|
51
51
|
Code 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,6 +66,6 @@ is distributed under the MIT License with no additional restriction.
|
|
|
64
66
|
References relied upon:
|
|
65
67
|
- ISO/IEC 15417, ISO/IEC
|
|
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.
|
package/licenses/code-39.license
CHANGED
|
@@ -4,7 +4,7 @@ Code 39 — format provenance and usability
|
|
|
4
4
|
This file records where the Code 39 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
|
|
|
@@ -32,15 +32,15 @@ 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
|
|
39
39
|
--------------------------------------------------------------------------
|
|
40
40
|
|
|
41
41
|
No live trademark restriction on implementing Code 39 is known to the
|
|
42
|
-
author. [
|
|
43
|
-
a finding that no mark subsists: no trademark search was carried out.
|
|
42
|
+
author. [LEGAL REVIEW] That is a statement about the author's knowledge,
|
|
43
|
+
not a finding that no mark subsists: no trademark search was carried out.
|
|
44
44
|
|
|
45
45
|
A trademark does not restrict implementing a symbology. It restricts
|
|
46
46
|
branding — how a product names and presents itself.
|
|
@@ -51,8 +51,10 @@ IMPLEMENTATION BASIS IN THIS PROJECT
|
|
|
51
51
|
|
|
52
52
|
Code 39 is implemented here from published descriptions of the format,
|
|
53
53
|
which are systems and facts rather than works of authorship. No source
|
|
54
|
-
code
|
|
55
|
-
|
|
54
|
+
code or constant table from any other barcode implementation is copied or
|
|
55
|
+
shipped. Public technical material and independent implementations may be
|
|
56
|
+
consulted for engineering review or black-box verification; provenance is
|
|
57
|
+
recorded in NOTICE.md.
|
|
56
58
|
|
|
57
59
|
|
|
58
60
|
CONCLUSION
|
|
@@ -65,6 +67,6 @@ is distributed under the MIT License with no additional restriction.
|
|
|
65
67
|
References relied upon:
|
|
66
68
|
- ISO/IEC 16388, ISO/IEC
|
|
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.
|
package/licenses/code-93.license
CHANGED
|
@@ -4,7 +4,7 @@ Code 93 — format provenance and usability
|
|
|
4
4
|
This file records where the Code 93 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
|
|
|
@@ -12,16 +12,16 @@ ORIGIN
|
|
|
12
12
|
--------------------------------------------------------------------------
|
|
13
13
|
|
|
14
14
|
Introduced by Intermec in 1982 as a denser successor to Code 39, adding
|
|
15
|
-
two check characters. [
|
|
15
|
+
two check characters. [LEGAL REVIEW]
|
|
16
16
|
|
|
17
17
|
|
|
18
18
|
SPECIFICATION
|
|
19
19
|
--------------------------------------------------------------------------
|
|
20
20
|
|
|
21
|
-
AIM symbology specification for Code 93. Terms vary by document. [
|
|
22
|
-
|
|
23
|
-
ISO/IEC 16388 covers Code 39; Code 93 is documented separately. [
|
|
24
|
-
|
|
21
|
+
AIM symbology specification for Code 93. Terms vary by document. [LEGAL
|
|
22
|
+
REVIEW]
|
|
23
|
+
ISO/IEC 16388 covers Code 39; Code 93 is documented separately. [LEGAL
|
|
24
|
+
REVIEW]
|
|
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
|
|
@@ -33,15 +33,15 @@ PATENT STATUS
|
|
|
33
33
|
--------------------------------------------------------------------------
|
|
34
34
|
|
|
35
35
|
The originating patents date from the 1970s-1980s and are understood to
|
|
36
|
-
have expired long ago. [
|
|
36
|
+
have expired long ago. [LEGAL REVIEW]
|
|
37
37
|
|
|
38
38
|
|
|
39
39
|
TRADEMARK
|
|
40
40
|
--------------------------------------------------------------------------
|
|
41
41
|
|
|
42
42
|
No live trademark restriction on implementing Code 93 is known to the
|
|
43
|
-
author. [
|
|
44
|
-
a finding that no mark subsists: no trademark search was carried out.
|
|
43
|
+
author. [LEGAL REVIEW] That is a statement about the author's knowledge,
|
|
44
|
+
not a finding that no mark subsists: no trademark search was carried out.
|
|
45
45
|
|
|
46
46
|
A trademark does not restrict implementing a symbology. It restricts
|
|
47
47
|
branding — how a product names and presents itself.
|
|
@@ -52,8 +52,10 @@ IMPLEMENTATION BASIS IN THIS PROJECT
|
|
|
52
52
|
|
|
53
53
|
Code 93 is implemented here from published descriptions of the format,
|
|
54
54
|
which are systems and facts rather than works of authorship. No source
|
|
55
|
-
code
|
|
56
|
-
|
|
55
|
+
code or constant table from any other barcode implementation is copied or
|
|
56
|
+
shipped. Public technical material and independent implementations may be
|
|
57
|
+
consulted for engineering review or black-box verification; provenance is
|
|
58
|
+
recorded in NOTICE.md.
|
|
57
59
|
|
|
58
60
|
|
|
59
61
|
CONCLUSION
|
|
@@ -64,8 +66,8 @@ implementable and redistributable, and this project's implementation of it
|
|
|
64
66
|
is distributed under the MIT License with no additional restriction.
|
|
65
67
|
|
|
66
68
|
References relied upon:
|
|
67
|
-
- AIM published specification for Code 93 [
|
|
69
|
+
- AIM published specification for Code 93 [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.
|
|
@@ -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.
|