将CPCL发送到Zebra打印机的.NET代码不打印特殊字符

时间:2018-07-11 07:18:42

标签: c# .net zebra-printers

我想创建一个简单的.NET应用程序,它将读取CPCL并将其发送到Zebra打印机。我发现了这篇文章(.NET code to send ZPL to Zebra printers)帮助了我使用RawPrinterHelper类。但是当内容打印到标签,特殊字符(如希腊字符)无法正确显示。 这是CPCL代码:

A

这是.net代码:

(* a.mli *)
module type A_SIG =
sig
    val f: int -> int
end

module A : A_SIG

(* a.ml *)
module A =
struct
    let f x = x + 1
end

module type A_SIG = module type of A

任何帮助将不胜感激。

0 个答案:

没有答案
相关问题