gpt4 book ai didi

ios - ESC POS打印PNG图像

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:21:15 28 4
gpt4 key购买 nike

我对 Objective C 上的 ESC POS 编程非常陌生。我已经用普通的 ESC pos 行命令测试了打印机,它运行良好。但是我无法理解光栅模式命令。 (GS v 0)

我只需要使用 ESC POS 打印 PNG 收据(我将收据创建为 PNG 文件)- 通用 ESC POS(不是 STAR 或 EPSON)我试图搜索此命令,但规范不清楚。

最佳答案

我在我的 Android 应用程序中使用 Epson TM-IV 88 打印机执行此操作。

您使用名为 TMFlogo 的实用程序将 .bmp Logo 文件闪存到打印机。打印机可以存储 10 张单独的图像。

然后您发送如下所示的 FS 代码以打印 Logo 。

请注意,sendCommand 只是我的应用程序中用于将 FS 序列发送到打印机的特定函数。

sendCommand("FS p 1 0");    // print the logo in NVRAM position 1
sendCommand("FS p 2 0"); // print the logo in NVRAM position 2

下面是 Epson ESC 的 FS 命令参数摘要:

ASCII FS p n m
Hex 1C 70 n m
Decimal 28 112 n m
where
1<=n<=255
0<=m<=3, 48<=m<=51
prints NV bit image n using mode m
where
m = 0,48 normal mode
m = 1,49 double-wide mode
m = 2,50 double tall mode
m = 3,51 quadruple mode

祝你好运。

关于ios - ESC POS打印PNG图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17446112/

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