print-tag
Version:
Simple module to generate PDF tags for print in comercial formats
145 lines (144 loc) • 2.05 kB
JavaScript
module.exports = {
// PIMACO 6187
pimaco_6187: {
cols: [
5.50,
58.00,
107.50,
157.00
],
rows: [
12.70,
26.40,
39.60,
52.80,
66.00,
79.20,
93.57,
106.93,
120.30,
133.67,
146.17,
159.46,
172.75,
186.04,
199.32,
212.61,
225.90,
239.19,
252.48,
265.76
],
maxTagsInPage: 80,
tagSize: {
width: 44.40,
height: 12.70,
align: 'center'
},
paperSize: [215.90, 279.40],
paperMargins: {
top: 12.70,
bottom: 12.70,
left: 14.50,
right: 14.50
}
},
// PIMACO 6180
pimaco_6180: {
cols: [
4.80,
74.6,
144.40
],
rows: [
12.70,
38.10,
63.50,
88.90,
114.30,
139.70,
165.10,
190.50,
215.90,
241.30
],
maxTagsInPage: 30,
tagSize: {
width: 66.70,
height: 25.40,
align: 'left'
},
paperSize: [215.90, 279.40],
paperMargins: {
top: 12.70,
bottom: 12.70,
left: 4.80,
right: 4.80
}
},
// PIMACO 6081
pimaco_6081: {
cols: [
4,
110
],
rows: [
12.7,
38.1,
63.5,
88.9,
114.3,
139.7,
165.1,
190.5,
215.9,
241.3,
266.7
],
maxTagsInPage: 20,
tagSize: {
width: 101.6,
height: 25.4,
align: 'center'
},
paperSize: [215.90, 279.40],
paperMargins: {
top: 12.70,
bottom: 12.70,
left: 4,
right: 4
},
},
// PIMACO A4355
pimaco_a4355: {
cols: [
7.2,
74,
141
],
rows: [
9,
40,
71,
102,
133,
164,
195,
226,
257
],
maxTagsInPage: 27,
tagSize: {
width: 63.5,
height: 31,
align: 'center'
},
paperSize: [210.00, 297.00],
paperMargins: {
top: 9,
bottom: 0,
left: 7.2,
right: 0
}
}
}