英文:
Printing special characters on bluetooth printer
问题
我有一个应用程序,我应该能够在蓝牙打印机Zebra ZQ320上打印,但我在特定字符方面遇到了一些问题,与打印机配置相关的项目中唯一的东西是一个名为“UtileriaImpresion”的类,在其中配置了Zebra IMZ320,这是之前使用的型号,也存在相同的问题。
英文:
I have an application where I should be able to print on a bluetooth printer, Zebra ZQ320, but I have some problems with specific characters, the only thing in the project related to the printer configuration is a class called "UtileriaImpresion" in which configuration for zebra is added IMZ320 a previously used model which presented the same problem.
答案1
得分: 1
在不提供更多详细信息或查看一些代码的情况下,这看起来像是将UTF-8打印为ISO-8859-1。在ZPL中,您需要设置打印机使用UTF-8,通过^CI28
。
英文:
Without more details or seeing some code, that looks like UTF-8 printed as ISO-8859-1. In the ZPL, you need to set the printer to use UTF-8, via ^CI28
.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论