@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
@@ -4,7 +4,7 @@ ITF (Interleaved 2 of 5) — format provenance and usability
4
4
  This file records where the ITF (Interleaved 2 of 5) 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,14 +32,14 @@ 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 ITF is known to the author.
42
- [REGISTRY CHECK REQUIRED] That is a statement about the author's knowledge, not a
42
+ [LEGAL REVIEW] That is a statement about the author's knowledge, not a
43
43
  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
@@ -51,8 +51,10 @@ IMPLEMENTATION BASIS IN THIS PROJECT
51
51
 
52
52
  ITF (Interleaved 2 of 5) 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 16390, 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.
@@ -0,0 +1,79 @@
1
+ Micro QR Code — format provenance and usability
2
+ ==========================================================================
3
+
4
+ This file records where the Micro QR Code symbology comes from, what governs
5
+ it, and the basis on which this project implements and redistributes it.
6
+
7
+ It is an ENGINEERING INVENTORY, NOT LEGAL ADVICE. Items marked [TO VERIFY]
8
+ have not been independently confirmed by the author.
9
+
10
+
11
+ ORIGIN
12
+ --------------------------------------------------------------------------
13
+
14
+ Micro QR Code is a compact QR-family symbology developed and published by
15
+ DENSO WAVE. The implementation scope here covers the M1-M4 symbol family
16
+ and its standard format, mask and error-correction rules.
17
+
18
+
19
+ SPECIFICATION
20
+ --------------------------------------------------------------------------
21
+
22
+ ISO/IEC 18004 — QR Code bar code symbology specification, Micro QR
23
+ sections and tables. The specification TEXT is copyrighted by ISO/IEC
24
+ and is not reproduced here.
25
+ DENSO WAVE public Micro QR technical information.
26
+
27
+ Specification TEXT is copyrighted by its publisher. The SYMBOLOGY it
28
+ describes is not — an encoding scheme is a system, not a work of
29
+ authorship. This project implements the symbology; it does not reproduce,
30
+ redistribute or excerpt any specification document.
31
+
32
+
33
+ PATENT STATUS
34
+ --------------------------------------------------------------------------
35
+
36
+ DENSO WAVE publicly describes Micro QR Code and has published a
37
+ patent-rights waiver for the symbology. The scope, jurisdictions and any
38
+ unrelated patent families have not been independently reviewed. [LEGAL
39
+ REVIEW]
40
+
41
+
42
+ TRADEMARK
43
+ --------------------------------------------------------------------------
44
+
45
+ The current registration status and ownership of the words "Micro QR Code"
46
+ have not been independently established. [LEGAL REVIEW] The name is used
47
+ descriptively and does not imply endorsement.
48
+
49
+ A trademark does not restrict implementing a symbology. It restricts
50
+ branding — how a product names and presents itself.
51
+
52
+
53
+ IMPLEMENTATION BASIS IN THIS PROJECT
54
+ --------------------------------------------------------------------------
55
+
56
+ Micro QR Code is implemented here from published descriptions of the format,
57
+ which are systems and facts rather than works of authorship. No source
58
+ code or constant table from any other barcode implementation is copied or
59
+ shipped. Public technical material and independent implementations may be
60
+ consulted for engineering review or black-box verification; provenance is
61
+ recorded in NOTICE.md.
62
+
63
+
64
+ CONCLUSION
65
+ --------------------------------------------------------------------------
66
+
67
+ This project's original Micro QR implementation is distributed under the
68
+ MIT License. Micro QR is implemented from published technical descriptions
69
+ and independent black-box checks; ECI, FNC1 and Structured Append modes
70
+ are outside the current Micro QR API scope. [LEGAL REVIEW]
71
+
72
+ References relied upon:
73
+ - ISO/IEC 18004, ISO/IEC
74
+ - DENSO WAVE Micro QR Code overview, https://www.qrcode.com/en/codes/microqr.html
75
+ - Micro QR Code patent and trademark scope [LEGAL REVIEW]
76
+
77
+ This is an engineering assessment, not legal advice. Items marked
78
+ [TO VERIFY] have not been independently confirmed by the author. If your
79
+ use is commercially sensitive, obtain your own legal review.
@@ -1,96 +1,81 @@
1
1
  MicroPDF417 — format provenance and usability
2
2
  ==========================================================================
3
3
 
4
- This file records the public technical and legal-review references consulted
5
- for the MicroPDF417 symbology implemented by this project. It is an
6
- engineering inventory, not legal advice.
4
+ This file records where the MicroPDF417 symbology comes from, what governs
5
+ it, and the basis on which this project implements and redistributes it.
7
6
 
8
-
9
- SPECIFICATION AND TECHNICAL BASIS
10
- --------------------------------------------------------------------------
11
-
12
- [VERIFIED FACT] ISO/IEC 24728:2006 is the published MicroPDF417 bar code
13
- symbology specification. It describes the symbology characteristics, data
14
- character encodation, fixed symbol formats, dimensions, error correction and
15
- decoding algorithm:
16
-
17
- https://www.iso.org/standard/38838.html
18
-
19
- The standard text is copyrighted by ISO. This project does not reproduce,
20
- redistribute or excerpt the standard; it implements the symbology as an
21
- independently written program.
22
-
23
- For orientation only, the public Wikipedia overview was consulted:
24
-
25
- https://en.wikipedia.org/wiki/MicroPDF417
26
-
27
- Wikipedia is not treated as a legal authority or as a source of code.
7
+ It is an ENGINEERING INVENTORY, NOT LEGAL ADVICE. Items marked [TO VERIFY]
8
+ have not been independently confirmed by the author.
28
9
 
29
10
 
30
- PATENT REVIEW
11
+ ORIGIN
31
12
  --------------------------------------------------------------------------
32
13
 
33
- [VERIFIED FACT] The public record for US 6,047,892 identifies a
34
- two-dimensional bar-code symbology using implicit version information:
14
+ MicroPDF417 is a compact stacked 2D symbology specified by ISO/IEC
15
+ 24728:2006. The fixed variants, RAP structures and compact symbol geometry
16
+ are recorded here as technical provenance, not as a legal conclusion.
35
17
 
36
- https://patents.google.com/patent/US6047892A/en
37
18
 
38
- The direct PDF supplied through Google Patents is:
39
-
40
- https://patentimages.storage.googleapis.com/0a/79/f5/e8d374043414f3/US6047892.pdf
41
-
42
- [PATENT FAMILY REVIEW REQUIRED] Database status labels, assignee data,
43
- expiration calculations, continuations, foreign equivalents and any
44
- jurisdiction-specific rights are not legal conclusions. No freedom-to-operate
45
- opinion is made by this project.
46
-
47
-
48
- TRADEMARK, COPYRIGHT AND ATTRIBUTION
19
+ SPECIFICATION
49
20
  --------------------------------------------------------------------------
50
21
 
51
- [REGISTRY CHECK REQUIRED] The current registration status and ownership of
52
- "MicroPDF417" have not been established by a current trademark-office search.
53
- The name is used descriptively and does not imply endorsement.
22
+ ISO/IEC 24728:2006 MicroPDF417 bar code symbology specification.
23
+ The standard text is copyrighted by ISO/IEC and is not reproduced here.
54
24
 
55
- [LICENSE TERMS REVIEW REQUIRED] ISO's standard text and the patent document
56
- have their own copyright and access terms. Neither document is included in
57
- this repository. The implementation code is original work by Sythos under the
58
- MIT License.
25
+ Specification TEXT is copyrighted by its publisher. The SYMBOLOGY it
26
+ describes is not an encoding scheme is a system, not a work of
27
+ authorship. This project implements the symbology; it does not reproduce,
28
+ redistribute or excerpt any specification document.
59
29
 
60
- [VERIFIED FACT] ZXing-C++ documents MicroPDF417 as a supported symbology:
61
30
 
62
- https://github.com/zxing-cpp/zxing-cpp
31
+ PATENT STATUS
32
+ --------------------------------------------------------------------------
63
33
 
64
- It is a consultative interoperability reference only. No ZXing-C++ source,
65
- tables or runtime dependency are included in this project.
34
+ US 6,047,892 is a historical patent record associated with
35
+ MicroPDF417-style implicit version information. Patent families,
36
+ continuations, foreign equivalents and jurisdictional status require a
37
+ dedicated review. [LEGAL REVIEW]
66
38
 
67
39
 
68
- IMPLEMENTATION BASIS
40
+ TRADEMARK
69
41
  --------------------------------------------------------------------------
70
42
 
71
- MicroPDF417 is implemented here as original JavaScript. No third-party barcode
72
- source code is copied into or shipped by this project. Public and normative
73
- MicroPDF417 values are represented in original Sythos data structures, with
74
- the provenance and legal-review status recorded in this file and NOTICE.md.
75
- ZXing-C++, Zint and bwip-js may be consulted for implementation review or
76
- black-box interoperability validation; none is a runtime dependency.
77
-
43
+ The current registration status and ownership of the term "MicroPDF417"
44
+ have not been independently established. [LEGAL REVIEW] The term is used
45
+ descriptively and does not imply endorsement by a rights holder.
78
46
 
79
- NOTICE AND REVIEW REQUESTS
80
- --------------------------------------------------------------------------
47
+ A trademark does not restrict implementing a symbology. It restricts
48
+ branding — how a product names and presents itself.
81
49
 
82
- Any note, objection or concern about patents, trademarks, copyright,
83
- attribution or use of MicroPDF417 must be reported through a GitHub Issue at:
84
50
 
85
- https://github.com/Sythos/JS_Barcode_Universal/issues
51
+ IMPLEMENTATION BASIS IN THIS PROJECT
52
+ --------------------------------------------------------------------------
86
53
 
87
- Each report will be reviewed and verified before this inventory or the
88
- implementation is changed. This request is a maintenance process, not a legal
89
- admission or a substitute for professional advice.
54
+ MicroPDF417 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.
90
60
 
91
61
 
92
62
  CONCLUSION
93
63
  --------------------------------------------------------------------------
94
64
 
95
- This is an engineering assessment, not legal advice. If your use is
96
- commercially sensitive, obtain your own legal review.
65
+ This project's original MicroPDF417 implementation is distributed under
66
+ the MIT License. Third-party software cited in this inventory was used
67
+ exclusively for independent verification and cross-checking of which
68
+ portions of the published MicroPDF417 standard could be exercised under
69
+ comparable conditions. It is not a runtime dependency; no third-party
70
+ source code or table is copied or shipped. Patent, copyright and trademark
71
+ questions remain subject to the review labels above.
72
+
73
+ References relied upon:
74
+ - ISO/IEC 24728:2006, ISO/IEC
75
+ - MicroPDF417 overview, https://en.wikipedia.org/wiki/MicroPDF417
76
+ - US 6,047,892, https://patents.google.com/patent/US6047892A/en
77
+ - ZXing-C++ consultative interoperability reference, https://github.com/zxing-cpp/zxing-cpp
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.
@@ -4,23 +4,23 @@ MSI Plessey — format provenance and usability
4
4
  This file records where the MSI Plessey 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
- A variant of the Plessey Code, developed by the MSI Data Corporation. [TO
15
- VERIFY] Chiefly used for retail shelf labelling and inventory.
14
+ A variant of the Plessey Code, developed by the MSI Data Corporation.
15
+ [LEGAL REVIEW] Chiefly used for retail shelf labelling and inventory.
16
16
 
17
17
 
18
18
  SPECIFICATION
19
19
  --------------------------------------------------------------------------
20
20
 
21
21
  No ISO/IEC standard exists for MSI. It is documented through
22
- vendor and industry publications rather than a formal standard. [TO
23
- VERIFY]
22
+ vendor and industry publications rather than a formal standard. [LEGAL
23
+ REVIEW]
24
24
 
25
25
  Specification TEXT is copyrighted by its publisher. The SYMBOLOGY it
26
26
  describes is not — an encoding scheme is a system, not a work of
@@ -39,7 +39,7 @@ TRADEMARK
39
39
  --------------------------------------------------------------------------
40
40
 
41
41
  No live trademark restriction on implementing MSI is known to the author.
42
- [REGISTRY CHECK REQUIRED] That is a statement about the author's knowledge, not a
42
+ [LEGAL REVIEW] That is a statement about the author's knowledge, not a
43
43
  finding that no mark subsists: no trademark search was carried out. MSI
44
44
  Data Corporation is understood no longer to exist as an independent
45
45
  entity. [LEGAL REVIEW]
@@ -53,8 +53,10 @@ IMPLEMENTATION BASIS IN THIS PROJECT
53
53
 
54
54
  MSI Plessey 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
@@ -65,8 +67,8 @@ implementable and redistributable, and this project's implementation of it
65
67
  is distributed under the MIT License with no additional restriction.
66
68
 
67
69
  References relied upon:
68
- - Published descriptions of the MSI and Plessey symbologies [LICENSE TERMS REVIEW REQUIRED]
70
+ - Published descriptions of the MSI and Plessey symbologies [LEGAL REVIEW]
69
71
 
70
- This is an engineering assessment, not legal advice. Open review labels
71
- Open review labels identify claims that have not been independently confirmed by the author. If your
72
+ This is an engineering assessment, not legal advice. Items marked
73
+ [TO VERIFY] have not been independently confirmed by the author. If your
72
74
  use is commercially sensitive, obtain your own legal review.
@@ -1,37 +1,78 @@
1
- # PDF417 engineering inventory
2
-
3
- ## Implementation
4
-
5
- The PDF417 encoder, decoder, Reed–Solomon adapter, compaction code and image
6
- sampling helpers in this package are original Sythos work and are distributed
7
- under the repository MIT License. No third-party source code or table is
8
- shipped as a runtime dependency.
9
-
10
- ## Technical references
11
-
12
- - ISO/IEC 15438:2015, PDF417 bar code symbology specification. The standard
13
- text is copyrighted by ISO/IEC and is not reproduced here.
14
- - AIM USS-PDF417, Appendix H / Table H1, public reference copy used to
15
- transcribe the normative 3 × 929 codeword pattern ordering. The reference
16
- is attributed for provenance; its copyright and redistribution terms require
17
- legal review.
18
- - US 5,243,655 and US 5,304,786, historical patent records associated with
19
- PDF417. Family, continuation and jurisdictional status require legal review.
20
-
21
- ## Scope and review labels
22
-
23
- Release validation records black-box checks with ZXing Java 3.5.3, Zint 2.16.0
24
- and bwip-js 4.5.1. Those tools are development-time test instruments only and
25
- are not distributed with this package or included as runtime dependencies.
26
-
27
- - `[VERIFIED FACT]`supported by a primary or authoritative public source.
28
- - `[PATENT FAMILY REVIEW REQUIRED]` patent family, term or jurisdiction
29
- remains to be checked.
30
- - `[LICENSE TERMS REVIEW REQUIRED]` — source document or redistribution terms
31
- require confirmation.
32
- - `[REGISTRY CHECK REQUIRED]` — current trademark or registration status
33
- remains to be checked.
34
- - `[LEGAL REVIEW]` — a legal conclusion must not be inferred from this file.
35
-
36
- This file is an engineering inventory, not legal advice. It does not claim
37
- PDF417 is patent-free, public-domain, certified or ISO-compliant.
1
+ PDF417 format provenance and usability
2
+ ==========================================================================
3
+
4
+ This file records where the 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
+ PDF417 was developed by Symbol Technologies in the early 1990s. The
15
+ historical attribution and ownership record are documented here as
16
+ engineering provenance, not as a legal conclusion.
17
+
18
+
19
+ SPECIFICATION
20
+ --------------------------------------------------------------------------
21
+
22
+ ISO/IEC 15438:2015 — PDF417 bar code symbology specification.
23
+ AIM USS-PDF417 public reference, Appendix H / Table H1, used only as
24
+ an attributed technical source for the normative pattern ordering.
25
+
26
+ Specification TEXT is copyrighted by its publisher. The SYMBOLOGY it
27
+ describes is notan 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
+ US 5,243,655 and US 5,304,786 are historical PDF417 patent records. Their
36
+ current family, continuation and jurisdictional status requires a
37
+ dedicated patent review. [LEGAL REVIEW]
38
+
39
+
40
+ TRADEMARK
41
+ --------------------------------------------------------------------------
42
+
43
+ The current registration status and ownership of the term "PDF417" have
44
+ not been independently established. [LEGAL REVIEW] The term is used
45
+ descriptively and does not imply endorsement by a rights holder.
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
+ PDF417 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 implementation is distributed under the MIT
66
+ License. Normative values are attributed engineering inputs; the standard
67
+ text is not reproduced, and patent, copyright and trademark questions
68
+ remain subject to the review labels above.
69
+
70
+ References relied upon:
71
+ - ISO/IEC 15438:2015, ISO/IEC
72
+ - AIM USS-PDF417 Appendix H / Table H1, public reference copy
73
+ - US 5,243,655, USPTO patent record
74
+ - US 5,304,786, USPTO patent record
75
+
76
+ This is an engineering assessment, not legal advice. Items marked
77
+ [TO VERIFY] have not been independently confirmed by the author. If your
78
+ use is commercially sensitive, obtain your own legal review.
@@ -4,17 +4,17 @@ Pharmacode — format provenance and usability
4
4
  This file records where the Pharmacode 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
- Devised by Laetus GmbH for pharmaceutical packaging control. [VERIFIED FACT]
15
- Unusual among linear symbologies: it encodes an integer directly in a
16
- bijective base-2 form rather than digit by digit, and carries no check
17
- digit at all.
14
+ Devised by Laetus GmbH for pharmaceutical packaging control. [LEGAL
15
+ REVIEW] Unusual among linear symbologies: it encodes an integer directly
16
+ in a bijective base-2 form rather than digit by digit, and carries no
17
+ check digit at all.
18
18
 
19
19
 
20
20
  SPECIFICATION
@@ -32,8 +32,8 @@ redistribute or excerpt any specification document.
32
32
  PATENT STATUS
33
33
  --------------------------------------------------------------------------
34
34
 
35
- No live patent encumbrance is known; the format dates from the 1970s. [TO
36
- VERIFY]
35
+ No live patent encumbrance is known; the format dates from the 1970s.
36
+ [LEGAL REVIEW]
37
37
 
38
38
 
39
39
  TRADEMARK
@@ -52,8 +52,10 @@ IMPLEMENTATION BASIS IN THIS PROJECT
52
52
 
53
53
  Pharmacode 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
- - Laetus published description of Pharmacode [VERIFIED FACT]
69
+ - Laetus published description of Pharmacode [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.
@@ -4,7 +4,7 @@ QR Code — format provenance and usability
4
4
  This file records where the QR 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
 
@@ -54,8 +54,10 @@ IMPLEMENTATION BASIS IN THIS PROJECT
54
54
 
55
55
  QR Code is implemented here from published descriptions of the format,
56
56
  which are systems and facts rather than works of authorship. No source
57
- code and no constant table from any other barcode implementation was used,
58
- consulted or copied, under any licence.
57
+ code or constant table from any other barcode implementation is copied or
58
+ shipped. Public technical material and independent implementations may be
59
+ consulted for engineering review or black-box verification; provenance is
60
+ recorded in NOTICE.md.
59
61
 
60
62
 
61
63
  CONCLUSION
@@ -67,9 +69,9 @@ is distributed under the MIT License with no additional restriction.
67
69
 
68
70
  References relied upon:
69
71
  - ISO/IEC 18004, ISO/IEC
70
- - DENSO WAVE's published position on its QR Code patent rights [VERIFIED FACT]
71
- - QR Code trademark registration, DENSO WAVE INCORPORATED [REGISTRY CHECK REQUIRED]
72
+ - DENSO WAVE's published position on its QR Code patent rights [LEGAL REVIEW]
73
+ - QR Code trademark registration, DENSO WAVE INCORPORATED [LEGAL REVIEW]
72
74
 
73
- This is an engineering assessment, not legal advice. Open review labels
74
- 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
75
77
  use is commercially sensitive, obtain your own legal review.
@@ -0,0 +1,79 @@
1
+ rMQR Code — format provenance and usability
2
+ ==========================================================================
3
+
4
+ This file records where the rMQR Code symbology comes from, what governs
5
+ it, and the basis on which this project implements and redistributes it.
6
+
7
+ It is an ENGINEERING INVENTORY, NOT LEGAL ADVICE. Items marked [TO VERIFY]
8
+ have not been independently confirmed by the author.
9
+
10
+
11
+ ORIGIN
12
+ --------------------------------------------------------------------------
13
+
14
+ rMQR Code (Rectangular Micro QR Code) is a rectangular QR-family symbology
15
+ standardised separately from QR Model 2 and Micro QR. This implementation
16
+ covers the 32 standard geometries and M/H ECC variants.
17
+
18
+
19
+ SPECIFICATION
20
+ --------------------------------------------------------------------------
21
+
22
+ ISO/IEC 23941:2022 — Rectangular Micro QR Code bar code symbology
23
+ specification. The specification TEXT is copyrighted by ISO/IEC and is
24
+ not reproduced here.
25
+ DENSO WAVE public rMQR technical information.
26
+
27
+ Specification TEXT is copyrighted by its publisher. The SYMBOLOGY it
28
+ describes is not — an encoding scheme is a system, not a work of
29
+ authorship. This project implements the symbology; it does not reproduce,
30
+ redistribute or excerpt any specification document.
31
+
32
+
33
+ PATENT STATUS
34
+ --------------------------------------------------------------------------
35
+
36
+ Patent rights, declarations and family status associated with rMQR Code
37
+ have not been independently established for every jurisdiction. The older
38
+ QR-family public statements are not treated as an rMQR waiver. [LEGAL
39
+ REVIEW]
40
+
41
+
42
+ TRADEMARK
43
+ --------------------------------------------------------------------------
44
+
45
+ The current registration status and ownership of "rMQR" and "Rectangular
46
+ Micro QR" have not been independently established. [LEGAL REVIEW] The
47
+ names are used descriptively and do not imply endorsement.
48
+
49
+ A trademark does not restrict implementing a symbology. It restricts
50
+ branding — how a product names and presents itself.
51
+
52
+
53
+ IMPLEMENTATION BASIS IN THIS PROJECT
54
+ --------------------------------------------------------------------------
55
+
56
+ rMQR Code is implemented here from published descriptions of the format,
57
+ which are systems and facts rather than works of authorship. No source
58
+ code or constant table from any other barcode implementation is copied or
59
+ shipped. Public technical material and independent implementations may be
60
+ consulted for engineering review or black-box verification; provenance is
61
+ recorded in NOTICE.md.
62
+
63
+
64
+ CONCLUSION
65
+ --------------------------------------------------------------------------
66
+
67
+ This project's original rMQR implementation is distributed under the MIT
68
+ License. Normative values are represented in original Sythos structures
69
+ and were checked against independent public implementations; standard
70
+ copyright and patent questions remain subject to legal review.
71
+
72
+ References relied upon:
73
+ - ISO/IEC 23941:2022, ISO/IEC, https://www.iso.org/standard/77404.html
74
+ - DENSO WAVE rMQR overview, https://www.denso-wave.com/en/adcd/fundamental/2dcode/qrc/rmqr.html
75
+ - rMQR patent, trademark and licence scope [LEGAL REVIEW]
76
+
77
+ This is an engineering assessment, not legal advice. Items marked
78
+ [TO VERIFY] have not been independently confirmed by the author. If your
79
+ use is commercially sensitive, obtain your own legal review.