-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathblog.js
53 lines (46 loc) · 1.54 KB
/
blog.js
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
// simple code for
// MIT license
const jimp = require("jimp");
const fs = require("fs");
const path = require("path");
const THRESHOLD = 2500000000; // RGBA value in int form
// 255 min; (r0 g0 b0 a255)
// 4294967295; max (r255 g255 b255 a255)
const COLS = 16;
const ROWS = 16;
// const COLS = 16;
// const ROWS = 2;
const labelPath = path.resolve(process.cwd(), process.argv[2]);
jimp.read(labelPath, async (err, image) => {
//image.resize(COLS, ROWS).grayscale();
const img = new Buffer.alloc((COLS / 8) * ROWS);
for (let row = 0; row < ROWS; row++) {
for (let byte = 0; byte < COLS / 8; byte++) {
let byteData = 0;
for (let bit = 0; bit < 8; bit++) {
const pixelX = byte * 8 + bit;
const pixelY = row;
const val = image.getPixelColor(pixelX, pixelY);
if (val > THRESHOLD) {
byteData = byteData | (1 << (7 - bit));
}
}
img[row * (COLS / 8) + byte] = byteData;
// console.log({ byteData, img, row, byte });
}
}
const label = Buffer.concat([
//Buffer.alloc(512), // 512 NUL bytes to start a new label
Buffer.from("\r\nSIZE 99.8 mm, 149.9 mm"),
Buffer.from("\r\nSET TEAR ON"),
Buffer.from("\r\nSET CUTTER OFF"),
Buffer.from("\r\nSET PEEL OFF"),
Buffer.from("\r\nCLS"),
Buffer.from("\r\nBITMAP 0,0,2,16,1,"),
img,
Buffer.from("\r\nPRINT 1,1"),
Buffer.from("\r\n"),
]);
fs.writeFileSync("out.tspl", label); //for debugging
//fs.writeFileSync("/dev/usb/lp0", label);
});