使用zpl命令使用斑马打印机打印图像



我正在尝试使用zpl语言在斑马打印机(LP-2844-Z)上打印图像。在ZPL文档中,它说您必须将图像转换为ASCII十六进制。然后使用GF命令可以打印图像。我尝试了下面的代码来获取图像并将其转换为六进制

URL oracle = new URL(urlString);
URLConnection yc = oracle.openConnection();
BufferedImage bufferedImage = ImageIO.read(yc.getInputStream());
int rowsData = bufferedImage.getWidth()/8;
System.out.println(rowsData);
byte[] pixel = ((DataBufferByte)bufferedImage.getRaster().getDataBuffer()).getData();
System.out.println(pixel.length);
System.out.println(Hex.encodeHex(pixel, false));

然后我尝试使用斑马打印机打印这些数据,但它没有打印正确的图像。我尝试了另一种代码来获取图像字节,并将其转换为六进制

URL oracle = new URL(urlString);
URLConnection yc = oracle.openConnection();
InputStream inputStream = yc.getInputStream();
byte[] imageData = IOUtils.toByteArray(inputStream);
System.out.println(Hex.encodeHex(pixel, false));

我仍然无法打印正确的图像。我关注以下URL(http://labelary.com/viewer.html)并试图在我们上传图像时查看代码。我发现上传图像后,斑马查看器生成的base64与我使用上面的代码生成的完全不同。我浏览了几篇关于stackoverflow的帖子,但仍然无法解决这个问题。

我知道我在哪里犯了错误,但我不知道如何解决。事实上,我无法为给定的图像生成ASCII Hex-Base64代码。这是我的想法。

任何帮助都会得到通知。

谢谢,

试试这个函数:

private static String zplEncode(String graphicFileLocation) {
Path imagePath = Paths.get(URI.create("file://" + graphicFileLocation));
String returnResults = "";
try {
byte[] binaryData = Files.readAllBytes(imagePath);
for (byte b : binaryData)
{
String hexRep = String.format("{0:X}", b);
if (hexRep.length() == 1)
hexRep = "0" + hexRep;
returnResults += hexRep;
}
} catch (IOException ex) {
// Do something here
}
return returnResults;
}

我基于2012年的这个答案。

相关内容

  • 没有找到相关文章

最新更新