我正在尝试将转义序列发送到热敏打印机(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 文档中提取了它们。
谢谢你的帮助。