Skip to content

Instantly share code, notes, and snippets.

@douglasjunior
Created May 29, 2017 20:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save douglasjunior/dc3b41908514304f694f1b37cadf2df7 to your computer and use it in GitHub Desktop.
Save douglasjunior/dc3b41908514304f694f1b37cadf2df7 to your computer and use it in GitHub Desktop.
EscPosHelper.java
import android.graphics.Bitmap;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
/**
* Created by douglas on 29/05/17.
* Adapted from http://new-grumpy-mentat.blogspot.com.br/2014/06/java-escpos-image-printing.html
*/
public class EscPosHelper {
private final static char ESC_CHAR = 0x1B;
private final static byte[] FEED_LINE = {10};
private final static byte[] SELECT_BIT_IMAGE_MODE = {ESC_CHAR, 0x2A, 33};
private final static byte[] SET_LINE_SPACE_24 = new byte[]{ESC_CHAR, 0x33, 24};
private final static byte[] SET_LINE_SPACE_30 = new byte[]{ESC_CHAR, 0x33, 30};
/**
* Send image to the printer to be printed.
*
* @param image 2D Array of RGB colors (Row major order)
*/
public static byte[] printImage(Bitmap image) throws IOException {
ByteArrayOutputStream baos = new ByteArrayOutputStream();
baos.write(SET_LINE_SPACE_24);
for (int y = 0; y < image.getHeight(); y += 24) {
baos.write(SELECT_BIT_IMAGE_MODE);// bit mode
baos.write(new byte[]{(byte) (0x00ff & image.getWidth()), (byte) ((0xff00 & image.getWidth()) >> 8)});// width, low & high
for (int x = 0; x < image.getWidth(); x++) {
// For each vertical line/slice must collect 3 bytes (24 bytes)
baos.write(collectSlice(y, x, image));
}
baos.write(FEED_LINE);
}
baos.write(SET_LINE_SPACE_30);
return baos.toByteArray();
}
/**
* Defines if a color should be printed (burned).
*
* @param color RGB color.
* @return true if should be printed/burned (black), false otherwise (white).
*/
private static boolean shouldPrintColor(int color) {
final int threshold = 127;
int a, r, g, b, luminance;
a = (color >> 24) & 0xff;
if (a != 0xff) { // ignore pixels with alpha channel
return false;
}
r = (color >> 16) & 0xff;
g = (color >> 8) & 0xff;
b = color & 0xff;
luminance = (int) (0.299 * r + 0.587 * g + 0.114 * b);
return luminance < threshold;
}
/**
* Collect a slice of 3 bytes with 24 dots for image printing.
*
* @param y row position of the pixel.
* @param x column position of the pixel.
* @param image 2D array of pixels of the image (RGB, row major order).
* @return 3 byte array with 24 dots (field set).
*/
private static byte[] collectSlice(int y, int x, Bitmap image) {
byte[] slices = new byte[]{0, 0, 0};
for (int yy = y, i = 0; yy < y + 24 && i < 3; yy += 8, i++) {// va a hacer 3 ciclos
byte slice = 0;
for (int b = 0; b < 8; b++) {
int yyy = yy + b;
if (yyy >= image.getHeight()) {
continue;
}
int color = image.getPixel(x, yyy);
boolean v = shouldPrintColor(color);
slice |= (byte) ((v ? 1 : 0) << (7 - b));
}
slices[i] = slice;
}
return slices;
}
}
@astrO1
Copy link

astrO1 commented Jan 13, 2019

Douglas tudo bem? Eu vi o seu código em uma busca para imprimir imagens grandes e vi que você conseguiu com sucesso imprimir uma de 380px por 380px, estou tentando uma de 200px por 200px, peguei o seu código e esta funcionando.

Mas se usar para imagens maiores que 200px por 200px sempre da algum problema poderia me dar uma assistência?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment