您正在开发Star TSP100 futurePRNT,有一个示例打印正常工作的数据。他们使用代码“\ x1b \ x1d \ x61 \ x1”来对齐中心。需要知道它是哪种编码?以及如何使用代码打印Code-39条形码?
答案 0 :(得分:0)
这是由下面的文档指定的十六进制代码。
作为一个例子,我将解构这个命令:
1B = Ascii Escape Character. This denotes the beginning of the command.
1D = Ascii Group Separator Character. This is part of the command.
61 = Ascii numeral '1'. This is part of the command.
1 = Value. This is the only parameter of the command.
咨询链接规范,1B 1D 61 a
是指定位置对齐的命令。 a
是参数。此命令专门设置中心水平对齐(第3-32页)。
可以在第3-43到3-46页找到指定条形码的命令。它遵循类似的格式,会有一个指定任务的代码,然后是一些可变参数来选择正确的格式,最后你会发送你的数据。
最新的线路模式规范:http://www.starasia.com/%5CDownload%5CManual%5Cstarline_cm_en.pdf