Zebra 打印机和法语打印
我正在尝试使用 Zebra 打印机进行法语打印。 我面临的问题如下。 我想使用 Zebra MZ220 进行法语打印。
字符将是动态的
Zebra 的编程手册如下所述
美国国家
文本 4 0 0 8 国家是美国
文字4 0 0 15 #$@[]^'{|}~
将打印
国家是美国
#$@[]^'{|}~
当我必须用法语打印时,我必须使用如下命令。
法国国家
文本 4 0 0 28 国家是法国
文字 4 0 0 35 #$@[]^'{|}~
将打印为
国家是法国
//对应的法语字符//
现在,我如何直接发送法语字符而不是发送替换字符?
我绞尽脑汁想得到答案,但没有运气。
请帮忙。
I am trying to use Zebra Printer for printing in French.
The problem which I face is as below.
I want to print in French using Zebra MZ220.
The characters will be dynamic
Zebra's programming manual mentions below
COUNTRY USA
TEXT 4 0 0 8 COUNTRY IS USA
TEXT 4 0 0 15 #$@[]^‘{|}~
will print
COUNTRY IS USA
#$@[]^‘{|}~
When I have to print in French, I have to use the command as below.
COUNTRY FRANCE
TEXT 4 0 0 28 COUNTRY IS FRANCE
TEXT 4 0 0 35 #$@[]^‘{|}~
which will print as
COUNTRY IS FRANCE
//corresponding french characters//
Now, how can I directly send the French characters instead of sending replacement characters?
I have banged my head all around to get an answer with no luck.
Please help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会使用某种映射函数来执行翻译。你可以用你想要打印的内容来调用它,它会返回你需要发送以获得该输出的内容,或者告诉你这是否不可能。
详细信息取决于编程语言。
I'd use some sort of mapping function to perform the translation. You'd call it with what you want to print and it would return what you need to send to get that output, or tell you if that's not possible.
The details depend on the programming language.