Giter VIP home page Giter VIP logo

Comments (4)

mike42 avatar mike42 commented on June 4, 2024

Are you able to share the contents of temp_print.bin either on this issue tracker or via the email address on my profile?

I can't see a way to debug this without a sample file which shows the issue.

from escpos-tools.

mikysetiawan avatar mikysetiawan commented on June 4, 2024

Hi Mike,
I already send to your email

from escpos-tools.

mike42 avatar mike42 commented on June 4, 2024

Received.

Your file is malformed: You are using the GS ( L command, which only allows you to specify a data length up to 65kb. Your image is around 80kb in the ESC/POS 1-bit raster format, so you should be using GS 8 L, which allows for larger data sizes

The file contains 1d 28 4c 4a 37 (GS ( L data header for 14154 bytes of data), while the actual image command contains 764x830 dimensions. If necessary, we can detect the number of bytes from the dimensions, and ignore the data header entirely.

So with this small patch, your file will process:

diff --git a/src/Parser/Command/StoreRasterFmtDataToPrintBufferGraphicsSubCmd.php b/src/Parser/Command/StoreRasterFmtDataToPrintBufferGraphicsSubCmd.php
index dcf9e47..41d4ced 100644
--- a/src/Parser/Command/StoreRasterFmtDataToPrintBufferGraphicsSubCmd.php
+++ b/src/Parser/Command/StoreRasterFmtDataToPrintBufferGraphicsSubCmd.php
@@ -51,6 +51,7 @@ class StoreRasterFmtDataToPrintBufferGraphicsSubCmd extends DataSubCmd implement
             return true;
         } else if ($this -> y2 === null) {
             $this -> y2 = ord($char);
+            $this -> dataSize = intdiv($this -> getWidth() + 7, 8) * $this -> getHeight();
             return true;
         } else if (strlen($this -> data) < $this -> dataSize) {
             $this -> data .= $char;

I have not tried to print your file, but if it works on an Epson printer, I would consider applying this patch in some form, otherwise we should return only part of the image.

In either case, we can detect the problem and log a warning when this situation arises.

from escpos-tools.

mikysetiawan avatar mikysetiawan commented on June 4, 2024

Thanks! its working to process to html, I don't have Epson printer, but I think my client using an Epson printer, so if it's working I will tell you.

Thank you

from escpos-tools.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.