@sythos/js_barcode_universal 0.1.0

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 (53) hide show
  1. package/LICENSE +215 -0
  2. package/NOTICE.md +106 -0
  3. package/README.md +433 -0
  4. package/bundle/sythos-barcode.esm.js +7998 -0
  5. package/bundle/sythos-barcode.js +7948 -0
  6. package/examples/create.html +731 -0
  7. package/examples/read.html +341 -0
  8. package/licenses/README.md +42 -0
  9. package/licenses/codabar.license +74 -0
  10. package/licenses/code-11.license +69 -0
  11. package/licenses/code-128.license +69 -0
  12. package/licenses/code-39.license +70 -0
  13. package/licenses/code-93.license +71 -0
  14. package/licenses/ean-13.license +70 -0
  15. package/licenses/ean-8.license +70 -0
  16. package/licenses/gs1-128.license +71 -0
  17. package/licenses/isbn.license +76 -0
  18. package/licenses/itf-14.license +69 -0
  19. package/licenses/itf.license +70 -0
  20. package/licenses/msi-plessey.license +72 -0
  21. package/licenses/pharmacode.license +71 -0
  22. package/licenses/qr-code.license +75 -0
  23. package/licenses/upc-a.license +72 -0
  24. package/licenses/upc-e.license +69 -0
  25. package/package.json +89 -0
  26. package/src/core/bit-buffer.js +174 -0
  27. package/src/core/bit-matrix.js +241 -0
  28. package/src/core/errors.js +61 -0
  29. package/src/core/galois-field.js +204 -0
  30. package/src/core/index.js +56 -0
  31. package/src/core/reed-solomon.js +313 -0
  32. package/src/image/binarizer.js +270 -0
  33. package/src/image/grid-sampler.js +164 -0
  34. package/src/image/index.js +40 -0
  35. package/src/image/luminance.js +196 -0
  36. package/src/image/perspective.js +195 -0
  37. package/src/index.js +240 -0
  38. package/src/oned/index.js +89 -0
  39. package/src/oned/patterns.js +384 -0
  40. package/src/oned/reader.js +918 -0
  41. package/src/oned/writers.js +741 -0
  42. package/src/qr/decoder.js +575 -0
  43. package/src/qr/detector.js +630 -0
  44. package/src/qr/encoder.js +958 -0
  45. package/src/qr/index.js +44 -0
  46. package/src/qr/tables.js +737 -0
  47. package/src/render/image-data.js +125 -0
  48. package/src/render/index.js +130 -0
  49. package/src/render/options.js +160 -0
  50. package/src/render/png.js +295 -0
  51. package/src/render/svg.js +120 -0
  52. package/src/render/webgl.js +206 -0
  53. package/src/render/webgpu.js +369 -0
@@ -0,0 +1,71 @@
1
+ Code 93 — format provenance and usability
2
+ ==========================================================================
3
+
4
+ This file records where the Code 93 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
+ Introduced by Intermec in 1982 as a denser successor to Code 39, adding
15
+ two check characters. [TO VERIFY]
16
+
17
+
18
+ SPECIFICATION
19
+ --------------------------------------------------------------------------
20
+
21
+ AIM symbology specification for Code 93. Terms vary by document. [TO
22
+ VERIFY]
23
+ ISO/IEC 16388 covers Code 39; Code 93 is documented separately. [TO
24
+ VERIFY]
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. [TO VERIFY]
37
+
38
+
39
+ TRADEMARK
40
+ --------------------------------------------------------------------------
41
+
42
+ No live trademark restriction on implementing Code 93 is known to the
43
+ author. [TO VERIFY] That is a statement about the author's knowledge, not
44
+ a finding that no mark subsists: no trademark search was carried out.
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
+ Code 93 is implemented here from published descriptions of the format,
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.
57
+
58
+
59
+ CONCLUSION
60
+ --------------------------------------------------------------------------
61
+
62
+ On the basis of the references below, Code 93 is understood to be freely
63
+ implementable and redistributable, and this project's implementation of it
64
+ is distributed under the MIT License with no additional restriction.
65
+
66
+ References relied upon:
67
+ - AIM published specification for Code 93 [TO VERIFY]
68
+
69
+ This is an engineering assessment, not legal advice. Items marked
70
+ [TO VERIFY] have not been independently confirmed by the author. If your
71
+ use is commercially sensitive, obtain your own legal review.
@@ -0,0 +1,70 @@
1
+ EAN-13 — format provenance and usability
2
+ ==========================================================================
3
+
4
+ This file records where the EAN-13 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
+ Introduced in 1977 as the European Article Number, extending the
15
+ twelve-digit UPC to thirteen digits. Administered today by GS1.
16
+
17
+
18
+ SPECIFICATION
19
+ --------------------------------------------------------------------------
20
+
21
+ ISO/IEC 15420 — EAN/UPC bar code symbology specification.
22
+ GS1 General Specifications, GS1 AISBL — freely published; redistribution
23
+ terms are GS1's own [TO VERIFY]
24
+
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.
29
+
30
+
31
+ PATENT STATUS
32
+ --------------------------------------------------------------------------
33
+
34
+ The originating patents date from the 1970s-1980s and are understood to
35
+ have expired long ago. [TO VERIFY]
36
+
37
+
38
+ TRADEMARK
39
+ --------------------------------------------------------------------------
40
+
41
+ "GS1" and its symbology names are trademarks of GS1 AISBL.
42
+
43
+ A trademark does not restrict implementing a symbology. It restricts
44
+ branding — how a product names and presents itself.
45
+
46
+
47
+ IMPLEMENTATION BASIS IN THIS PROJECT
48
+ --------------------------------------------------------------------------
49
+
50
+ EAN-13 is implemented here from published descriptions of the format,
51
+ which are systems and facts rather than works of authorship. No source
52
+ code and no constant table from any other barcode implementation was used,
53
+ consulted or copied, under any licence.
54
+
55
+
56
+ CONCLUSION
57
+ --------------------------------------------------------------------------
58
+
59
+ On the basis of the references below, EAN-13 is understood to be freely
60
+ implementable and redistributable, and this project's implementation of it
61
+ is distributed under the MIT License with no additional restriction.
62
+
63
+ References relied upon:
64
+ - ISO/IEC 15420, ISO/IEC
65
+ - GS1 General Specifications, GS1 AISBL — freely published;
66
+ redistribution terms are GS1's own [TO VERIFY]
67
+
68
+ This is an engineering assessment, not legal advice. Items marked
69
+ [TO VERIFY] have not been independently confirmed by the author. If your
70
+ use is commercially sensitive, obtain your own legal review.
@@ -0,0 +1,70 @@
1
+ EAN-8 — format provenance and usability
2
+ ==========================================================================
3
+
4
+ This file records where the EAN-8 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
+ The short form of EAN, introduced alongside EAN-13 for packages too small
15
+ to carry the full symbol. Administered by GS1.
16
+
17
+
18
+ SPECIFICATION
19
+ --------------------------------------------------------------------------
20
+
21
+ ISO/IEC 15420 — EAN/UPC bar code symbology specification.
22
+ GS1 General Specifications, GS1 AISBL — freely published; redistribution
23
+ terms are GS1's own [TO VERIFY]
24
+
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.
29
+
30
+
31
+ PATENT STATUS
32
+ --------------------------------------------------------------------------
33
+
34
+ The originating patents date from the 1970s-1980s and are understood to
35
+ have expired long ago. [TO VERIFY]
36
+
37
+
38
+ TRADEMARK
39
+ --------------------------------------------------------------------------
40
+
41
+ "GS1" and its symbology names are trademarks of GS1 AISBL.
42
+
43
+ A trademark does not restrict implementing a symbology. It restricts
44
+ branding — how a product names and presents itself.
45
+
46
+
47
+ IMPLEMENTATION BASIS IN THIS PROJECT
48
+ --------------------------------------------------------------------------
49
+
50
+ EAN-8 is implemented here from published descriptions of the format,
51
+ which are systems and facts rather than works of authorship. No source
52
+ code and no constant table from any other barcode implementation was used,
53
+ consulted or copied, under any licence.
54
+
55
+
56
+ CONCLUSION
57
+ --------------------------------------------------------------------------
58
+
59
+ On the basis of the references below, EAN-8 is understood to be freely
60
+ implementable and redistributable, and this project's implementation of it
61
+ is distributed under the MIT License with no additional restriction.
62
+
63
+ References relied upon:
64
+ - ISO/IEC 15420, ISO/IEC
65
+ - GS1 General Specifications, GS1 AISBL — freely published;
66
+ redistribution terms are GS1's own [TO VERIFY]
67
+
68
+ This is an engineering assessment, not legal advice. Items marked
69
+ [TO VERIFY] have not been independently confirmed by the author. If your
70
+ use is commercially sensitive, obtain your own legal review.
@@ -0,0 +1,71 @@
1
+ GS1-128 — format provenance and usability
2
+ ==========================================================================
3
+
4
+ This file records where the GS1-128 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
+ Not a distinct symbology: GS1-128 is Code 128 carrying a leading FNC1
15
+ character, with its data structured by GS1 Application Identifiers.
16
+ Formerly known as UCC/EAN-128.
17
+
18
+
19
+ SPECIFICATION
20
+ --------------------------------------------------------------------------
21
+
22
+ ISO/IEC 15417 — Code 128 (the underlying symbology).
23
+ GS1 General Specifications, GS1 AISBL — freely published; redistribution
24
+ terms are GS1's own [TO VERIFY] (the Application Identifier rules)
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
+ Inherits Code 128's position; understood expired. [TO VERIFY]
36
+
37
+
38
+ TRADEMARK
39
+ --------------------------------------------------------------------------
40
+
41
+ "GS1" and its symbology names are trademarks of GS1 AISBL. "GS1-128" is a
42
+ GS1 designation — again a constraint on branding, not on implementation.
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
+ GS1-128 is implemented here from published descriptions of the format,
52
+ which are systems and facts rather than works of authorship. No source
53
+ code and no constant table from any other barcode implementation was used,
54
+ consulted or copied, under any licence.
55
+
56
+
57
+ CONCLUSION
58
+ --------------------------------------------------------------------------
59
+
60
+ On the basis of the references below, GS1-128 is understood to be freely
61
+ implementable and redistributable, and this project's implementation of it
62
+ is distributed under the MIT License with no additional restriction.
63
+
64
+ References relied upon:
65
+ - ISO/IEC 15417, ISO/IEC
66
+ - GS1 General Specifications, GS1 AISBL — freely published;
67
+ redistribution terms are GS1's own [TO VERIFY]
68
+
69
+ This is an engineering assessment, not legal advice. Items marked
70
+ [TO VERIFY] have not been independently confirmed by the author. If your
71
+ use is commercially sensitive, obtain your own legal review.
@@ -0,0 +1,76 @@
1
+ ISBN (Bookland EAN-13) — format provenance and usability
2
+ ==========================================================================
3
+
4
+ This file records where the ISBN (Bookland EAN-13) 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
+ ISBN is a NUMBERING scheme, not a symbology. An ISBN barcode is an
15
+ ordinary EAN-13 carrying a 978 or 979 prefix — the so-called "Bookland"
16
+ country code. The number itself is administered by the International ISBN
17
+ Agency under ISO 2108; the symbol is EAN-13 under GS1's rules.
18
+
19
+
20
+ SPECIFICATION
21
+ --------------------------------------------------------------------------
22
+
23
+ ISO 2108 — International Standard Book Number (the numbering rules).
24
+ ISO/IEC 15420 — EAN/UPC bar code symbology specification (the symbol).
25
+ GS1 General Specifications, GS1 AISBL — freely published; redistribution
26
+ terms are GS1's own [TO VERIFY]
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
+ No patent encumbrance is known for either the numbering scheme or the
38
+ EAN-13 symbol used to print it. [TO VERIFY]
39
+
40
+
41
+ TRADEMARK
42
+ --------------------------------------------------------------------------
43
+
44
+ No live trademark restriction is known on implementing ISBN encoding.
45
+ "ISBN" is a standard designation administered by the International ISBN
46
+ Agency. [TO VERIFY]
47
+
48
+ A trademark does not restrict implementing a symbology. It restricts
49
+ branding — how a product names and presents itself.
50
+
51
+
52
+ IMPLEMENTATION BASIS IN THIS PROJECT
53
+ --------------------------------------------------------------------------
54
+
55
+ ISBN (Bookland EAN-13) is implemented here from published descriptions of the format,
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.
59
+
60
+
61
+ CONCLUSION
62
+ --------------------------------------------------------------------------
63
+
64
+ On the basis of the references below, ISBN (Bookland EAN-13) is understood to be freely
65
+ implementable and redistributable, and this project's implementation of it
66
+ is distributed under the MIT License with no additional restriction.
67
+
68
+ References relied upon:
69
+ - ISO 2108, ISO
70
+ - ISO/IEC 15420, ISO/IEC
71
+ - GS1 General Specifications, GS1 AISBL — freely published;
72
+ redistribution terms are GS1's own [TO VERIFY]
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,69 @@
1
+ ITF-14 — format provenance and usability
2
+ ==========================================================================
3
+
4
+ This file records where the ITF-14 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
+ Not a distinct symbology: ITF-14 is Interleaved 2 of 5 fixed at fourteen
15
+ digits, used by GS1 to mark shipping containers with a GTIN.
16
+
17
+
18
+ SPECIFICATION
19
+ --------------------------------------------------------------------------
20
+
21
+ ISO/IEC 16390 — Interleaved 2 of 5 (the underlying symbology).
22
+ GS1 General Specifications, GS1 AISBL — freely published; redistribution
23
+ terms are GS1's own [TO VERIFY] (the fourteen-digit GTIN rules)
24
+
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.
29
+
30
+
31
+ PATENT STATUS
32
+ --------------------------------------------------------------------------
33
+
34
+ Inherits ITF's position; understood expired. [TO VERIFY]
35
+
36
+
37
+ TRADEMARK
38
+ --------------------------------------------------------------------------
39
+
40
+ "GS1" and its symbology names are trademarks of GS1 AISBL.
41
+
42
+ A trademark does not restrict implementing a symbology. It restricts
43
+ branding — how a product names and presents itself.
44
+
45
+
46
+ IMPLEMENTATION BASIS IN THIS PROJECT
47
+ --------------------------------------------------------------------------
48
+
49
+ ITF-14 is implemented here from published descriptions of the format,
50
+ which are systems and facts rather than works of authorship. No source
51
+ code and no constant table from any other barcode implementation was used,
52
+ consulted or copied, under any licence.
53
+
54
+
55
+ CONCLUSION
56
+ --------------------------------------------------------------------------
57
+
58
+ On the basis of the references below, ITF-14 is understood to be freely
59
+ implementable and redistributable, and this project's implementation of it
60
+ is distributed under the MIT License with no additional restriction.
61
+
62
+ References relied upon:
63
+ - ISO/IEC 16390, ISO/IEC
64
+ - GS1 General Specifications, GS1 AISBL — freely published;
65
+ redistribution terms are GS1's own [TO VERIFY]
66
+
67
+ This is an engineering assessment, not legal advice. Items marked
68
+ [TO VERIFY] have not been independently confirmed by the author. If your
69
+ use is commercially sensitive, obtain your own legal review.
@@ -0,0 +1,70 @@
1
+ ITF (Interleaved 2 of 5) — format provenance and usability
2
+ ==========================================================================
3
+
4
+ This file records where the ITF (Interleaved 2 of 5) 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
+ Developed from the earlier Code 2 of 5 family; the interleaving of digit
15
+ pairs into bars and spaces roughly doubles the density. Attributed to
16
+ Intermec, 1972. [TO VERIFY]
17
+
18
+
19
+ SPECIFICATION
20
+ --------------------------------------------------------------------------
21
+
22
+ ISO/IEC 16390 — Interleaved 2 of 5 bar code symbology specification.
23
+ Published by ISO/IEC; specification TEXT is copyrighted and paywalled.
24
+
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.
29
+
30
+
31
+ PATENT STATUS
32
+ --------------------------------------------------------------------------
33
+
34
+ The originating patents date from the 1970s-1980s and are understood to
35
+ have expired long ago. [TO VERIFY]
36
+
37
+
38
+ TRADEMARK
39
+ --------------------------------------------------------------------------
40
+
41
+ No live trademark restriction on implementing ITF is known to the author.
42
+ [TO VERIFY] That is a statement about the author's knowledge, not a
43
+ finding that no mark subsists: no trademark search was carried out.
44
+
45
+ A trademark does not restrict implementing a symbology. It restricts
46
+ branding — how a product names and presents itself.
47
+
48
+
49
+ IMPLEMENTATION BASIS IN THIS PROJECT
50
+ --------------------------------------------------------------------------
51
+
52
+ ITF (Interleaved 2 of 5) is implemented here from published descriptions of the format,
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.
56
+
57
+
58
+ CONCLUSION
59
+ --------------------------------------------------------------------------
60
+
61
+ On the basis of the references below, ITF (Interleaved 2 of 5) is understood to be freely
62
+ implementable and redistributable, and this project's implementation of it
63
+ is distributed under the MIT License with no additional restriction.
64
+
65
+ References relied upon:
66
+ - ISO/IEC 16390, ISO/IEC
67
+
68
+ This is an engineering assessment, not legal advice. Items marked
69
+ [TO VERIFY] have not been independently confirmed by the author. If your
70
+ use is commercially sensitive, obtain your own legal review.
@@ -0,0 +1,72 @@
1
+ MSI Plessey — format provenance and usability
2
+ ==========================================================================
3
+
4
+ This file records where the MSI Plessey 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
+ A variant of the Plessey Code, developed by the MSI Data Corporation. [TO
15
+ VERIFY] Chiefly used for retail shelf labelling and inventory.
16
+
17
+
18
+ SPECIFICATION
19
+ --------------------------------------------------------------------------
20
+
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]
24
+
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.
29
+
30
+
31
+ PATENT STATUS
32
+ --------------------------------------------------------------------------
33
+
34
+ The originating patents date from the 1970s and are understood to have
35
+ expired. [TO VERIFY]
36
+
37
+
38
+ TRADEMARK
39
+ --------------------------------------------------------------------------
40
+
41
+ No live trademark restriction on implementing MSI is known to the author.
42
+ [TO VERIFY] That is a statement about the author's knowledge, not a
43
+ finding that no mark subsists: no trademark search was carried out. MSI
44
+ Data Corporation is understood no longer to exist as an independent
45
+ entity. [TO VERIFY]
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
+ MSI Plessey is implemented here from published descriptions of the format,
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.
58
+
59
+
60
+ CONCLUSION
61
+ --------------------------------------------------------------------------
62
+
63
+ On the basis of the references below, MSI Plessey is understood to be freely
64
+ implementable and redistributable, and this project's implementation of it
65
+ is distributed under the MIT License with no additional restriction.
66
+
67
+ References relied upon:
68
+ - Published descriptions of the MSI and Plessey symbologies [TO VERIFY]
69
+
70
+ This is an engineering assessment, not legal advice. Items marked
71
+ [TO VERIFY] have not been independently confirmed by the author. If your
72
+ use is commercially sensitive, obtain your own legal review.
@@ -0,0 +1,71 @@
1
+ Pharmacode — format provenance and usability
2
+ ==========================================================================
3
+
4
+ This file records where the Pharmacode 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
+ Devised by Laetus GmbH for pharmaceutical packaging control. [TO VERIFY]
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.
18
+
19
+
20
+ SPECIFICATION
21
+ --------------------------------------------------------------------------
22
+
23
+ No ISO/IEC standard exists for Pharmacode. It is documented by
24
+ Laetus and reproduced in industry literature. [TO VERIFY]
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
+ No live patent encumbrance is known; the format dates from the 1970s. [TO
36
+ VERIFY]
37
+
38
+
39
+ TRADEMARK
40
+ --------------------------------------------------------------------------
41
+
42
+ "Pharmacode" is associated with Laetus GmbH; whether a live trademark
43
+ subsists has NOT been confirmed. [TO VERIFY] This is among the least
44
+ certain entries in this directory — treat it with corresponding caution.
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
+ Pharmacode is implemented here from published descriptions of the format,
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.
57
+
58
+
59
+ CONCLUSION
60
+ --------------------------------------------------------------------------
61
+
62
+ On the basis of the references below, Pharmacode is understood to be freely
63
+ implementable and redistributable, and this project's implementation of it
64
+ is distributed under the MIT License with no additional restriction.
65
+
66
+ References relied upon:
67
+ - Laetus published description of Pharmacode [TO VERIFY]
68
+
69
+ This is an engineering assessment, not legal advice. Items marked
70
+ [TO VERIFY] have not been independently confirmed by the author. If your
71
+ use is commercially sensitive, obtain your own legal review.