我只是使用 Nodejs 将 p-touch 模板代码发送到 QL-720NW。
我已经按照如何设置P-Touch模板的步骤进行操作。
另外,我尝试使用tojocky/node-printer向打印机发送命令。
这是我的代码,
var rawData = new Buffer([
0x1B, 0x69, 0x61, 0x33, // Use p-touch template
0x5E, 0x49, 0x49, // Initialize p-touch template
0x5E, 0x54, 0x53, 0x30, 0x30, 0x31, // Choose template 1
0x5E, 0x46, 0x46 // Start printing
]);
printer.printDirect({
data: rawData
, printer:'Brother QL-720NW' // printer name, if missing then will print to default printer
, type: 'RAW' // type: RAW, TEXT, PDF, JPEG, .. depends on platform
, success:function(jobID){
console.log("sent to printer with ID: "+jobID);
}
, error:function(err){console.log(err);}
});
但是,打印机总是出现故障并在红灯下闪烁。只需致电兄弟技术支持并搜索技术规格。找不到任何想法。有人知道吗?
最后,我找到了核心问题。
首先,tojocky/node-printer可以向QL-720NW发送ESC/P。
其次,主要问题来自p-touch模板。设计标签布局时。每个分配了对象名称的 UI 小组件都需要注入值。如果你想要一个静态对象,你应该删除对象名称并勾选一个复选框,强制小部件无法修改。
第三,发送如下命令
- 切换到 P 触摸模板模式 (ESC ia3)
- 初始化 (^||)
- 选择模板 (^TS001)
- 选择对象名称 (^ONobject\x0h)
- 直接插入数据 (^DI\x05h\x0hHello)
- 开始打印 (^FF)
您可以打印它。
示例代码:https://github.com/KingWu/NodePrinterExample
祝你好运。