-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Blank page after image #3
Comments
I can't seem to reproduce that. The line you commented out simply returns a colon if the current row matches the last row (and omits the current row). The total number of rows (height of the image) should be the same. Can you supply a sample? |
I'm using this code OR $client = new Client('192.168.4.204'); Attached you can find the labels |
When I un-comment these lines I get an extra blank page after the first label. |
Any luck with this ? |
After printing an image label we get a blank page.
we solved the issue with this fix
/**
* Compress a row of ASCII hexadecimal data.
*
* @param string $row
* @param string $lastRow
* @return string
*/
protected function compress($row, $lastRow)
{
//if ($row === $lastRow) {
// return ':';
//}
The text was updated successfully, but these errors were encountered: