@sythos/js_barcode_universal 1.1.0 → 1.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +24 -18
- package/NOTICE.md +27 -22
- package/README.md +596 -460
- package/bundle/sythos-barcode.esm.js +4606 -228
- package/bundle/sythos-barcode.js +4586 -228
- package/examples/create.html +1011 -731
- package/licenses/README.md +23 -18
- package/licenses/aztec-code.license +9 -7
- package/licenses/codabar.license +16 -13
- package/licenses/code-11.license +11 -9
- package/licenses/code-128.license +8 -6
- package/licenses/code-39.license +8 -6
- package/licenses/code-93.license +13 -11
- package/licenses/data-matrix.license +11 -9
- package/licenses/ean-13.license +7 -5
- package/licenses/ean-8.license +7 -5
- package/licenses/frameqr.license +84 -0
- package/licenses/gs1-128.license +7 -5
- package/licenses/isbn.license +8 -6
- package/licenses/itf-14.license +7 -5
- package/licenses/itf.license +7 -5
- package/licenses/micro-qr.license +79 -0
- package/licenses/micropdf417.license +81 -0
- package/licenses/msi-plessey.license +12 -10
- package/licenses/pdf417.license +78 -0
- package/licenses/pharmacode.license +13 -11
- package/licenses/qr-code.license +7 -5
- package/licenses/rmqr.license +79 -0
- package/licenses/upc-a.license +9 -7
- package/licenses/upc-e.license +7 -5
- package/package.json +104 -88
- package/src/core/reed-solomon.js +326 -312
- package/src/datamatrix/decoder.js +262 -262
- package/src/datamatrix/detector.js +225 -225
- package/src/datamatrix/encoder.js +191 -191
- package/src/datamatrix/index.js +42 -42
- package/src/datamatrix/tables.js +123 -123
- package/src/frameqr/decoder.js +239 -0
- package/src/frameqr/detector.js +192 -0
- package/src/frameqr/encoder.js +156 -0
- package/src/frameqr/index.js +42 -0
- package/src/frameqr/tables.js +270 -0
- package/src/index.js +166 -3
- package/src/micropdf417/compaction.js +116 -0
- package/src/micropdf417/decoder.js +183 -0
- package/src/micropdf417/detector.js +149 -0
- package/src/micropdf417/encoder.js +209 -0
- package/src/micropdf417/error-correction.js +55 -0
- package/src/micropdf417/index.js +49 -0
- package/src/micropdf417/tables.js +184 -0
- package/src/microqr/decoder.js +245 -0
- package/src/microqr/detector.js +355 -0
- package/src/microqr/encoder.js +269 -0
- package/src/microqr/index.js +36 -0
- package/src/microqr/tables.js +316 -0
- package/src/oned/index.js +59 -59
- package/src/pdf417/compaction.js +298 -0
- package/src/pdf417/decoder.js +75 -0
- package/src/pdf417/detector.js +468 -0
- package/src/pdf417/encoder.js +91 -0
- package/src/pdf417/error-correction.js +47 -0
- package/src/pdf417/index.js +6 -0
- package/src/pdf417/tables.js +317 -0
- package/src/rmqr/decoder.js +101 -0
- package/src/rmqr/detector.js +90 -0
- package/src/rmqr/encoder.js +172 -0
- package/src/rmqr/index.js +37 -0
- package/src/rmqr/tables.js +154 -0
package/licenses/README.md
CHANGED
|
@@ -10,24 +10,29 @@ appendix carries the consolidated inventory these files expand on.
|
|
|
10
10
|
|
|
11
11
|
| Format | File | `[TO VERIFY]` items |
|
|
12
12
|
|---|---|---:|
|
|
13
|
-
| Aztec Code | [`aztec-code.license`](aztec-code.license) |
|
|
14
|
-
| QR Code | [`qr-code.license`](qr-code.license) |
|
|
15
|
-
| Data Matrix ECC 200 | [`data-matrix.license`](data-matrix.license) |
|
|
16
|
-
|
|
|
17
|
-
|
|
|
18
|
-
|
|
|
19
|
-
|
|
|
20
|
-
|
|
|
21
|
-
|
|
|
22
|
-
|
|
|
23
|
-
| Code
|
|
24
|
-
|
|
|
25
|
-
|
|
|
26
|
-
|
|
|
27
|
-
|
|
|
28
|
-
|
|
|
29
|
-
|
|
|
30
|
-
|
|
|
13
|
+
| Aztec Code | [`aztec-code.license`](aztec-code.license) | 2 |
|
|
14
|
+
| QR Code | [`qr-code.license`](qr-code.license) | 2 |
|
|
15
|
+
| Data Matrix ECC 200 | [`data-matrix.license`](data-matrix.license) | 2 |
|
|
16
|
+
| PDF417 | [`pdf417.license`](pdf417.license) | 2 |
|
|
17
|
+
| MicroPDF417 | [`micropdf417.license`](micropdf417.license) | 2 |
|
|
18
|
+
| EAN-13 | [`ean-13.license`](ean-13.license) | 2 |
|
|
19
|
+
| EAN-8 | [`ean-8.license`](ean-8.license) | 2 |
|
|
20
|
+
| UPC-A | [`upc-a.license`](upc-a.license) | 2 |
|
|
21
|
+
| UPC-E | [`upc-e.license`](upc-e.license) | 2 |
|
|
22
|
+
| ISBN (Bookland EAN-13) | [`isbn.license`](isbn.license) | 2 |
|
|
23
|
+
| Code 128 | [`code-128.license`](code-128.license) | 2 |
|
|
24
|
+
| GS1-128 | [`gs1-128.license`](gs1-128.license) | 2 |
|
|
25
|
+
| Code 39 | [`code-39.license`](code-39.license) | 2 |
|
|
26
|
+
| Code 93 | [`code-93.license`](code-93.license) | 2 |
|
|
27
|
+
| ITF (Interleaved 2 of 5) | [`itf.license`](itf.license) | 2 |
|
|
28
|
+
| ITF-14 | [`itf-14.license`](itf-14.license) | 2 |
|
|
29
|
+
| Codabar | [`codabar.license`](codabar.license) | 2 |
|
|
30
|
+
| Code 11 | [`code-11.license`](code-11.license) | 2 |
|
|
31
|
+
| MSI Plessey | [`msi-plessey.license`](msi-plessey.license) | 2 |
|
|
32
|
+
| Pharmacode | [`pharmacode.license`](pharmacode.license) | 2 |
|
|
33
|
+
| Micro QR Code | [`micro-qr.license`](micro-qr.license) | 2 |
|
|
34
|
+
| rMQR Code | [`rmqr.license`](rmqr.license) | 2 |
|
|
35
|
+
| Frame QR / Sythos Canvas QR profile | [`frameqr.license`](frameqr.license) | 2 |
|
|
31
36
|
|
|
32
37
|
## On the `[TO VERIFY]` markers
|
|
33
38
|
|
|
@@ -13,7 +13,7 @@ ORIGIN
|
|
|
13
13
|
|
|
14
14
|
Created by Andrew Longacre, Jr. of Welch Allyn in the 1990s. The exact
|
|
15
15
|
attribution, ownership history and release terms have not been
|
|
16
|
-
independently confirmed by the author. [
|
|
16
|
+
independently confirmed by the author. [LEGAL REVIEW]
|
|
17
17
|
|
|
18
18
|
|
|
19
19
|
SPECIFICATION
|
|
@@ -34,14 +34,14 @@ PATENT STATUS
|
|
|
34
34
|
|
|
35
35
|
The status of patents associated with Aztec Code, including any original
|
|
36
36
|
rights-holder statements and their current effect, has not been
|
|
37
|
-
independently confirmed by the author. [
|
|
37
|
+
independently confirmed by the author. [LEGAL REVIEW]
|
|
38
38
|
|
|
39
39
|
|
|
40
40
|
TRADEMARK
|
|
41
41
|
--------------------------------------------------------------------------
|
|
42
42
|
|
|
43
43
|
The current registration status and ownership of the words "Aztec Code"
|
|
44
|
-
have not been independently established. [
|
|
44
|
+
have not been independently established. [LEGAL REVIEW] The name is used
|
|
45
45
|
descriptively here and does not imply endorsement by any rights holder.
|
|
46
46
|
|
|
47
47
|
A trademark does not restrict implementing a symbology. It restricts
|
|
@@ -53,8 +53,10 @@ IMPLEMENTATION BASIS IN THIS PROJECT
|
|
|
53
53
|
|
|
54
54
|
Aztec Code is implemented here from published descriptions of the format,
|
|
55
55
|
which are systems and facts rather than works of authorship. No source
|
|
56
|
-
code
|
|
57
|
-
|
|
56
|
+
code or constant table from any other barcode implementation is copied or
|
|
57
|
+
shipped. Public technical material and independent implementations may be
|
|
58
|
+
consulted for engineering review or black-box verification; provenance is
|
|
59
|
+
recorded in NOTICE.md.
|
|
58
60
|
|
|
59
61
|
|
|
60
62
|
CONCLUSION
|
|
@@ -63,11 +65,11 @@ 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 marked [
|
|
68
|
+
trademark entries that remain marked [LEGAL REVIEW].
|
|
67
69
|
|
|
68
70
|
References relied upon:
|
|
69
71
|
- ISO/IEC 24778:2024, ISO/IEC
|
|
70
|
-
- Aztec Code origin, patent position and trademark status [
|
|
72
|
+
- Aztec Code origin, patent position and trademark status [LEGAL REVIEW]
|
|
71
73
|
|
|
72
74
|
This is an engineering assessment, not legal advice. Items marked
|
|
73
75
|
[TO VERIFY] have not been independently confirmed by the author. If your
|
package/licenses/codabar.license
CHANGED
|
@@ -11,11 +11,11 @@ have not been independently confirmed by the author.
|
|
|
11
11
|
ORIGIN
|
|
12
12
|
--------------------------------------------------------------------------
|
|
13
13
|
|
|
14
|
-
Developed in the early 1970s. [
|
|
15
|
-
in secondary sources — Monarch Marking Systems and Pitney Bowes
|
|
16
|
-
cited — so the credit is deliberately NOT treated as settled here
|
|
17
|
-
single originator is asserted. Long used by blood banks, libraries
|
|
18
|
-
courier services.
|
|
14
|
+
Developed in the early 1970s. [LEGAL REVIEW] COMPETING ATTRIBUTIONS
|
|
15
|
+
CIRCULATE in secondary sources — Monarch Marking Systems and Pitney Bowes
|
|
16
|
+
are both cited — so the credit is deliberately NOT treated as settled here
|
|
17
|
+
and no single originator is asserted. Long used by blood banks, libraries
|
|
18
|
+
and courier services.
|
|
19
19
|
|
|
20
20
|
|
|
21
21
|
SPECIFICATION
|
|
@@ -23,8 +23,9 @@ SPECIFICATION
|
|
|
23
23
|
|
|
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
|
-
[
|
|
27
|
-
Also known as NW-7, and in the United States as Code 2 of 7. [
|
|
26
|
+
[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. [
|
|
40
|
+
have expired long ago. [LEGAL REVIEW]
|
|
40
41
|
|
|
41
42
|
|
|
42
43
|
TRADEMARK
|
|
43
44
|
--------------------------------------------------------------------------
|
|
44
45
|
|
|
45
46
|
No live trademark restriction on implementing Codabar is known to the
|
|
46
|
-
author. [
|
|
47
|
-
a finding that no mark subsists: no trademark search was carried out.
|
|
47
|
+
author. [LEGAL REVIEW] That is a statement about the author's knowledge,
|
|
48
|
+
not a finding that no mark subsists: no trademark search was carried out.
|
|
48
49
|
|
|
49
50
|
A trademark does not restrict implementing a symbology. It restricts
|
|
50
51
|
branding — how a product names and presents itself.
|
|
@@ -55,8 +56,10 @@ IMPLEMENTATION BASIS IN THIS PROJECT
|
|
|
55
56
|
|
|
56
57
|
Codabar is implemented here from published descriptions of the format,
|
|
57
58
|
which are systems and facts rather than works of authorship. No source
|
|
58
|
-
code
|
|
59
|
-
|
|
59
|
+
code or constant table from any other barcode implementation is copied or
|
|
60
|
+
shipped. Public technical material and independent implementations may be
|
|
61
|
+
consulted for engineering review or black-box verification; provenance is
|
|
62
|
+
recorded in NOTICE.md.
|
|
60
63
|
|
|
61
64
|
|
|
62
65
|
CONCLUSION
|
|
@@ -67,7 +70,7 @@ implementable and redistributable, and this project's implementation of it
|
|
|
67
70
|
is distributed under the MIT License with no additional restriction.
|
|
68
71
|
|
|
69
72
|
References relied upon:
|
|
70
|
-
- AIM USS-Codabar [
|
|
73
|
+
- AIM USS-Codabar [LEGAL REVIEW]
|
|
71
74
|
|
|
72
75
|
This is an engineering assessment, not legal advice. Items marked
|
|
73
76
|
[TO VERIFY] have not been independently confirmed by the author. If your
|
package/licenses/code-11.license
CHANGED
|
@@ -12,14 +12,14 @@ ORIGIN
|
|
|
12
12
|
--------------------------------------------------------------------------
|
|
13
13
|
|
|
14
14
|
Introduced by Intermec in 1977, primarily for labelling telecommunications
|
|
15
|
-
equipment. [
|
|
15
|
+
equipment. [LEGAL REVIEW]
|
|
16
16
|
|
|
17
17
|
|
|
18
18
|
SPECIFICATION
|
|
19
19
|
--------------------------------------------------------------------------
|
|
20
20
|
|
|
21
|
-
AIM published specification for Code 11. Terms vary. [
|
|
22
|
-
There is no ISO/IEC standard for Code 11. [
|
|
21
|
+
AIM published specification for Code 11. Terms vary. [LEGAL REVIEW]
|
|
22
|
+
There is no ISO/IEC standard for Code 11. [LEGAL REVIEW]
|
|
23
23
|
|
|
24
24
|
Specification TEXT is copyrighted by its publisher. The SYMBOLOGY it
|
|
25
25
|
describes is not — an encoding scheme is a system, not a work of
|
|
@@ -31,15 +31,15 @@ PATENT STATUS
|
|
|
31
31
|
--------------------------------------------------------------------------
|
|
32
32
|
|
|
33
33
|
The originating patents date from the 1970s-1980s and are understood to
|
|
34
|
-
have expired long ago. [
|
|
34
|
+
have expired long ago. [LEGAL REVIEW]
|
|
35
35
|
|
|
36
36
|
|
|
37
37
|
TRADEMARK
|
|
38
38
|
--------------------------------------------------------------------------
|
|
39
39
|
|
|
40
40
|
No live trademark restriction on implementing Code 11 is known to the
|
|
41
|
-
author. [
|
|
42
|
-
a finding that no mark subsists: no trademark search was carried out.
|
|
41
|
+
author. [LEGAL REVIEW] That is a statement about the author's knowledge,
|
|
42
|
+
not a finding that no mark subsists: no trademark search was carried out.
|
|
43
43
|
|
|
44
44
|
A trademark does not restrict implementing a symbology. It restricts
|
|
45
45
|
branding — how a product names and presents itself.
|
|
@@ -50,8 +50,10 @@ IMPLEMENTATION BASIS IN THIS PROJECT
|
|
|
50
50
|
|
|
51
51
|
Code 11 is implemented here from published descriptions of the format,
|
|
52
52
|
which are systems and facts rather than works of authorship. No source
|
|
53
|
-
code
|
|
54
|
-
|
|
53
|
+
code or constant table from any other barcode implementation is copied or
|
|
54
|
+
shipped. Public technical material and independent implementations may be
|
|
55
|
+
consulted for engineering review or black-box verification; provenance is
|
|
56
|
+
recorded in NOTICE.md.
|
|
55
57
|
|
|
56
58
|
|
|
57
59
|
CONCLUSION
|
|
@@ -62,7 +64,7 @@ implementable and redistributable, and this project's implementation of it
|
|
|
62
64
|
is distributed under the MIT License with no additional restriction.
|
|
63
65
|
|
|
64
66
|
References relied upon:
|
|
65
|
-
- AIM published specification for Code 11 [
|
|
67
|
+
- AIM published specification for Code 11 [LEGAL REVIEW]
|
|
66
68
|
|
|
67
69
|
This is an engineering assessment, not legal advice. Items marked
|
|
68
70
|
[TO VERIFY] have not been independently confirmed by the author. If your
|
|
@@ -11,7 +11,7 @@ have not been independently confirmed by the author.
|
|
|
11
11
|
ORIGIN
|
|
12
12
|
--------------------------------------------------------------------------
|
|
13
13
|
|
|
14
|
-
Devised by Computer Identics Corporation in 1981. [
|
|
14
|
+
Devised by Computer Identics Corporation in 1981. [LEGAL REVIEW]
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
SPECIFICATION
|
|
@@ -31,15 +31,15 @@ PATENT STATUS
|
|
|
31
31
|
--------------------------------------------------------------------------
|
|
32
32
|
|
|
33
33
|
The originating patents date from the 1970s-1980s and are understood to
|
|
34
|
-
have expired long ago. [
|
|
34
|
+
have expired long ago. [LEGAL REVIEW]
|
|
35
35
|
|
|
36
36
|
|
|
37
37
|
TRADEMARK
|
|
38
38
|
--------------------------------------------------------------------------
|
|
39
39
|
|
|
40
40
|
No live trademark restriction on implementing Code 128 is known to the
|
|
41
|
-
author. [
|
|
42
|
-
a finding that no mark subsists: no trademark search was carried out.
|
|
41
|
+
author. [LEGAL REVIEW] That is a statement about the author's knowledge,
|
|
42
|
+
not a finding that no mark subsists: no trademark search was carried out.
|
|
43
43
|
|
|
44
44
|
A trademark does not restrict implementing a symbology. It restricts
|
|
45
45
|
branding — how a product names and presents itself.
|
|
@@ -50,8 +50,10 @@ IMPLEMENTATION BASIS IN THIS PROJECT
|
|
|
50
50
|
|
|
51
51
|
Code 128 is implemented here from published descriptions of the format,
|
|
52
52
|
which are systems and facts rather than works of authorship. No source
|
|
53
|
-
code
|
|
54
|
-
|
|
53
|
+
code or constant table from any other barcode implementation is copied or
|
|
54
|
+
shipped. Public technical material and independent implementations may be
|
|
55
|
+
consulted for engineering review or black-box verification; provenance is
|
|
56
|
+
recorded in NOTICE.md.
|
|
55
57
|
|
|
56
58
|
|
|
57
59
|
CONCLUSION
|
package/licenses/code-39.license
CHANGED
|
@@ -12,7 +12,7 @@ ORIGIN
|
|
|
12
12
|
--------------------------------------------------------------------------
|
|
13
13
|
|
|
14
14
|
Devised in 1974 at Intermec, credited to Dr. David Allais and Ray Stevens.
|
|
15
|
-
[
|
|
15
|
+
[LEGAL REVIEW] One of the oldest alphanumeric symbologies still in general
|
|
16
16
|
use.
|
|
17
17
|
|
|
18
18
|
|
|
@@ -32,15 +32,15 @@ PATENT STATUS
|
|
|
32
32
|
--------------------------------------------------------------------------
|
|
33
33
|
|
|
34
34
|
The originating patents date from the 1970s-1980s and are understood to
|
|
35
|
-
have expired long ago. [
|
|
35
|
+
have expired long ago. [LEGAL REVIEW]
|
|
36
36
|
|
|
37
37
|
|
|
38
38
|
TRADEMARK
|
|
39
39
|
--------------------------------------------------------------------------
|
|
40
40
|
|
|
41
41
|
No live trademark restriction on implementing Code 39 is known to the
|
|
42
|
-
author. [
|
|
43
|
-
a finding that no mark subsists: no trademark search was carried out.
|
|
42
|
+
author. [LEGAL REVIEW] That is a statement about the author's knowledge,
|
|
43
|
+
not a finding that no mark subsists: no trademark search was carried out.
|
|
44
44
|
|
|
45
45
|
A trademark does not restrict implementing a symbology. It restricts
|
|
46
46
|
branding — how a product names and presents itself.
|
|
@@ -51,8 +51,10 @@ IMPLEMENTATION BASIS IN THIS PROJECT
|
|
|
51
51
|
|
|
52
52
|
Code 39 is implemented here from published descriptions of the format,
|
|
53
53
|
which are systems and facts rather than works of authorship. No source
|
|
54
|
-
code
|
|
55
|
-
|
|
54
|
+
code or constant table from any other barcode implementation is copied or
|
|
55
|
+
shipped. Public technical material and independent implementations may be
|
|
56
|
+
consulted for engineering review or black-box verification; provenance is
|
|
57
|
+
recorded in NOTICE.md.
|
|
56
58
|
|
|
57
59
|
|
|
58
60
|
CONCLUSION
|
package/licenses/code-93.license
CHANGED
|
@@ -12,16 +12,16 @@ ORIGIN
|
|
|
12
12
|
--------------------------------------------------------------------------
|
|
13
13
|
|
|
14
14
|
Introduced by Intermec in 1982 as a denser successor to Code 39, adding
|
|
15
|
-
two check characters. [
|
|
15
|
+
two check characters. [LEGAL REVIEW]
|
|
16
16
|
|
|
17
17
|
|
|
18
18
|
SPECIFICATION
|
|
19
19
|
--------------------------------------------------------------------------
|
|
20
20
|
|
|
21
|
-
AIM symbology specification for Code 93. Terms vary by document. [
|
|
22
|
-
|
|
23
|
-
ISO/IEC 16388 covers Code 39; Code 93 is documented separately. [
|
|
24
|
-
|
|
21
|
+
AIM symbology specification for Code 93. Terms vary by document. [LEGAL
|
|
22
|
+
REVIEW]
|
|
23
|
+
ISO/IEC 16388 covers Code 39; Code 93 is documented separately. [LEGAL
|
|
24
|
+
REVIEW]
|
|
25
25
|
|
|
26
26
|
Specification TEXT is copyrighted by its publisher. The SYMBOLOGY it
|
|
27
27
|
describes is not — an encoding scheme is a system, not a work of
|
|
@@ -33,15 +33,15 @@ PATENT STATUS
|
|
|
33
33
|
--------------------------------------------------------------------------
|
|
34
34
|
|
|
35
35
|
The originating patents date from the 1970s-1980s and are understood to
|
|
36
|
-
have expired long ago. [
|
|
36
|
+
have expired long ago. [LEGAL REVIEW]
|
|
37
37
|
|
|
38
38
|
|
|
39
39
|
TRADEMARK
|
|
40
40
|
--------------------------------------------------------------------------
|
|
41
41
|
|
|
42
42
|
No live trademark restriction on implementing Code 93 is known to the
|
|
43
|
-
author. [
|
|
44
|
-
a finding that no mark subsists: no trademark search was carried out.
|
|
43
|
+
author. [LEGAL REVIEW] That is a statement about the author's knowledge,
|
|
44
|
+
not a finding that no mark subsists: no trademark search was carried out.
|
|
45
45
|
|
|
46
46
|
A trademark does not restrict implementing a symbology. It restricts
|
|
47
47
|
branding — how a product names and presents itself.
|
|
@@ -52,8 +52,10 @@ IMPLEMENTATION BASIS IN THIS PROJECT
|
|
|
52
52
|
|
|
53
53
|
Code 93 is implemented here from published descriptions of the format,
|
|
54
54
|
which are systems and facts rather than works of authorship. No source
|
|
55
|
-
code
|
|
56
|
-
|
|
55
|
+
code or constant table from any other barcode implementation is copied or
|
|
56
|
+
shipped. Public technical material and independent implementations may be
|
|
57
|
+
consulted for engineering review or black-box verification; provenance is
|
|
58
|
+
recorded in NOTICE.md.
|
|
57
59
|
|
|
58
60
|
|
|
59
61
|
CONCLUSION
|
|
@@ -64,7 +66,7 @@ implementable and redistributable, and this project's implementation of it
|
|
|
64
66
|
is distributed under the MIT License with no additional restriction.
|
|
65
67
|
|
|
66
68
|
References relied upon:
|
|
67
|
-
- AIM published specification for Code 93 [
|
|
69
|
+
- AIM published specification for Code 93 [LEGAL REVIEW]
|
|
68
70
|
|
|
69
71
|
This is an engineering assessment, not legal advice. Items marked
|
|
70
72
|
[TO VERIFY] have not been independently confirmed by the author. If your
|
|
@@ -14,7 +14,7 @@ ORIGIN
|
|
|
14
14
|
Data Matrix emerged from industrial automatic-identification work
|
|
15
15
|
associated with International Data Matrix and later RVSI/CI Matrix in the
|
|
16
16
|
late 1980s and early 1990s. The exact corporate chronology and attribution
|
|
17
|
-
have not been independently confirmed by the author. [
|
|
17
|
+
have not been independently confirmed by the author. [LEGAL REVIEW]
|
|
18
18
|
|
|
19
19
|
|
|
20
20
|
SPECIFICATION
|
|
@@ -38,16 +38,16 @@ PATENT STATUS
|
|
|
38
38
|
Patent rights associated with ECC 200 have been reported as released for
|
|
39
39
|
public use by an earlier rights holder, but the original patents, chain of
|
|
40
40
|
title and release terms have not been independently confirmed by the
|
|
41
|
-
author. [
|
|
41
|
+
author. [LEGAL REVIEW]
|
|
42
42
|
|
|
43
43
|
|
|
44
44
|
TRADEMARK
|
|
45
45
|
--------------------------------------------------------------------------
|
|
46
46
|
|
|
47
47
|
The current registration status and ownership of the words "Data Matrix"
|
|
48
|
-
have not been independently established. [
|
|
48
|
+
have not been independently established. [LEGAL REVIEW] "GS1" and "GS1
|
|
49
49
|
DataMatrix" are GS1 designations; their use is descriptive here and does
|
|
50
|
-
not imply endorsement. [
|
|
50
|
+
not imply endorsement. [LEGAL REVIEW]
|
|
51
51
|
|
|
52
52
|
A trademark does not restrict implementing a symbology. It restricts
|
|
53
53
|
branding — how a product names and presents itself.
|
|
@@ -58,8 +58,10 @@ IMPLEMENTATION BASIS IN THIS PROJECT
|
|
|
58
58
|
|
|
59
59
|
Data Matrix ECC 200 is implemented here from published descriptions of the format,
|
|
60
60
|
which are systems and facts rather than works of authorship. No source
|
|
61
|
-
code
|
|
62
|
-
|
|
61
|
+
code or constant table from any other barcode implementation is copied or
|
|
62
|
+
shipped. Public technical material and independent implementations may be
|
|
63
|
+
consulted for engineering review or black-box verification; provenance is
|
|
64
|
+
recorded in NOTICE.md.
|
|
63
65
|
|
|
64
66
|
|
|
65
67
|
CONCLUSION
|
|
@@ -68,14 +70,14 @@ CONCLUSION
|
|
|
68
70
|
This project's original implementation is distributed under the MIT
|
|
69
71
|
License. The ISO/IEC and GS1 references establish the technical standards;
|
|
70
72
|
this engineering inventory does not claim to have resolved the
|
|
71
|
-
patent-release or trademark entries that remain marked [
|
|
73
|
+
patent-release or trademark entries that remain marked [LEGAL REVIEW].
|
|
72
74
|
|
|
73
75
|
References relied upon:
|
|
74
76
|
- ISO/IEC 16022:2024, ISO/IEC
|
|
75
77
|
- GS1 General Specifications, GS1 AISBL
|
|
76
78
|
- GS1 DataMatrix Guideline, GS1 AISBL
|
|
77
|
-
- Reported ECC 200 patent-release position [
|
|
78
|
-
- Data Matrix trademark status and ownership [
|
|
79
|
+
- Reported ECC 200 patent-release position [LEGAL REVIEW]
|
|
80
|
+
- Data Matrix trademark status and ownership [LEGAL REVIEW]
|
|
79
81
|
|
|
80
82
|
This is an engineering assessment, not legal advice. Items marked
|
|
81
83
|
[TO VERIFY] have not been independently confirmed by the author. If your
|
package/licenses/ean-13.license
CHANGED
|
@@ -20,7 +20,7 @@ SPECIFICATION
|
|
|
20
20
|
|
|
21
21
|
ISO/IEC 15420 — EAN/UPC bar code symbology specification.
|
|
22
22
|
GS1 General Specifications, GS1 AISBL — freely published; redistribution
|
|
23
|
-
terms are GS1's own [
|
|
23
|
+
terms are GS1's own [LEGAL REVIEW]
|
|
24
24
|
|
|
25
25
|
Specification TEXT is copyrighted by its publisher. The SYMBOLOGY it
|
|
26
26
|
describes is not — an encoding scheme is a system, not a work of
|
|
@@ -32,7 +32,7 @@ PATENT STATUS
|
|
|
32
32
|
--------------------------------------------------------------------------
|
|
33
33
|
|
|
34
34
|
The originating patents date from the 1970s-1980s and are understood to
|
|
35
|
-
have expired long ago. [
|
|
35
|
+
have expired long ago. [LEGAL REVIEW]
|
|
36
36
|
|
|
37
37
|
|
|
38
38
|
TRADEMARK
|
|
@@ -49,8 +49,10 @@ IMPLEMENTATION BASIS IN THIS PROJECT
|
|
|
49
49
|
|
|
50
50
|
EAN-13 is implemented here from published descriptions of the format,
|
|
51
51
|
which are systems and facts rather than works of authorship. No source
|
|
52
|
-
code
|
|
53
|
-
|
|
52
|
+
code or constant table from any other barcode implementation is copied or
|
|
53
|
+
shipped. Public technical material and independent implementations may be
|
|
54
|
+
consulted for engineering review or black-box verification; provenance is
|
|
55
|
+
recorded in NOTICE.md.
|
|
54
56
|
|
|
55
57
|
|
|
56
58
|
CONCLUSION
|
|
@@ -63,7 +65,7 @@ is distributed under the MIT License with no additional restriction.
|
|
|
63
65
|
References relied upon:
|
|
64
66
|
- ISO/IEC 15420, ISO/IEC
|
|
65
67
|
- GS1 General Specifications, GS1 AISBL — freely published;
|
|
66
|
-
redistribution terms are GS1's own [
|
|
68
|
+
redistribution terms are GS1's own [LEGAL REVIEW]
|
|
67
69
|
|
|
68
70
|
This is an engineering assessment, not legal advice. Items marked
|
|
69
71
|
[TO VERIFY] have not been independently confirmed by the author. If your
|
package/licenses/ean-8.license
CHANGED
|
@@ -20,7 +20,7 @@ SPECIFICATION
|
|
|
20
20
|
|
|
21
21
|
ISO/IEC 15420 — EAN/UPC bar code symbology specification.
|
|
22
22
|
GS1 General Specifications, GS1 AISBL — freely published; redistribution
|
|
23
|
-
terms are GS1's own [
|
|
23
|
+
terms are GS1's own [LEGAL REVIEW]
|
|
24
24
|
|
|
25
25
|
Specification TEXT is copyrighted by its publisher. The SYMBOLOGY it
|
|
26
26
|
describes is not — an encoding scheme is a system, not a work of
|
|
@@ -32,7 +32,7 @@ PATENT STATUS
|
|
|
32
32
|
--------------------------------------------------------------------------
|
|
33
33
|
|
|
34
34
|
The originating patents date from the 1970s-1980s and are understood to
|
|
35
|
-
have expired long ago. [
|
|
35
|
+
have expired long ago. [LEGAL REVIEW]
|
|
36
36
|
|
|
37
37
|
|
|
38
38
|
TRADEMARK
|
|
@@ -49,8 +49,10 @@ IMPLEMENTATION BASIS IN THIS PROJECT
|
|
|
49
49
|
|
|
50
50
|
EAN-8 is implemented here from published descriptions of the format,
|
|
51
51
|
which are systems and facts rather than works of authorship. No source
|
|
52
|
-
code
|
|
53
|
-
|
|
52
|
+
code or constant table from any other barcode implementation is copied or
|
|
53
|
+
shipped. Public technical material and independent implementations may be
|
|
54
|
+
consulted for engineering review or black-box verification; provenance is
|
|
55
|
+
recorded in NOTICE.md.
|
|
54
56
|
|
|
55
57
|
|
|
56
58
|
CONCLUSION
|
|
@@ -63,7 +65,7 @@ is distributed under the MIT License with no additional restriction.
|
|
|
63
65
|
References relied upon:
|
|
64
66
|
- ISO/IEC 15420, ISO/IEC
|
|
65
67
|
- GS1 General Specifications, GS1 AISBL — freely published;
|
|
66
|
-
redistribution terms are GS1's own [
|
|
68
|
+
redistribution terms are GS1's own [LEGAL REVIEW]
|
|
67
69
|
|
|
68
70
|
This is an engineering assessment, not legal advice. Items marked
|
|
69
71
|
[TO VERIFY] have not been independently confirmed by the author. If your
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
Frame QR / Sythos Canvas QR profile — format provenance and usability
|
|
2
|
+
==========================================================================
|
|
3
|
+
|
|
4
|
+
This file records where the Frame QR / Sythos Canvas QR profile 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
|
+
DENSO WAVE publicly describes FrameQR(R) as a proprietary QR-family
|
|
15
|
+
product with a freely shaped canvas and dedicated generation and reading
|
|
16
|
+
software. The public material does not publish the complete bitstream,
|
|
17
|
+
placement or error-correction rules required for native interoperability.
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
SPECIFICATION
|
|
21
|
+
--------------------------------------------------------------------------
|
|
22
|
+
|
|
23
|
+
DENSO WAVE public FrameQR material, including the product overview
|
|
24
|
+
and the public announcement. The proprietary format definition is not
|
|
25
|
+
reproduced here. This project implements the separate Sythos Canvas QR
|
|
26
|
+
profile on an ISO/IEC 18004 QR Model 2 baseline.
|
|
27
|
+
|
|
28
|
+
Specification TEXT is copyrighted by its publisher. The SYMBOLOGY it
|
|
29
|
+
describes is not — an encoding scheme is a system, not a work of
|
|
30
|
+
authorship. This project implements the symbology; it does not reproduce,
|
|
31
|
+
redistribute or excerpt any specification document.
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
PATENT STATUS
|
|
35
|
+
--------------------------------------------------------------------------
|
|
36
|
+
|
|
37
|
+
DENSO WAVE's FrameQR patent position, licensing terms and complete
|
|
38
|
+
patent-family status have not been independently established. The public
|
|
39
|
+
product material is not treated as a licence to implement native FrameQR.
|
|
40
|
+
[LEGAL REVIEW]
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
TRADEMARK
|
|
44
|
+
--------------------------------------------------------------------------
|
|
45
|
+
|
|
46
|
+
FrameQR and Frame QR are associated with DENSO WAVE and may be protected
|
|
47
|
+
marks. This project uses the name only to explain the compatibility
|
|
48
|
+
boundary and does not claim endorsement or native DENSO compatibility.
|
|
49
|
+
[LEGAL REVIEW]
|
|
50
|
+
|
|
51
|
+
A trademark does not restrict implementing a symbology. It restricts
|
|
52
|
+
branding — how a product names and presents itself.
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
IMPLEMENTATION BASIS IN THIS PROJECT
|
|
56
|
+
--------------------------------------------------------------------------
|
|
57
|
+
|
|
58
|
+
Frame QR / Sythos Canvas QR profile is implemented here from published descriptions of the format,
|
|
59
|
+
which are systems and facts rather than works of authorship. No source
|
|
60
|
+
code or constant table from any other barcode implementation is copied or
|
|
61
|
+
shipped. Public technical material and independent implementations may be
|
|
62
|
+
consulted for engineering review or black-box verification; provenance is
|
|
63
|
+
recorded in NOTICE.md.
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
CONCLUSION
|
|
67
|
+
--------------------------------------------------------------------------
|
|
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
|
|
71
|
+
bounded artwork canvas inside a QR Model 2 ECC-H symbol and does not claim
|
|
72
|
+
native FrameQR interoperability. Third-party software cited here was used
|
|
73
|
+
exclusively as an independent verification and cross-checking tool; no
|
|
74
|
+
third-party source code or table is copied or shipped. [LEGAL REVIEW]
|
|
75
|
+
|
|
76
|
+
References relied upon:
|
|
77
|
+
- DENSO WAVE FrameQR overview, https://www.qrcode.com/en/codes/frameqr.html
|
|
78
|
+
- DENSO WAVE FrameQR product page, https://www.denso-wave.com/en/system/qr/product/frame.html
|
|
79
|
+
- DENSO WAVE FrameQR announcement, https://www.denso-wave.com/en/adcd/info/detail__272.html
|
|
80
|
+
- ZXing Java 3.5.3 independent black-box capability check; FRAME_QR is not an exposed native format
|
|
81
|
+
|
|
82
|
+
This is an engineering assessment, not legal advice. Items marked
|
|
83
|
+
[TO VERIFY] have not been independently confirmed by the author. If your
|
|
84
|
+
use is commercially sensitive, obtain your own legal review.
|
package/licenses/gs1-128.license
CHANGED
|
@@ -21,7 +21,7 @@ SPECIFICATION
|
|
|
21
21
|
|
|
22
22
|
ISO/IEC 15417 — Code 128 (the underlying symbology).
|
|
23
23
|
GS1 General Specifications, GS1 AISBL — freely published; redistribution
|
|
24
|
-
terms are GS1's own [
|
|
24
|
+
terms are GS1's own [LEGAL REVIEW] (the Application Identifier rules)
|
|
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
|
|
@@ -32,7 +32,7 @@ redistribute or excerpt any specification document.
|
|
|
32
32
|
PATENT STATUS
|
|
33
33
|
--------------------------------------------------------------------------
|
|
34
34
|
|
|
35
|
-
Inherits Code 128's position; understood expired. [
|
|
35
|
+
Inherits Code 128's position; understood expired. [LEGAL REVIEW]
|
|
36
36
|
|
|
37
37
|
|
|
38
38
|
TRADEMARK
|
|
@@ -50,8 +50,10 @@ IMPLEMENTATION BASIS IN THIS PROJECT
|
|
|
50
50
|
|
|
51
51
|
GS1-128 is implemented here from published descriptions of the format,
|
|
52
52
|
which are systems and facts rather than works of authorship. No source
|
|
53
|
-
code
|
|
54
|
-
|
|
53
|
+
code or constant table from any other barcode implementation is copied or
|
|
54
|
+
shipped. Public technical material and independent implementations may be
|
|
55
|
+
consulted for engineering review or black-box verification; provenance is
|
|
56
|
+
recorded in NOTICE.md.
|
|
55
57
|
|
|
56
58
|
|
|
57
59
|
CONCLUSION
|
|
@@ -64,7 +66,7 @@ is distributed under the MIT License with no additional restriction.
|
|
|
64
66
|
References relied upon:
|
|
65
67
|
- ISO/IEC 15417, ISO/IEC
|
|
66
68
|
- GS1 General Specifications, GS1 AISBL — freely published;
|
|
67
|
-
redistribution terms are GS1's own [
|
|
69
|
+
redistribution terms are GS1's own [LEGAL REVIEW]
|
|
68
70
|
|
|
69
71
|
This is an engineering assessment, not legal advice. Items marked
|
|
70
72
|
[TO VERIFY] have not been independently confirmed by the author. If your
|