gpt4 book ai didi

c# - Esc pos打印条码

转载 作者:太空宇宙 更新时间:2023-11-03 10:43:03 27 4
gpt4 key购买 nike

我在使用转义字符打印 ITF 条码时遇到问题。我有一个使用 Pos for .NET 的 .NET 应用程序,但我无法使用“PrintBarCode”方法。我的代码如下所示:

public static void PrintBarCode()
{
var barCodeStr = ((char)29).ToString() + "k5123456" + ((char)0).ToString();
var printer = new PosPrinter();
printer.PrintNormal(PrinterStation.Receipt, barCodeStr);
}

这段代码只打印“123456”,我无法让它打印条形码。

最佳答案

我知道这篇文章很旧,但希望它能有所帮助。假设您使用的是 U/OPOS 问题是转义序列。您可以在 UnifiedPOS 版本 1.14.1 上找到——2014 年 10 月 23 日

the application can use the ESC|[*]#R escape sequence to print barcodes in-line with other print commands. The character ‘#’ is the number of characters following the R to use in the definition of the characteristics of the barcode to be printed.

属性符号定义如下:
符号学
h 高度
w 宽度
对齐
t 人类可读的文本位置
d 数据开始
e 序列结束
属性必须以上述列表中指定的顺序出现。

一个例子是 ESC|33Rs101h200w400a-2t-13d123456789012e
其中 ESC = 在 c# 中是:

char[] Escape = new char[1]{'\x1B'};

关于c# - Esc pos打印条码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24569567/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com