c# – 将PNG图像打印到斑马网络打印机

c# – 将PNG图像打印到斑马网络打印机,第1张

概述我正在寻找一种将图像打印到斑马上并有很多麻烦的方式. 根据文档: The first encoding, known as B64, encodes the data using the MIME Base64 scheme. Base64 is used to encode e-mail atachedments … Base64 encodes six bits to the byte, fo 我正在寻找一种将图像打印到斑马上并有很多麻烦的方式.

根据文档:

The first enCoding,kNown as B64,encodes the data using the MIME
Base64 scheme. Base64 is used to encode e-mail atachedments …
Base64 encodes six bits to the byte,for an expantion of 33 percent
over the un-enclosed data.
The second enCoding,kNown as Z64,
first compresses the data using the LZ77 algorithm to reduce its size.
(This algorithm is used by the PKZIP and is intergral to the PNG
graphics format.)
The compressed data is then encoded using the
MIME Base64 scheme as described above.
A CRC will be calculated
accross the Base64-encoded data.

但它没有很多更多的信息.

基本上我正在尝试编码

private byte[] GetItemFromPath(string filepath){       using (MemoryStream ms = new MemoryStream())    {        using (Image img = Image.Fromfile(filepath))        {            img.Save(ms,ImageFormat.Png);            return ms.ToArray();        }    }}

然后尝试打印如下:

var initialArray = GetItemFromPath("C:\RED.png");string converted = Convert.ToBase64String(b);PrintThis(string.Format(@"~DYRED.PNG,P,{1},:B64:{0}^XA^F0200,200^XGRED.PNG,1,1^FS^XZ",converted .ToString(),initialArray.Length));

从它的声音,B64或Z64都被接受.

我已经尝试了几个变体,以及用于生成CRC和计算“大小”的几种方法.
但是似乎没有任何工作,图形下载到打印机总是被中止.

有没有人设法完成这样的事情?还是知道我在哪里错了?

解决方法 对于我来说这个答案的所有信用来自 LabView Forum用户Raydur.他发布了可以在LabVIEw中打开的LabVIEw解决方案,以发送图像.我个人没有用我的打印机运行它,我只是用它来找出正确的图像代码,所以我可以在我的代码中复制它.我错过的大事情是填充我的十六进制代码.例如:1A是好的,但如果你只有A,你需要在它前面填0,发送0A.您发送的ZPL中的文件大小也是字节数组的原始大小,而不是数据的最终字符串表示形式.

我已经浏览了许多,许多,许多论坛和Stackoverflow帖子试图弄清楚,因为它似乎是一个这么简单的事情.我已经尝试过在其他地方发布的每一个解决方案,但我真的只想打印一个.PNG,因为我的打印机手册(Mobile QLN320)支持它内置.它说要发送它在Base64或十六进制,我试过两者都无济于事对于任何想要做Base64的人,我发现在旧的手册中,您需要手动计算发送的每个数据包的CRC码,所以我选择使用更简单的十六进制路由.所以这里是我工作的代码!

string ipAddress = "192.168.1.30";        int port = 6101;        string zplimageData = string.Empty;        //Make sure no transparency exists. I had some trouble with this. This PNG has a white background        string filePath = @"C:\Users\Path\To\logo.png";        byte[] binaryData = System.IO.file.ReadAllBytes(filePath);        foreach (Byte b in binaryData)        {            string hexRep = String.Format("{0:X}",b);            if (hexRep.Length == 1)                hexRep = "0" + hexRep;            zplimageData += hexRep;          }          string zpltoSend = "^XA" + "^MNN" + "^LL500" + "~DYE:logo," + binaryData.Length + "," + zplimageData+"^XZ";          string printimage = "^XA^FO115,50^IME:logo.PNG^FS^XZ";        try        {            // Open connection            System.Net.sockets.TcpClIEnt clIEnt = new System.Net.sockets.TcpClIEnt();            clIEnt.Connect(ipAddress,port);            // Write ZPL String to connection            System.IO.StreamWriter writer = new System.IO.StreamWriter(clIEnt.GetStream(),EnCoding.UTF8);            writer.Write(zpltoSend);            writer.Flush();            writer.Write(printimage);            writer.Flush();            // Close Connection            writer.Close();            clIEnt.Close();        }        catch (Exception ex)        {            // Catch Exception        }
总结

以上是内存溢出为你收集整理的c# – 将PNG图像打印到斑马网络打印机全部内容,希望文章能够帮你解决c# – 将PNG图像打印到斑马网络打印机所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1259993.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-07
下一篇 2022-06-07

发表评论

登录后才能评论

评论列表(0条)

保存