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 文档中提取了它们。

谢谢你的帮助。

4

1 回答 1

0

您是否尝试过 Enviroment.NewLine ?

_oposPrinter.PrintNormal(PrinterStation.Receipt, "Print example"+ Environment.NewLine);
于 2011-12-26T21:05:37.013 回答