forked from kreativekorp/barcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbarcode-gs1-variable-length.html
More file actions
92 lines (79 loc) · 2.01 KB
/
barcode-gs1-variable-length.html
File metadata and controls
92 lines (79 loc) · 2.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<html>
<head>
<title>barcode.php gs1 variable length strings test</title>
<style>
body {
font-family: Helvetica, sans-serif;
padding: 1em;
}
.imgW20rem {
width: 20rem;
}
.list-unstyled {
list-style-type: none;
}
.d-flex {
display: flex;
}
</style>
</head>
<body>
<h3>GS1-128 codes with variable length Application Identifiers</h3>
<p>0</p>
<p><img src="barcode.php?s=ean-128&ts=3&th=12&d=00858000000000000007"></p>
<p>1</p>
<p><img src="barcode.php?s=ean-128&ts=3&th=12&d=0085800000000000000702085800000000093720"></p>
<p>2</p>
<p><img src="barcode.php?s=ean-128&ts=3&th=12&d=0085800000000000000702085800000000093720\FNC110LOT123"></p>
<h3>GS1-DataMatrix codes with variable length Application Identifiers</h3>
<p>3</p>
<div class="d-flex">
<img src="barcode.php?s=gs1-dmtx&d=0108580000000009">
<ul class="list-unstyled">
<li>(01) 08580000000009</li>
</ul>
</div>
<p>4</p>
<div class="d-flex">
<img src="barcode.php?s=gs1-dmtx&d=010858000000000910LOT123"></p>
<ul class="list-unstyled">
<li>(01) 08580000000009</li>
<li>(10) LOT123</li>
</ul>
</div>
<p>5</p>
<div class="d-flex">
<img src="barcode.php?s=gs1-dmtx&d=010858000000000910LOT123\FNC1211234567"></p>
<ul class="list-unstyled">
<li>(01) 08580000000009</li>
<li>(10) LOT123</li>
<li>(21) 1234567</li>
</ul>
</div>
<h3>GS1-QR codes with variable length Application Identifiers</h3>
<p>3</p>
<div class="d-flex">
<img src="barcode.php?s=gs1-qr-m&d=0108580000000009">
<ul class="list-unstyled">
<li>(01) 08580000000009</li>
</ul>
</div>
<p>4</p>
<div class="d-flex">
<img src="barcode.php?s=gs1-qr-m&d=010858000000000910LOT123"></p>
<ul class="list-unstyled">
<li>(01) 08580000000009</li>
<li>(10) LOT123</li>
</ul>
</div>
<p>5</p>
<div class="d-flex">
<img src="barcode.php?s=gs1-qr-h&d=010858000000000910LOT123\FNC1211234567"></p>
<ul class="list-unstyled">
<li>(01) 08580000000009</li>
<li>(10) LOT123</li>
<li>(21) 1234567</li>
</ul>
</div>
</body>
</html>