jjzjj

java - 打印 POS/ESC Apex3 图像 S.O.S

coder 2023-12-22 原文

我有一个 Apex3,我已经能够关注 the documentation 的大部分内容没问题,但是当涉及到图像时,事情变得非常奇怪(缺乏示例 + 在操作方法上缺乏一致性)。

首先,我尝试使用以下命令尝试通过 JPEG 和 0 质量压缩的位图字节 [] 数组压缩的天真方法:

ESC V n1 n2数据

结果不太好。

然后我发现有一个 apex3 的 android 库接受一个位图并打算打印它但是它不起作用只是打印像这样的奇怪符号:

我尝试使用 JD gui 解码 jar 源代码,他们似乎对位图字节做了一些工作,这是他们的代码(建议代码,如 addToDoc(m_Document, ESC + "B"); 只需将代码放入一个 ByteArrayOutputStream 数据),(反编译 source from here ):

public void writeImage(Bitmap imageObject, int printHeadWidth)
    throws IllegalArgumentException
  {
    if (imageObject == null) {
      throw new IllegalArgumentException("Parameter 'imageObject' was null.");
    }
    if (printHeadWidth < 1) {
      throw new IllegalArgumentException("Parameter 'printHeadWidth' must be greater than 0.");
    }
    int height = imageObject.getHeight();
    int width = imageObject.getWidth();
    

    byte blanklineCount = 0;
    byte[] dataline = new byte[printHeadWidth + 7 >> 3];
    int[] imageData = new int[height * width];
    
    imageObject.getPixels(imageData, 0, width, 0, 0, width, height);
    

    addToDoc(m_Document, ESC + "B");
    for (int row = 0; row < height; row++)
    {
      boolean blankLine = true;
      for (int index = 0; index < width; index += 8)
      {
        byte currentByte = 0;
        int offset = row * width + index;
        if (index >= printHeadWidth) {
          break;
        }
        int value = index + 0 < width ? imageData[(offset + 0)] & 0xFFFFFF : 16777215;
        boolean set = (value >> 0 & 0xFF) + (value >> 8 & 0xFF) + (value >> 16 & 0xFF) < 384;
        currentByte = (byte)(currentByte | (set ? -128 : 0));
        
        value = index + 1 < width ? imageData[(offset + 1)] & 0xFFFFFF : 16777215;
        set = (value >> 0 & 0xFF) + (value >> 8 & 0xFF) + (value >> 16 & 0xFF) < 384;
        currentByte = (byte)(currentByte | (set ? 64 : 0));
        
        value = index + 2 < width ? imageData[(offset + 2)] & 0xFFFFFF : 16777215;
        set = (value >> 0 & 0xFF) + (value >> 8 & 0xFF) + (value >> 16 & 0xFF) < 384;
        currentByte = (byte)(currentByte | (set ? 32 : 0));
        
        value = index + 3 < width ? imageData[(offset + 3)] & 0xFFFFFF : 16777215;
        set = (value >> 0 & 0xFF) + (value >> 8 & 0xFF) + (value >> 16 & 0xFF) < 384;
        currentByte = (byte)(currentByte | (set ? 16 : 0));
        
        value = index + 4 < width ? imageData[(offset + 4)] & 0xFFFFFF : 16777215;
        set = (value >> 0 & 0xFF) + (value >> 8 & 0xFF) + (value >> 16 & 0xFF) < 384;
        currentByte = (byte)(currentByte | (set ? 8 : 0));
        
        value = index + 5 < width ? imageData[(offset + 5)] & 0xFFFFFF : 16777215;
        set = (value >> 0 & 0xFF) + (value >> 8 & 0xFF) + (value >> 16 & 0xFF) < 384;
        currentByte = (byte)(currentByte | (set ? 4 : 0));
        
        value = index + 6 < width ? imageData[(offset + 6)] & 0xFFFFFF : 16777215;
        set = (value >> 0 & 0xFF) + (value >> 8 & 0xFF) + (value >> 16 & 0xFF) < 384;
        currentByte = (byte)(currentByte | (set ? 2 : 0));
        
        value = index + 7 < width ? imageData[(offset + 7)] & 0xFFFFFF : 16777215;
        set = (value >> 0 & 0xFF) + (value >> 8 & 0xFF) + (value >> 16 & 0xFF) < 384;
        currentByte = (byte)(currentByte | (set ? 1 : 0));
        

        dataline[(index >> 3)] = currentByte;
        blankLine &= currentByte == 0;
      }
      if (!blankLine)
      {
        if (blanklineCount > 0)
        {
          addToDoc(m_Document, "A");
          addToDoc(m_Document, blanklineCount);
          blanklineCount = 0;
        }
        addToDoc(m_Document, compressGraphicLine(dataline));
      }
      else
      {
        blanklineCount = (byte)(blanklineCount + 1);
        if (blanklineCount == 255)
        {
          addToDoc(m_Document, "A");
          addToDoc(m_Document, blanklineCount);
          blanklineCount = 0;
        }
      }
    }
    if (blanklineCount > 0)
    {
      addToDoc(m_Document, "A");
      addToDoc(m_Document, blanklineCount);
      blanklineCount = 0;
    }
    addToDoc(m_Document, ESC + "E");
  }
  
  private byte[] compressGraphicLine(byte[] dataline)
  {
    byte count = 0;
    byte currentByte = 0;
    ByteArrayOutputStream rleString = new ByteArrayOutputStream(128);
    

    addToDoc(rleString, "G");
    for (int index = 0; index < dataline.length; index++) {
      if (count == 0)
      {
        currentByte = dataline[index];
        addToDoc(rleString, currentByte);
        count = (byte)(count + 1);
      }
      else if ((count < 255) && (currentByte == dataline[index]))
      {
        count = (byte)(count + 1);
      }
      else
      {
        addToDoc(rleString, count);
        count = 0;
        

        currentByte = dataline[index];
        addToDoc(rleString, currentByte);
        count = (byte)(count + 1);
      }
    }
    if (count > 0) {
      addToDoc(rleString, count);
    }
    if (rleString.size() > dataline.length + 1)
    {
      rleString.reset();
      addToDoc(rleString, "U");
      for (int item = 0; item < dataline.length; item++) {
        addToDoc(rleString, dataline[item]);
      }
    }
    return rleString.toByteArray();
  }

但我不明白为什么它不起作用。

最后我尝试使用 How can I print an image on a Bluetooth printer in Android? 使用与指南相同的算法,但仍然打印随机的奇怪符号。

最佳答案

与其浪费时间去反编译一些 apk,不如看看官方的 SDK?在制造商网页上 Downloads & Drivers有一个链接到 Java SDK其中包括源 Sample.java。在源代码中创建了一个 BufferedImage,所以我猜(我没有这样的打印机)这将为您提供解决问题的切入点。他们很可能在同一页面上提供了 Android 演示的源代码 Printer Demo Source code for Android

编辑 好的。让我们总结一下:您有一张图像并想打印它。在示例 Sample.java 中涵盖了这种情况

  BufferedImage newImage = new BufferedImage(1024, 512, BufferedImage.TYPE_4BYTE_ABGR);
  // some lines and rectangles are drawn in the image
  ...
  // the image is printed, following the SDK javadoc for DocumentLP.writeImage
  // "This will cause the image specified to be printed. Images will be expanded to occupy
  // the entire width of the printer, so the correct current width of the printer must be
  // specified. Images that are too wide will be cropped, and images that are too narrow 
  // will be padded on the right."
  testDoc.writeImage(newImage, m_PrinterWidth);

对我来说,你唯一需要做的事情:

  • 创建一个 BufferedImage 对象
  • 将文件中的图像绘制到缓冲图像中
  • 调用 DocumentLP 对象的 writeImage 方法

编辑2伪代码 fragment

// taken from SDK javadoc
DocumentLP docLP;
docLP = new DocumentLP("$");

// own code
BufferedInputStream bis = new BufferedInputStream(--from your image--);
BufferedImage bufImage = ImageIO.read(bis);

// have a look into Sample.java for the expected value of m_PrinterWidth
testDoc.writeImage(bufImage, m_PrinterWidth);

编辑 3 Android 代码 fragment (取自 datamax o´neil Android SDK

提供的 DO_AndroidSDKDemo_MainActivity.java
File file = new File(selectedPath);
byte[] readBuffer = new byte[(int)file.length()];
InputStream inputStream= new BufferedInputStream(new FileInputStream(file));
inputStream.read(readBuffer);
inputStream.close();
fileData = readBuffer;

Bitmap m_imageObject = BitmapFactory.decodeByteArray(fileData, 0, fileData.length);
documentLP.clear();
ocumentLP.writeImage(m_imageObject, m_printHeadWidth);

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

有关java - 打印 POS/ESC Apex3 图像 S.O.S的更多相关文章

  1. java - 等价于 Java 中的 Ruby Hash - 2

    我真的很习惯使用Ruby编写以下代码:my_hash={}my_hash['test']=1Java中对应的数据结构是什么? 最佳答案 HashMapmap=newHashMap();map.put("test",1);我假设? 关于java-等价于Java中的RubyHash,我们在StackOverflow上找到一个类似的问题: https://stackoverflow.com/questions/22737685/

  2. ruby-on-rails - 如何在我的 Rails 应用程序 View 中打印 ruby​​ 变量的内容? - 2

    我是一个Rails初学者,但我想从我的RailsView(html.haml文件)中查看Ruby变量的内容。我试图在ruby​​中打印出变量(认为它会在终端中出现),但没有得到任何结果。有什么建议吗?我知道Rails调试器,但更喜欢使用inspect来打印我的变量。 最佳答案 您可以在View中使用puts方法将信息输出到服务器控制台。您应该能够在View中的任何位置使用Haml执行以下操作:-puts@my_variable.inspect 关于ruby-on-rails-如何在我的R

  3. java - 从 JRuby 调用 Java 类的问题 - 2

    我正在尝试使用boilerpipe来自JRuby。我看过guide从JRuby调用Java,并成功地将它与另一个Java包一起使用,但无法弄清楚为什么同样的东西不能用于boilerpipe。我正在尝试基本上从JRuby中执行与此Java等效的操作:URLurl=newURL("http://www.example.com/some-location/index.html");Stringtext=ArticleExtractor.INSTANCE.getText(url);在JRuby中试过这个:require'java'url=java.net.URL.new("http://www

  4. ruby-on-rails - 添加回形针新样式不影响旧上传的图像 - 2

    我有带有Logo图像的公司模型has_attached_file:logo我用他们的Logo创建了许多公司。现在,我需要添加新样式has_attached_file:logo,:styles=>{:small=>"30x15>",:medium=>"155x85>"}我是否应该重新上传所有旧数据以重新生成新样式?我不这么认为……或者有什么rake任务可以重新生成样式吗? 最佳答案 参见Thumbnail-Generation.如果rake任务不适合你,你应该能够在控制台中使用一个片段来调用重新处理!关于相关公司

  5. java - 我的模型类或其他类中应该有逻辑吗 - 2

    我只想对我一直在思考的这个问题有其他意见,例如我有classuser_controller和classuserclassUserattr_accessor:name,:usernameendclassUserController//dosomethingaboutanythingaboutusersend问题是我的User类中是否应该有逻辑user=User.newuser.do_something(user1)oritshouldbeuser_controller=UserController.newuser_controller.do_something(user1,user2)我

  6. java - 什么相当于 ruby​​ 的 rack 或 python 的 Java wsgi? - 2

    什么是ruby​​的rack或python的Java的wsgi?还有一个路由库。 最佳答案 来自Python标准PEP333:Bycontrast,althoughJavahasjustasmanywebapplicationframeworksavailable,Java's"servlet"APImakesitpossibleforapplicationswrittenwithanyJavawebapplicationframeworktoruninanywebserverthatsupportstheservletAPI.ht

  7. Observability:从零开始创建 Java 微服务并监控它 (二) - 2

    这篇文章是继上一篇文章“Observability:从零开始创建Java微服务并监控它(一)”的续篇。在上一篇文章中,我们讲述了如何创建一个Javaweb应用,并使用Filebeat来收集应用所生成的日志。在今天的文章中,我来详述如何收集应用的指标,使用APM来监控应用并监督web服务的在线情况。源码可以在地址 https://github.com/liu-xiao-guo/java_observability 进行下载。摄入指标指标被视为可以随时更改的时间点值。当前请求的数量可以改变任何毫秒。你可能有1000个请求的峰值,然后一切都回到一个请求。这也意味着这些指标可能不准确,你还想提取最小/

  8. 【Java 面试合集】HashMap中为什么引入红黑树,而不是AVL树呢 - 2

    HashMap中为什么引入红黑树,而不是AVL树呢1.概述开始学习这个知识点之前我们需要知道,在JDK1.8以及之前,针对HashMap有什么不同。JDK1.7的时候,HashMap的底层实现是数组+链表JDK1.8的时候,HashMap的底层实现是数组+链表+红黑树我们要思考一个问题,为什么要从链表转为红黑树呢。首先先让我们了解下链表有什么不好???2.链表上述的截图其实就是链表的结构,我们来看下链表的增删改查的时间复杂度增:因为链表不是线性结构,所以每次添加的时候,只需要移动一个节点,所以可以理解为复杂度是N(1)删:算法时间复杂度跟增保持一致查:既然是非线性结构,所以查询某一个节点的时候

  9. ruby-on-rails - 在 Ruby (on Rails) 中使用 imgur API 获取图像 - 2

    我正在尝试使用Ruby2.0.0和Rails4.0.0提供的API从imgur中提取图像。我已尝试按照Ruby2.0.0文档中列出的各种方式构建http请求,但均无济于事。代码如下:require'net/http'require'net/https'defimgurheaders={"Authorization"=>"Client-ID"+my_client_id}path="/3/gallery/image/#{img_id}.json"uri=URI("https://api.imgur.com"+path)request,data=Net::HTTP::Get.new(path

  10. python ffmpeg 使用 pyav 转换 一组图像 到 视频 - 2

    2022/8/4更新支持加入水印水印必须包含透明图像,并且水印图像大小要等于原图像的大小pythonconvert_image_to_video.py-f30-mwatermark.pngim_dirout.mkv2022/6/21更新让命令行参数更加易用新的命令行使用方法pythonconvert_image_to_video.py-f30im_dirout.mkvFFMPEG命令行转换一组JPG图像到视频时,是将这组图像视为MJPG流。我需要转换一组PNG图像到视频,FFMPEG就不认了。pyav内置了ffmpeg库,不需要系统带有ffmpeg工具因此我使用ffmpeg的python包装p

随机推荐