使用 Star SP700 (ESC-POS) 打印 NV 徽标
我正在尝试打印存储在打印机中的徽标。 \x1B\x1C\x70\x00\x1 这是我正在执行的代码。
但打印时仍然看不到徽标。 我缺少什么? 我使用 c++ btw
Printer SP700 Star 打印机
I'm Trying to print The logo stored in my printer.
\x1B\x1C\x70\x00\x1
this is the code i'm executing.
But I still cant see the logo when I print.
What am I missing?
im using c++ btw
Printer SP700 Star printer
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据规范,第 4 个字节是 0x01 到 0xFF 范围内的值,而不是 0x00。
点阵打印机 STAR 命令规范修订版 1.91
第 56 页,第 3-48 节
According to the specification, the 4th byte is a value in the range 0x01 to 0xFF instead of 0x00.
Dot Impact Printer STAR Command Specifications Rev. 1.91
Page 56, section 3-48
这对我有用:\x1B\x1C\x70\x01\x00
this work for me : \x1B\x1C\x70\x01\x00