js-tspl
v1.1.0
Published
ts generate TSPL command, TSPL打印指令生成
Downloads
4
Readme
TSPL打印指令生成
开始使用
import TSPL, { toBytes } from 'js-tspl';
const tspl = new TSPL();
tspl.addText('Print test!');
const cmd = toBytes(tspl.toPrint());
链式调用
import TSPL, { toBytes } from 'js-tspl';
const cmd = toBytes(
new TSPL()
.addText('Print test!')
.addLine()
// toPrint 和 toBytes 会结束调用
.toBytes();
);
国内打印机一般需要先转gbk码
import TSPL, { toBytes, encodeGBK } from 'js-tspl';
const tspl = new TSPL();
tspl.addText('Print test!');
const cmd = toBytes(encodeGBK(tspl.toPrint()));