@sythos/js_barcode_universal 1.3.1 → 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 (102) hide show
  1. package/AI_USAGE.md +33 -0
  2. package/LICENSE +4 -2
  3. package/NOTICE.md +8 -5
  4. package/README.md +74 -23
  5. package/bundle/sythos-barcode.esm.js +2313 -92
  6. package/bundle/sythos-barcode.js +2229 -88
  7. package/examples/create.html +2 -1
  8. package/examples/read.html +1 -0
  9. package/licenses/README.md +6 -1
  10. package/licenses/aztec-rune.license +76 -0
  11. package/licenses/compact-pdf417.license +76 -0
  12. package/licenses/ean-2.license +74 -0
  13. package/licenses/ean-5.license +74 -0
  14. package/licenses/frameqr.license +6 -6
  15. package/licenses/gs1-databar.license +81 -0
  16. package/package.json +16 -4
  17. package/src/aztec/decoder.js +1 -0
  18. package/src/aztec/detector.js +1 -0
  19. package/src/aztec/encoder.js +1 -0
  20. package/src/aztec/high-level.js +1 -0
  21. package/src/aztec/index.js +1 -0
  22. package/src/aztec/tables.js +1 -0
  23. package/src/aztecrune/decoder.js +156 -0
  24. package/src/aztecrune/detector.js +167 -0
  25. package/src/aztecrune/encoder.js +122 -0
  26. package/src/aztecrune/index.js +50 -0
  27. package/src/aztecrune/tables.js +138 -0
  28. package/src/compactpdf417/decoder.js +129 -0
  29. package/src/compactpdf417/detector.js +140 -0
  30. package/src/compactpdf417/encoder.js +141 -0
  31. package/src/compactpdf417/index.js +22 -0
  32. package/src/compactpdf417/tables.js +174 -0
  33. package/src/core/bit-buffer.js +1 -0
  34. package/src/core/bit-matrix.js +1 -0
  35. package/src/core/errors.js +1 -0
  36. package/src/core/galois-field.js +1 -0
  37. package/src/core/index.js +1 -0
  38. package/src/core/reed-solomon.js +1 -0
  39. package/src/databar/codec.js +182 -0
  40. package/src/databar/decoder.js +115 -0
  41. package/src/databar/encoder.js +97 -0
  42. package/src/databar/gs1.js +178 -0
  43. package/src/databar/index.js +69 -0
  44. package/src/databar/patterns.js +144 -0
  45. package/src/databar/tables.js +125 -0
  46. package/src/datamatrix/decoder.js +1 -0
  47. package/src/datamatrix/detector.js +1 -0
  48. package/src/datamatrix/encoder.js +1 -0
  49. package/src/datamatrix/index.js +1 -0
  50. package/src/datamatrix/tables.js +1 -0
  51. package/src/frameqr/decoder.js +16 -15
  52. package/src/frameqr/detector.js +3 -2
  53. package/src/frameqr/encoder.js +8 -7
  54. package/src/frameqr/index.js +1 -0
  55. package/src/frameqr/tables.js +11 -10
  56. package/src/image/binarizer.js +1 -0
  57. package/src/image/grid-sampler.js +1 -0
  58. package/src/image/index.js +1 -0
  59. package/src/image/luminance.js +1 -0
  60. package/src/image/perspective.js +1 -0
  61. package/src/index.js +72 -8
  62. package/src/micropdf417/compaction.js +1 -0
  63. package/src/micropdf417/decoder.js +1 -0
  64. package/src/micropdf417/detector.js +1 -0
  65. package/src/micropdf417/encoder.js +1 -0
  66. package/src/micropdf417/error-correction.js +1 -0
  67. package/src/micropdf417/index.js +1 -0
  68. package/src/micropdf417/tables.js +1 -0
  69. package/src/microqr/decoder.js +1 -0
  70. package/src/microqr/detector.js +1 -0
  71. package/src/microqr/encoder.js +1 -0
  72. package/src/microqr/index.js +1 -0
  73. package/src/microqr/tables.js +1 -0
  74. package/src/oned/addons.js +421 -0
  75. package/src/oned/index.js +18 -0
  76. package/src/oned/patterns.js +1 -0
  77. package/src/oned/reader.js +1 -0
  78. package/src/oned/writers.js +1 -0
  79. package/src/pdf417/compaction.js +1 -0
  80. package/src/pdf417/decoder.js +1 -0
  81. package/src/pdf417/detector.js +1 -0
  82. package/src/pdf417/encoder.js +1 -0
  83. package/src/pdf417/error-correction.js +1 -0
  84. package/src/pdf417/index.js +5 -0
  85. package/src/pdf417/tables.js +1 -0
  86. package/src/qr/decoder.js +1 -0
  87. package/src/qr/detector.js +1 -0
  88. package/src/qr/encoder.js +1 -0
  89. package/src/qr/index.js +1 -0
  90. package/src/qr/tables.js +1 -0
  91. package/src/render/image-data.js +1 -0
  92. package/src/render/index.js +1 -0
  93. package/src/render/options.js +1 -0
  94. package/src/render/png.js +1 -0
  95. package/src/render/svg.js +1 -0
  96. package/src/render/webgl.js +1 -0
  97. package/src/render/webgpu.js +1 -0
  98. package/src/rmqr/decoder.js +1 -0
  99. package/src/rmqr/detector.js +1 -0
  100. package/src/rmqr/encoder.js +1 -0
  101. package/src/rmqr/index.js +1 -0
  102. package/src/rmqr/tables.js +1 -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
  Loads the IIFE bundle with a plain <script> tag, so this page works when
@@ -161,7 +162,7 @@
161
162
  </div>
162
163
 
163
164
  <div id="frameOpts" style="display:none">
164
- <p class="hint">Sythos Canvas QR profile: this is not certified DENSO FrameQR interoperability.</p>
165
+ <p class="hint">FrameQR Code</p>
165
166
  <label for="frameCanvasShape">Canvas shape</label>
166
167
  <select id="frameCanvasShape">
167
168
  <option value="square" selected>Square</option>
@@ -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.
@@ -13,8 +13,10 @@ appendix carries the consolidated inventory these files expand on.
13
13
  | Aztec Code | [`aztec-code.license`](aztec-code.license) | 2 |
14
14
  | QR Code | [`qr-code.license`](qr-code.license) | 2 |
15
15
  | Data Matrix ECC 200 | [`data-matrix.license`](data-matrix.license) | 2 |
16
+ | Aztec Rune | [`aztec-rune.license`](aztec-rune.license) | 2 |
16
17
  | PDF417 | [`pdf417.license`](pdf417.license) | 2 |
17
18
  | MicroPDF417 | [`micropdf417.license`](micropdf417.license) | 2 |
19
+ | Compact PDF417 | [`compact-pdf417.license`](compact-pdf417.license) | 2 |
18
20
  | EAN-13 | [`ean-13.license`](ean-13.license) | 2 |
19
21
  | EAN-8 | [`ean-8.license`](ean-8.license) | 2 |
20
22
  | UPC-A | [`upc-a.license`](upc-a.license) | 2 |
@@ -30,9 +32,12 @@ appendix carries the consolidated inventory these files expand on.
30
32
  | Code 11 | [`code-11.license`](code-11.license) | 2 |
31
33
  | MSI Plessey | [`msi-plessey.license`](msi-plessey.license) | 2 |
32
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 |
33
37
  | Micro QR Code | [`micro-qr.license`](micro-qr.license) | 2 |
34
38
  | rMQR Code | [`rmqr.license`](rmqr.license) | 2 |
35
- | Frame QR / Sythos Canvas QR profile | [`frameqr.license`](frameqr.license) | 2 |
39
+ | FrameQR Code | [`frameqr.license`](frameqr.license) | 2 |
40
+ | GS1 DataBar data-layer codecs | [`gs1-databar.license`](gs1-databar.license) | 2 |
36
41
 
37
42
  ## On the `[TO VERIFY]` markers
38
43
 
@@ -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.
@@ -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.
@@ -0,0 +1,74 @@
1
+ EAN-2 supplement — format provenance and usability
2
+ ==========================================================================
3
+
4
+ This file records where the EAN-2 supplement symbology comes from, what governs
5
+ it, and the basis on which this project implements and redistributes it.
6
+
7
+ It is an ENGINEERING INVENTORY, NOT LEGAL ADVICE. Items marked [TO VERIFY]
8
+ have not been independently confirmed by the author.
9
+
10
+
11
+ ORIGIN
12
+ --------------------------------------------------------------------------
13
+
14
+ EAN-2 is the two-digit EAN/UPC add-on symbol used as a supplement to a
15
+ primary EAN or UPC symbol. This project exposes its parity and guard
16
+ geometry as a writable add-on.
17
+
18
+
19
+ SPECIFICATION
20
+ --------------------------------------------------------------------------
21
+
22
+ ISO/IEC 15420 — EAN/UPC bar code symbology specification.
23
+ GS1 General Specifications, GS1 AISBL — freely published; redistribution
24
+ terms are GS1's own [LEGAL REVIEW]
25
+
26
+ Specification TEXT is copyrighted by its publisher. The SYMBOLOGY it
27
+ describes is not — an encoding scheme is a system, not a work of
28
+ authorship. This project implements the symbology; it does not reproduce,
29
+ redistribute or excerpt any specification document.
30
+
31
+
32
+ PATENT STATUS
33
+ --------------------------------------------------------------------------
34
+
35
+ The originating patents date from the 1970s-1980s and are understood to
36
+ have expired long ago. [LEGAL REVIEW]
37
+
38
+
39
+ TRADEMARK
40
+ --------------------------------------------------------------------------
41
+
42
+ "GS1" and its symbology names are trademarks of GS1 AISBL.
43
+
44
+ A trademark does not restrict implementing a symbology. It restricts
45
+ branding — how a product names and presents itself.
46
+
47
+
48
+ IMPLEMENTATION BASIS IN THIS PROJECT
49
+ --------------------------------------------------------------------------
50
+
51
+ EAN-2 supplement is implemented here from published descriptions of the format,
52
+ which are systems and facts rather than works of authorship. No source
53
+ code or constant table from any other barcode implementation is copied or
54
+ shipped. Public technical material and independent implementations may be
55
+ consulted for engineering review or black-box verification; provenance is
56
+ recorded in NOTICE.md.
57
+
58
+
59
+ CONCLUSION
60
+ --------------------------------------------------------------------------
61
+
62
+ The original add-on implementation is distributed under the MIT License.
63
+ Generic camera read capability remains intentionally separate from the
64
+ direct matrix helper.
65
+
66
+ References relied upon:
67
+ - ISO/IEC 15420, ISO/IEC
68
+ - GS1 General Specifications, GS1 AISBL — freely published;
69
+ redistribution terms are GS1's own [LEGAL REVIEW]
70
+ - ZXing-C++ add-on black-box check, https://github.com/zxing-cpp/zxing-cpp
71
+
72
+ This is an engineering assessment, not legal advice. Items marked
73
+ [TO VERIFY] have not been independently confirmed by the author. If your
74
+ use is commercially sensitive, obtain your own legal review.
@@ -0,0 +1,74 @@
1
+ EAN-5 supplement — format provenance and usability
2
+ ==========================================================================
3
+
4
+ This file records where the EAN-5 supplement symbology comes from, what governs
5
+ it, and the basis on which this project implements and redistributes it.
6
+
7
+ It is an ENGINEERING INVENTORY, NOT LEGAL ADVICE. Items marked [TO VERIFY]
8
+ have not been independently confirmed by the author.
9
+
10
+
11
+ ORIGIN
12
+ --------------------------------------------------------------------------
13
+
14
+ EAN-5 is the five-digit EAN/UPC add-on symbol used as a supplement to a
15
+ primary EAN or UPC symbol. This implementation covers the published 3/9
16
+ checksum, parity and guard geometry.
17
+
18
+
19
+ SPECIFICATION
20
+ --------------------------------------------------------------------------
21
+
22
+ ISO/IEC 15420 — EAN/UPC bar code symbology specification.
23
+ GS1 General Specifications, GS1 AISBL — freely published; redistribution
24
+ terms are GS1's own [LEGAL REVIEW]
25
+
26
+ Specification TEXT is copyrighted by its publisher. The SYMBOLOGY it
27
+ describes is not — an encoding scheme is a system, not a work of
28
+ authorship. This project implements the symbology; it does not reproduce,
29
+ redistribute or excerpt any specification document.
30
+
31
+
32
+ PATENT STATUS
33
+ --------------------------------------------------------------------------
34
+
35
+ The originating patents date from the 1970s-1980s and are understood to
36
+ have expired long ago. [LEGAL REVIEW]
37
+
38
+
39
+ TRADEMARK
40
+ --------------------------------------------------------------------------
41
+
42
+ "GS1" and its symbology names are trademarks of GS1 AISBL.
43
+
44
+ A trademark does not restrict implementing a symbology. It restricts
45
+ branding — how a product names and presents itself.
46
+
47
+
48
+ IMPLEMENTATION BASIS IN THIS PROJECT
49
+ --------------------------------------------------------------------------
50
+
51
+ EAN-5 supplement is implemented here from published descriptions of the format,
52
+ which are systems and facts rather than works of authorship. No source
53
+ code or constant table from any other barcode implementation is copied or
54
+ shipped. Public technical material and independent implementations may be
55
+ consulted for engineering review or black-box verification; provenance is
56
+ recorded in NOTICE.md.
57
+
58
+
59
+ CONCLUSION
60
+ --------------------------------------------------------------------------
61
+
62
+ The original add-on implementation is distributed under the MIT License.
63
+ Generic camera read capability remains intentionally separate from the
64
+ direct matrix helper.
65
+
66
+ References relied upon:
67
+ - ISO/IEC 15420, ISO/IEC
68
+ - GS1 General Specifications, GS1 AISBL — freely published;
69
+ redistribution terms are GS1's own [LEGAL REVIEW]
70
+ - ZXing-C++ add-on black-box check, https://github.com/zxing-cpp/zxing-cpp
71
+
72
+ This is an engineering assessment, not legal advice. Items marked
73
+ [TO VERIFY] have not been independently confirmed by the author. If your
74
+ use is commercially sensitive, obtain your own legal review.
@@ -1,7 +1,7 @@
1
- Frame QR / Sythos Canvas QR profile — format provenance and usability
1
+ FrameQR Code — format provenance and usability
2
2
  ==========================================================================
3
3
 
4
- This file records where the Frame QR / Sythos Canvas QR profile symbology comes from, what governs
4
+ This file records where the FrameQR Code symbology comes from, what governs
5
5
  it, and the basis on which this project implements and redistributes it.
6
6
 
7
7
  It is an ENGINEERING INVENTORY, NOT LEGAL ADVICE. Items marked [TO VERIFY]
@@ -22,7 +22,7 @@ SPECIFICATION
22
22
 
23
23
  DENSO WAVE public FrameQR material, including the product overview
24
24
  and the public announcement. The proprietary format definition is not
25
- reproduced here. This project implements the separate Sythos Canvas QR
25
+ reproduced here. This project implements the separate FrameQR Code
26
26
  profile on an ISO/IEC 18004 QR Model 2 baseline.
27
27
 
28
28
  Specification TEXT is copyrighted by its publisher. The SYMBOLOGY it
@@ -55,7 +55,7 @@ branding — how a product names and presents itself.
55
55
  IMPLEMENTATION BASIS IN THIS PROJECT
56
56
  --------------------------------------------------------------------------
57
57
 
58
- Frame QR / Sythos Canvas QR profile is implemented here from published descriptions of the format,
58
+ FrameQR Code is implemented here from published descriptions of the format,
59
59
  which are systems and facts rather than works of authorship. No source
60
60
  code or constant table from any other barcode implementation is copied or
61
61
  shipped. Public technical material and independent implementations may be
@@ -66,8 +66,8 @@ recorded in NOTICE.md.
66
66
  CONCLUSION
67
67
  --------------------------------------------------------------------------
68
68
 
69
- The distributed implementation is the original, non-certified Sythos
70
- Canvas QR profile `sythos-canvas-qr/1`, not DENSO FrameQR. It reserves a
69
+ The distributed implementation is the original, non-certified FrameQR Code
70
+ profile `sythos-canvas-qr/1`, not DENSO FrameQR. It reserves a
71
71
  bounded artwork canvas inside a QR Model 2 ECC-H symbol and does not claim
72
72
  native FrameQR interoperability. Third-party software cited here was used
73
73
  exclusively as an independent verification and cross-checking tool; no
@@ -0,0 +1,81 @@
1
+ GS1 DataBar data-layer codecs — format provenance and usability
2
+ ==========================================================================
3
+
4
+ This file records where the GS1 DataBar data-layer codecs symbology comes from, what governs
5
+ it, and the basis on which this project implements and redistributes it.
6
+
7
+ It is an ENGINEERING INVENTORY, NOT LEGAL ADVICE. Items marked [TO VERIFY]
8
+ have not been independently confirmed by the author.
9
+
10
+
11
+ ORIGIN
12
+ --------------------------------------------------------------------------
13
+
14
+ GS1 DataBar is a family of seven GS1 linear symbologies defined by ISO/IEC
15
+ 24724 and GS1 specifications. This release contains original GTIN and GS1
16
+ element-string data-layer codecs; physical bar-pattern support is limited
17
+ to the variants explicitly listed by the package.
18
+
19
+
20
+ SPECIFICATION
21
+ --------------------------------------------------------------------------
22
+
23
+ ISO/IEC 24724 — GS1 DataBar bar code symbology specification.
24
+ GS1 General Specifications, GS1 AISBL — freely published; redistribution
25
+ terms are GS1's own [LEGAL REVIEW]
26
+ GS1 public DataBar overview,
27
+ https://www.gs1.org/standards/barcodes/databar
28
+
29
+ Specification TEXT is copyrighted by its publisher. The SYMBOLOGY it
30
+ describes is not — an encoding scheme is a system, not a work of
31
+ authorship. This project implements the symbology; it does not reproduce,
32
+ redistribute or excerpt any specification document.
33
+
34
+
35
+ PATENT STATUS
36
+ --------------------------------------------------------------------------
37
+
38
+ GS1's intellectual-property policy and third-party patent declarations
39
+ require a dedicated review for deployed implementations. No unconditional
40
+ patent-free or public-domain claim is made. [LEGAL REVIEW]
41
+
42
+
43
+ TRADEMARK
44
+ --------------------------------------------------------------------------
45
+
46
+ "GS1" and its symbology names are trademarks of GS1 AISBL. "GS1 DataBar"
47
+ is used descriptively with attribution and does not imply endorsement or
48
+ certification.
49
+
50
+ A trademark does not restrict implementing a symbology. It restricts
51
+ branding — how a product names and presents itself.
52
+
53
+
54
+ IMPLEMENTATION BASIS IN THIS PROJECT
55
+ --------------------------------------------------------------------------
56
+
57
+ GS1 DataBar data-layer codecs is implemented here from published descriptions of the format,
58
+ which are systems and facts rather than works of authorship. No source
59
+ code or constant table from any other barcode implementation is copied or
60
+ shipped. Public technical material and independent implementations may be
61
+ consulted for engineering review or black-box verification; provenance is
62
+ recorded in NOTICE.md.
63
+
64
+
65
+ CONCLUSION
66
+ --------------------------------------------------------------------------
67
+
68
+ Only original Sythos DataBar code is distributed under the MIT License.
69
+ Unsupported physical variants and conformance questions are intentionally
70
+ not presented as completed capability. [LEGAL REVIEW]
71
+
72
+ References relied upon:
73
+ - ISO/IEC 24724, ISO/IEC
74
+ - GS1 General Specifications, GS1 AISBL — freely published;
75
+ redistribution terms are GS1's own [LEGAL REVIEW]
76
+ - GS1 DataBar overview, https://www.gs1.org/standards/barcodes/databar
77
+ - GS1 IP policy, https://ref.gs1.org/gs1/ip-policy/
78
+
79
+ This is an engineering assessment, not legal advice. Items marked
80
+ [TO VERIFY] have not been independently confirmed by the author. If your
81
+ use is commercially sensitive, obtain your own legal review.
package/package.json CHANGED
@@ -1,8 +1,11 @@
1
1
  {
2
2
  "name": "@sythos/js_barcode_universal",
3
- "version": "1.3.1",
4
- "description": "Read and write barcodes in JavaScript with zero runtime dependencies. QR Code, Micro QR, rMQR, the non-certified Sythos Canvas QR profile, Aztec Code, Data Matrix ECC 200, MicroPDF417, PDF417 and one-dimensional formats.",
5
- "author": "Sythos",
3
+ "version": "1.4.1",
4
+ "description": "Read and write barcodes in JavaScript with zero runtime dependencies. QR Code, Micro QR, rMQR, FrameQR Code, Aztec Code and Rune, PDF417 variants, GS1 DataBar Omnidirectional/Truncated, EAN supplements and one-dimensional formats.",
5
+ "author": {
6
+ "name": "Sythos",
7
+ "url": "https://www.sythos.net"
8
+ },
6
9
  "license": "MIT",
7
10
  "type": "module",
8
11
  "main": "./src/index.js",
@@ -24,8 +27,11 @@
24
27
  "./oned": "./src/oned/index.js",
25
28
  "./qr": "./src/qr/index.js",
26
29
  "./datamatrix": "./src/datamatrix/index.js",
30
+ "./databar": "./src/databar/index.js",
27
31
  "./aztec": "./src/aztec/index.js",
32
+ "./aztecrune": "./src/aztecrune/index.js",
28
33
  "./pdf417": "./src/pdf417/index.js",
34
+ "./compactpdf417": "./src/compactpdf417/index.js",
29
35
  "./micropdf417": "./src/micropdf417/index.js",
30
36
  "./microqr": "./src/microqr/index.js",
31
37
  "./rmqr": "./src/rmqr/index.js",
@@ -45,13 +51,19 @@
45
51
  "licenses",
46
52
  "LICENSE",
47
53
  "NOTICE.md",
48
- "README.md"
54
+ "README.md",
55
+ "AI_USAGE.md"
49
56
  ],
50
57
  "keywords": [
51
58
  "barcode",
52
59
  "datamatrix",
53
60
  "ecc200",
54
61
  "aztec",
62
+ "aztec-rune",
63
+ "compact-pdf417",
64
+ "gs1-databar",
65
+ "ean2",
66
+ "ean5",
55
67
  "aztec-code",
56
68
  "pdf417",
57
69
  "pdf-417",
@@ -23,6 +23,7 @@
23
23
  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24
24
  * SOFTWARE.
25
25
  *
26
+ * SPDX-FileCopyrightText: 2026 Sythos (https://www.sythos.net)
26
27
  * SPDX-License-Identifier: MIT
27
28
  *
28
29
  * Original work. No code from any other barcode implementation.
@@ -23,6 +23,7 @@
23
23
  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24
24
  * SOFTWARE.
25
25
  *
26
+ * SPDX-FileCopyrightText: 2026 Sythos (https://www.sythos.net)
26
27
  * SPDX-License-Identifier: MIT
27
28
  *
28
29
  * Original work. No code from any other barcode implementation.
@@ -23,6 +23,7 @@
23
23
  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24
24
  * SOFTWARE.
25
25
  *
26
+ * SPDX-FileCopyrightText: 2026 Sythos (https://www.sythos.net)
26
27
  * SPDX-License-Identifier: MIT
27
28
  *
28
29
  * Original work. No code from any other barcode implementation.
@@ -23,6 +23,7 @@
23
23
  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24
24
  * SOFTWARE.
25
25
  *
26
+ * SPDX-FileCopyrightText: 2026 Sythos (https://www.sythos.net)
26
27
  * SPDX-License-Identifier: MIT
27
28
  *
28
29
  * Original work. No code from any other barcode implementation.
@@ -23,6 +23,7 @@
23
23
  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24
24
  * SOFTWARE.
25
25
  *
26
+ * SPDX-FileCopyrightText: 2026 Sythos (https://www.sythos.net)
26
27
  * SPDX-License-Identifier: MIT
27
28
  *
28
29
  * Original work. No code from any other barcode implementation.
@@ -23,6 +23,7 @@
23
23
  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24
24
  * SOFTWARE.
25
25
  *
26
+ * SPDX-FileCopyrightText: 2026 Sythos (https://www.sythos.net)
26
27
  * SPDX-License-Identifier: MIT
27
28
  *
28
29
  * Original work. No code from any other barcode implementation.