@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
package/examples/read.html
CHANGED
package/licenses/README.md
CHANGED
|
@@ -8,65 +8,47 @@ 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
|
-
|
|
|
17
|
-
|
|
|
18
|
-
|
|
|
19
|
-
|
|
|
20
|
-
|
|
|
21
|
-
|
|
|
22
|
-
|
|
|
23
|
-
|
|
|
24
|
-
|
|
|
25
|
-
| Code
|
|
26
|
-
|
|
|
27
|
-
|
|
|
28
|
-
|
|
|
29
|
-
|
|
|
30
|
-
|
|
|
31
|
-
|
|
|
32
|
-
|
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
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
|
+
| Aztec Rune | [`aztec-rune.license`](aztec-rune.license) | 2 |
|
|
17
|
+
| PDF417 | [`pdf417.license`](pdf417.license) | 2 |
|
|
18
|
+
| MicroPDF417 | [`micropdf417.license`](micropdf417.license) | 2 |
|
|
19
|
+
| Compact PDF417 | [`compact-pdf417.license`](compact-pdf417.license) | 2 |
|
|
20
|
+
| EAN-13 | [`ean-13.license`](ean-13.license) | 2 |
|
|
21
|
+
| EAN-8 | [`ean-8.license`](ean-8.license) | 2 |
|
|
22
|
+
| UPC-A | [`upc-a.license`](upc-a.license) | 2 |
|
|
23
|
+
| UPC-E | [`upc-e.license`](upc-e.license) | 2 |
|
|
24
|
+
| ISBN (Bookland EAN-13) | [`isbn.license`](isbn.license) | 2 |
|
|
25
|
+
| Code 128 | [`code-128.license`](code-128.license) | 2 |
|
|
26
|
+
| GS1-128 | [`gs1-128.license`](gs1-128.license) | 2 |
|
|
27
|
+
| Code 39 | [`code-39.license`](code-39.license) | 2 |
|
|
28
|
+
| Code 93 | [`code-93.license`](code-93.license) | 2 |
|
|
29
|
+
| ITF (Interleaved 2 of 5) | [`itf.license`](itf.license) | 2 |
|
|
30
|
+
| ITF-14 | [`itf-14.license`](itf-14.license) | 2 |
|
|
31
|
+
| Codabar | [`codabar.license`](codabar.license) | 2 |
|
|
32
|
+
| Code 11 | [`code-11.license`](code-11.license) | 2 |
|
|
33
|
+
| MSI Plessey | [`msi-plessey.license`](msi-plessey.license) | 2 |
|
|
34
|
+
| Pharmacode | [`pharmacode.license`](pharmacode.license) | 2 |
|
|
35
|
+
| EAN-2 supplement | [`ean-2.license`](ean-2.license) | 2 |
|
|
36
|
+
| EAN-5 supplement | [`ean-5.license`](ean-5.license) | 2 |
|
|
37
|
+
| Micro QR Code | [`micro-qr.license`](micro-qr.license) | 2 |
|
|
38
|
+
| rMQR Code | [`rmqr.license`](rmqr.license) | 2 |
|
|
39
|
+
| FrameQR Code | [`frameqr.license`](frameqr.license) | 2 |
|
|
40
|
+
| GS1 DataBar data-layer codecs | [`gs1-databar.license`](gs1-databar.license) | 2 |
|
|
41
|
+
|
|
42
|
+
## On the `[TO VERIFY]` markers
|
|
43
|
+
|
|
44
|
+
They are the point, not a defect. Patent expiry, trademark status and
|
|
45
|
+
rights-holder positions are exactly the claims where being confidently
|
|
46
|
+
wrong causes harm, so anything not independently confirmed is marked rather
|
|
47
|
+
than smoothed over. A file with more markers is being more honest, not less
|
|
48
|
+
reliable.
|
|
49
|
+
|
|
50
|
+
**No trademark search was performed.** Where a file says no mark is known,
|
|
51
|
+
that describes the limit of what the author knows, not a finding.
|
|
70
52
|
|
|
71
53
|
These are engineering assessments, **not legal advice**. If your use is
|
|
72
54
|
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.
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
Aztec Rune — format provenance and usability
|
|
2
|
+
==========================================================================
|
|
3
|
+
|
|
4
|
+
This file records where the Aztec Rune 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
|
+
Aztec Rune is the fixed 11-module, eight-bit companion form of the Aztec
|
|
15
|
+
Code family. This implementation is limited to the published Rune value
|
|
16
|
+
range 0-255.
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
SPECIFICATION
|
|
20
|
+
--------------------------------------------------------------------------
|
|
21
|
+
|
|
22
|
+
ISO/IEC 24778:2024 — Aztec Code bar code symbology specification.
|
|
23
|
+
ZXing-C++ was used only as an independent black-box runtime oracle; no
|
|
24
|
+
source code or table is copied or shipped.
|
|
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
|
+
Historical public-domain reports exist for Aztec symbologies, but no
|
|
36
|
+
primary AIM waiver or complete patent-family review was located for Rune
|
|
37
|
+
specifically. [LEGAL REVIEW]
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
TRADEMARK
|
|
41
|
+
--------------------------------------------------------------------------
|
|
42
|
+
|
|
43
|
+
The current registration status and ownership of "Aztec Rune" have not
|
|
44
|
+
been independently established. [LEGAL REVIEW] The name is used
|
|
45
|
+
descriptively and does not imply endorsement.
|
|
46
|
+
|
|
47
|
+
A trademark does not restrict implementing a symbology. It restricts
|
|
48
|
+
branding — how a product names and presents itself.
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
IMPLEMENTATION BASIS IN THIS PROJECT
|
|
52
|
+
--------------------------------------------------------------------------
|
|
53
|
+
|
|
54
|
+
Aztec Rune is implemented here from published descriptions of the format,
|
|
55
|
+
which are systems and facts rather than works of authorship. No source
|
|
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.
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
CONCLUSION
|
|
63
|
+
--------------------------------------------------------------------------
|
|
64
|
+
|
|
65
|
+
This project's original Aztec Rune implementation is distributed under the
|
|
66
|
+
MIT License. This inventory is not a legal opinion that every historical
|
|
67
|
+
or current patent claim is exhausted. [LEGAL REVIEW]
|
|
68
|
+
|
|
69
|
+
References relied upon:
|
|
70
|
+
- ISO/IEC 24778:2024, ISO/IEC
|
|
71
|
+
- ZXing-C++ black-box validation, https://github.com/zxing-cpp/zxing-cpp
|
|
72
|
+
- Aztec Rune patent and trademark scope [LEGAL REVIEW]
|
|
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
|
|
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.
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
Compact PDF417 — format provenance and usability
|
|
2
|
+
==========================================================================
|
|
3
|
+
|
|
4
|
+
This file records where the Compact PDF417 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
|
+
Compact PDF417 is the truncated PDF417 geometry: the standard PDF417 data
|
|
15
|
+
and error-correction family with the right row indicator omitted and a
|
|
16
|
+
reduced stop pattern.
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
SPECIFICATION
|
|
20
|
+
--------------------------------------------------------------------------
|
|
21
|
+
|
|
22
|
+
ISO/IEC 15438:2015 — PDF417 bar code symbology specification.
|
|
23
|
+
Independent runtimes were used only as black-box verification tools; no
|
|
24
|
+
third-party source code or table is shipped.
|
|
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
|
+
Compact PDF417 inherits the historical PDF417 patent landscape. US
|
|
36
|
+
5,243,655 and US 5,304,786 and related families require a
|
|
37
|
+
jurisdiction-by-jurisdiction review. [LEGAL REVIEW]
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
TRADEMARK
|
|
41
|
+
--------------------------------------------------------------------------
|
|
42
|
+
|
|
43
|
+
The current registration status and ownership of "Compact PDF417" have not
|
|
44
|
+
been independently established. [LEGAL REVIEW]
|
|
45
|
+
|
|
46
|
+
A trademark does not restrict implementing a symbology. It restricts
|
|
47
|
+
branding — how a product names and presents itself.
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
IMPLEMENTATION BASIS IN THIS PROJECT
|
|
51
|
+
--------------------------------------------------------------------------
|
|
52
|
+
|
|
53
|
+
Compact PDF417 is implemented here from published descriptions of the format,
|
|
54
|
+
which are systems and facts rather than works of authorship. No source
|
|
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.
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
CONCLUSION
|
|
62
|
+
--------------------------------------------------------------------------
|
|
63
|
+
|
|
64
|
+
This project's original Compact PDF417 implementation is distributed under
|
|
65
|
+
the MIT License. The engineering implementation is not a certification or
|
|
66
|
+
legal clearance. [LEGAL REVIEW]
|
|
67
|
+
|
|
68
|
+
References relied upon:
|
|
69
|
+
- ISO/IEC 15438:2015, ISO/IEC
|
|
70
|
+
- ZXing-C++ black-box validation, https://github.com/zxing-cpp/zxing-cpp
|
|
71
|
+
- US 5,243,655, USPTO patent record
|
|
72
|
+
- US 5,304,786, USPTO patent record
|
|
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
|
|
76
|
+
use is commercially sensitive, obtain your own legal review.
|