c# 使用 PosExplorer 发送转义序列

发布于 2024-12-23 10:10:25 字数 461 浏览 1 评论 0原文

我正在尝试将转义序列发送到热敏打印机(Epson TM-T20)。现在我可以打印,但是当我这样做时:

string ESC = Convert.ToString((char)27);
string logo=Convert.ToString(ESC+"|tL");
_oposPrinter.PrintNormal(PrinterStation.Receipt, logo);
_oposPrinter.PrintNormal(PrinterStation.Receipt, "Print example\n");
_oposPrinter.PrintNormal(PrinterStation.Receipt, Convert.ToString((char)27 + "|#fP"));

打印机仅打印“打印示例”,转义序列被忽略。我认为转义序列是正确的,因为我从 epsonExpert 文档中提取了它们。

感谢您的帮助。

I'm trying to send escape sequence to a thermal printer (Epson TM-T20). Now I can print, but when I make this:

string ESC = Convert.ToString((char)27);
string logo=Convert.ToString(ESC+"|tL");
_oposPrinter.PrintNormal(PrinterStation.Receipt, logo);
_oposPrinter.PrintNormal(PrinterStation.Receipt, "Print example\n");
_oposPrinter.PrintNormal(PrinterStation.Receipt, Convert.ToString((char)27 + "|#fP"));

The printer only prints "Print example", the escape sequences being ignored. I supose that escape sequences are correct because I extracted them from epsonExpert documentation.

Thanks for your help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

关于从前 2024-12-30 10:10:25

您尝试过 Enviroment.NewLine 吗?

_oposPrinter.PrintNormal(PrinterStation.Receipt, "Print example"+ Environment.NewLine);

Have you tried with Enviroment.NewLine ?

_oposPrinter.PrintNormal(PrinterStation.Receipt, "Print example"+ Environment.NewLine);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文