@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.
Files changed (124) hide show
  1. package/AI_USAGE.md +33 -0
  2. package/LICENSE +11 -2
  3. package/NOTICE.md +10 -4
  4. package/README.md +601 -465
  5. package/bundle/sythos-barcode.esm.js +4669 -74
  6. package/bundle/sythos-barcode.js +4575 -72
  7. package/examples/create.html +1010 -730
  8. package/examples/read.html +1 -0
  9. package/licenses/README.md +40 -58
  10. package/licenses/aztec-code.license +15 -13
  11. package/licenses/aztec-rune.license +76 -0
  12. package/licenses/codabar.license +18 -15
  13. package/licenses/code-11.license +11 -9
  14. package/licenses/code-128.license +10 -8
  15. package/licenses/code-39.license +10 -8
  16. package/licenses/code-93.license +16 -14
  17. package/licenses/compact-pdf417.license +76 -0
  18. package/licenses/data-matrix.license +15 -13
  19. package/licenses/ean-13.license +10 -8
  20. package/licenses/ean-2.license +74 -0
  21. package/licenses/ean-5.license +74 -0
  22. package/licenses/ean-8.license +10 -8
  23. package/licenses/frameqr.license +84 -0
  24. package/licenses/gs1-128.license +10 -8
  25. package/licenses/gs1-databar.license +81 -0
  26. package/licenses/isbn.license +10 -8
  27. package/licenses/itf-14.license +10 -8
  28. package/licenses/itf.license +9 -7
  29. package/licenses/micro-qr.license +79 -0
  30. package/licenses/micropdf417.license +52 -67
  31. package/licenses/msi-plessey.license +13 -11
  32. package/licenses/pdf417.license +78 -37
  33. package/licenses/pharmacode.license +14 -12
  34. package/licenses/qr-code.license +9 -7
  35. package/licenses/rmqr.license +79 -0
  36. package/licenses/upc-a.license +12 -10
  37. package/licenses/upc-e.license +10 -8
  38. package/package.json +109 -88
  39. package/src/aztec/decoder.js +1 -0
  40. package/src/aztec/detector.js +1 -0
  41. package/src/aztec/encoder.js +1 -0
  42. package/src/aztec/high-level.js +1 -0
  43. package/src/aztec/index.js +1 -0
  44. package/src/aztec/tables.js +1 -0
  45. package/src/aztecrune/decoder.js +156 -0
  46. package/src/aztecrune/detector.js +167 -0
  47. package/src/aztecrune/encoder.js +122 -0
  48. package/src/aztecrune/index.js +50 -0
  49. package/src/aztecrune/tables.js +138 -0
  50. package/src/compactpdf417/decoder.js +129 -0
  51. package/src/compactpdf417/detector.js +140 -0
  52. package/src/compactpdf417/encoder.js +141 -0
  53. package/src/compactpdf417/index.js +22 -0
  54. package/src/compactpdf417/tables.js +174 -0
  55. package/src/core/bit-buffer.js +1 -0
  56. package/src/core/bit-matrix.js +1 -0
  57. package/src/core/errors.js +1 -0
  58. package/src/core/galois-field.js +1 -0
  59. package/src/core/index.js +1 -0
  60. package/src/core/reed-solomon.js +1 -0
  61. package/src/databar/codec.js +182 -0
  62. package/src/databar/decoder.js +115 -0
  63. package/src/databar/encoder.js +97 -0
  64. package/src/databar/gs1.js +178 -0
  65. package/src/databar/index.js +69 -0
  66. package/src/databar/patterns.js +144 -0
  67. package/src/databar/tables.js +125 -0
  68. package/src/datamatrix/decoder.js +263 -262
  69. package/src/datamatrix/detector.js +226 -225
  70. package/src/datamatrix/encoder.js +192 -191
  71. package/src/datamatrix/index.js +43 -42
  72. package/src/datamatrix/tables.js +124 -123
  73. package/src/frameqr/decoder.js +240 -0
  74. package/src/frameqr/detector.js +193 -0
  75. package/src/frameqr/encoder.js +157 -0
  76. package/src/frameqr/index.js +43 -0
  77. package/src/frameqr/tables.js +271 -0
  78. package/src/image/binarizer.js +1 -0
  79. package/src/image/grid-sampler.js +1 -0
  80. package/src/image/index.js +1 -0
  81. package/src/image/luminance.js +1 -0
  82. package/src/image/perspective.js +1 -0
  83. package/src/index.js +155 -2
  84. package/src/micropdf417/compaction.js +1 -0
  85. package/src/micropdf417/decoder.js +1 -0
  86. package/src/micropdf417/detector.js +1 -0
  87. package/src/micropdf417/encoder.js +1 -0
  88. package/src/micropdf417/error-correction.js +1 -0
  89. package/src/micropdf417/index.js +1 -0
  90. package/src/micropdf417/tables.js +1 -0
  91. package/src/microqr/decoder.js +246 -0
  92. package/src/microqr/detector.js +356 -0
  93. package/src/microqr/encoder.js +270 -0
  94. package/src/microqr/index.js +37 -0
  95. package/src/microqr/tables.js +317 -0
  96. package/src/oned/addons.js +421 -0
  97. package/src/oned/index.js +77 -59
  98. package/src/oned/patterns.js +1 -0
  99. package/src/oned/reader.js +1 -0
  100. package/src/oned/writers.js +1 -0
  101. package/src/pdf417/compaction.js +1 -0
  102. package/src/pdf417/decoder.js +1 -0
  103. package/src/pdf417/detector.js +1 -0
  104. package/src/pdf417/encoder.js +1 -0
  105. package/src/pdf417/error-correction.js +1 -0
  106. package/src/pdf417/index.js +5 -0
  107. package/src/pdf417/tables.js +1 -0
  108. package/src/qr/decoder.js +1 -0
  109. package/src/qr/detector.js +1 -0
  110. package/src/qr/encoder.js +1 -0
  111. package/src/qr/index.js +1 -0
  112. package/src/qr/tables.js +1 -0
  113. package/src/render/image-data.js +1 -0
  114. package/src/render/index.js +1 -0
  115. package/src/render/options.js +1 -0
  116. package/src/render/png.js +1 -0
  117. package/src/render/svg.js +1 -0
  118. package/src/render/webgl.js +1 -0
  119. package/src/render/webgpu.js +1 -0
  120. package/src/rmqr/decoder.js +102 -0
  121. package/src/rmqr/detector.js +91 -0
  122. package/src/rmqr/encoder.js +173 -0
  123. package/src/rmqr/index.js +38 -0
  124. package/src/rmqr/tables.js +155 -0
@@ -7,6 +7,7 @@
7
7
  <!--
8
8
  Sythos Barcode Suite — example
9
9
  Copyright (c) 2026 Sythos
10
+ SPDX-FileCopyrightText: 2026 Sythos (https://www.sythos.net)
10
11
  SPDX-License-Identifier: MIT
11
12
 
12
13
  File input first, camera second — deliberately.
@@ -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 | Review status |
11
+ | Format | File | `[TO VERIFY]` items |
12
12
  |---|---|---:|
13
- | Aztec Code | [`aztec-code.license`](aztec-code.license) | Scoped labels |
14
- | QR Code | [`qr-code.license`](qr-code.license) | Scoped labels |
15
- | Data Matrix ECC 200 | [`data-matrix.license`](data-matrix.license) | Scoped labels |
16
- | PDF417 | [`pdf417.license`](pdf417.license) | Scoped labels |
17
- | MicroPDF417 | [`micropdf417.license`](micropdf417.license) | Scoped labels |
18
- | EAN-13 | [`ean-13.license`](ean-13.license) | Scoped labels |
19
- | EAN-8 | [`ean-8.license`](ean-8.license) | Scoped labels |
20
- | UPC-A | [`upc-a.license`](upc-a.license) | Scoped labels |
21
- | UPC-E | [`upc-e.license`](upc-e.license) | Scoped labels |
22
- | ISBN (Bookland EAN-13) | [`isbn.license`](isbn.license) | Scoped labels |
23
- | Code 128 | [`code-128.license`](code-128.license) | Scoped labels |
24
- | GS1-128 | [`gs1-128.license`](gs1-128.license) | Scoped labels |
25
- | Code 39 | [`code-39.license`](code-39.license) | Scoped labels |
26
- | Code 93 | [`code-93.license`](code-93.license) | Scoped labels |
27
- | ITF (Interleaved 2 of 5) | [`itf.license`](itf.license) | Scoped labels |
28
- | ITF-14 | [`itf-14.license`](itf-14.license) | Scoped labels |
29
- | Codabar | [`codabar.license`](codabar.license) | Scoped labels |
30
- | Code 11 | [`code-11.license`](code-11.license) | Scoped labels |
31
- | MSI Plessey | [`msi-plessey.license`](msi-plessey.license) | Scoped labels |
32
- | Pharmacode | [`pharmacode.license`](pharmacode.license) | Scoped labels |
33
-
34
- ## Review labels
35
-
36
- The inventory now uses scoped labels instead of one generic marker:
37
-
38
- - `[VERIFIED FACT]` supported by a primary or authoritative public source.
39
- - `[REGISTRY CHECK REQUIRED]` a live trademark, ownership or registration
40
- status still needs a current office-record search.
41
- - `[PATENT FAMILY REVIEW REQUIRED]` — a patent family, continuation,
42
- jurisdiction, term adjustment or maintenance record still needs review.
43
- - `[LICENSE TERMS REVIEW REQUIRED]` — the standard or publisher's text,
44
- copyright and redistribution terms still need confirmation.
45
- - `[LEGAL REVIEW]` an attribution, commercial conclusion or jurisdictional
46
- issue should be reviewed by qualified counsel before relying on it.
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
+ | 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 carrying a review label
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 inventor,
15
- assignee and public dedication are supported by the USPTO Official Gazette;
16
- ownership history outside that record remains [LEGAL REVIEW].
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 original US patent was dedicated to the public, as recorded by the USPTO.
36
- International patent families, continuations and current effects remain
37
- [PATENT FAMILY REVIEW REQUIRED].
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. [REGISTRY CHECK REQUIRED] The name is used
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 and no constant table from any other barcode implementation was used,
57
- consulted or copied, under any licence.
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 open for review.
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. Open review labels
73
- identify claims that have not been independently confirmed by the author. If your
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.
@@ -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 carrying a review label
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 CIRCULATE
15
- in secondary sources — Monarch Marking Systems and Pitney Bowes are both
16
- cited — so the credit is deliberately NOT treated as settled here and no
17
- single originator is asserted. Long used by blood banks, libraries and
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 REVIEW]
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. [PATENT FAMILY REVIEW REQUIRED]
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. [REGISTRY CHECK REQUIRED] That is a statement about the author's knowledge, not
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 and no constant table from any other barcode implementation was used,
59
- consulted or copied, under any licence.
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 [LICENSE TERMS REVIEW REQUIRED]
73
+ - AIM USS-Codabar [LEGAL REVIEW]
71
74
 
72
- This is an engineering assessment, not legal advice. Open review labels
73
- Open review labels identify claims that have not been independently confirmed by the author. If your
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.
@@ -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 carrying a review label
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. [PATENT FAMILY REVIEW REQUIRED]
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. [REGISTRY CHECK REQUIRED] That is a statement about the author's knowledge, not
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 and no constant table from any other barcode implementation was used,
54
- consulted or copied, under any licence.
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 [LICENSE TERMS REVIEW REQUIRED]
67
+ - AIM published specification for Code 11 [LEGAL REVIEW]
66
68
 
67
- This is an engineering assessment, not legal advice. Open review labels
68
- Open review labels identify claims that have not been independently confirmed by the author. If your
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 carrying a review label
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. [PATENT FAMILY REVIEW REQUIRED]
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. [REGISTRY CHECK REQUIRED] That is a statement about the author's knowledge, not
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 and no constant table from any other barcode implementation was used,
54
- consulted or copied, under any licence.
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. Open review labels
68
- Open review labels identify claims that have not been independently confirmed by the author. If your
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 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 carrying a review label
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. [PATENT FAMILY REVIEW REQUIRED]
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. [REGISTRY CHECK REQUIRED] That is a statement about the author's knowledge, not
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 and no constant table from any other barcode implementation was used,
55
- consulted or copied, under any licence.
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. Open review labels
69
- Open review labels identify claims that have not been independently confirmed by the author. If your
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.
@@ -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 carrying a review label
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. [VERIFIED FACT]
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. [TO
22
- VERIFY]
23
- ISO/IEC 16388 covers Code 39; Code 93 is documented separately. [TO
24
- VERIFY]
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. [PATENT FAMILY REVIEW REQUIRED]
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. [REGISTRY CHECK REQUIRED] That is a statement about the author's knowledge, not
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 and no constant table from any other barcode implementation was used,
56
- consulted or copied, under any licence.
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 [LICENSE TERMS REVIEW REQUIRED]
69
+ - AIM published specification for Code 93 [LEGAL REVIEW]
68
70
 
69
- This is an engineering assessment, not legal advice. Open review labels
70
- Open review labels identify claims that have not been independently confirmed by the author. If your
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.