在POS / ESC热敏打印机Android上打印图像

时间:2016-11-19 12:43:30

标签: java android printing bluetooth

我正在尝试在蓝牙pos / esc热敏打印机上打印徽标,正在打印的图像是这个坏字符或垃圾字符。如果你对错误的答案有所回答,或者在下面的地方做错了,请帮忙。我尝试了这段代码" stack overflow-How can I print an image on a Bluetooth printer in Android? "仍然没有工作 我目前使用的图片是:

576px width X 95px height

我目前的代码是。

public void print_image() {

    try {
        mOutputStream = mSocket.getOutputStream();

           Bitmap bmp = BitmapFactory.decodeResource(getResources(),R.drawable.logo1);

            convertBitmap(bmp);
            mOutputStream.write(PrinterCommands.SET_LINE_SPACING_24);

        int offset = 0;
        while (offset < bmp.getHeight()) {
            mService.write(PrinterCommands.SELECT_BIT_IMAGE_MODE);
            for (int x = 0; x < bmp.getWidth(); ++x) {

                for (int k = 0; k < 3; ++k) {

                    byte slice = 0;
                    for (int b = 0; b < 8; ++b) {
                        int y = (((offset / 8) + k) * 8) + b;
                        int i = (y * bmp.getWidth()) + x;
                        boolean v = false;
                        if (i < dots.length()) {
                            v = dots.get(i);
                        }
                        slice |= (byte) ((v ? 1 : 0) << (7 - b));
                    }
                    mService.write(slice);
                }
            }
            offset += 24;
                mOutputStream.write(PrinterCommands.FEED_LINE);
                mOutputStream.write(PrinterCommands.FEED_LINE);
                mOutputStream.write(PrinterCommands.FEED_LINE);
                mOutputStream.write(PrinterCommands.FEED_LINE);
                mOutputStream.write(PrinterCommands.FEED_LINE);
                mOutputStream.write(PrinterCommands.FEED_LINE);
            }
            mOutputStream.write(PrinterCommands.SET_LINE_SPACING_30);



    }catch (Exception e){
        Log.e("errorme",e.getMessage());
    }
}
public String convertBitmap(Bitmap inputBitmap) {

    mWidth = inputBitmap.getWidth();
    mHeight = inputBitmap.getHeight();

    convertArgbToGrayscale(inputBitmap, mWidth, mHeight);
    mStatus = "ok";
    return mStatus;
}

private void convertArgbToGrayscale(Bitmap bmpOriginal, int width,
                                    int height) {
    int pixel;
    int k = 0;
    int B = 0, G = 0, R = 0;
    dots = new BitSet();
    try {

        for (int x = 0; x < height; x++) {
            for (int y = 0; y < width; y++) {
                // get one pixel color
                pixel = bmpOriginal.getPixel(y, x);

                // retrieve color of all channels
                R = Color.red(pixel);
                G = Color.green(pixel);
                B = Color.blue(pixel);
                // take conversion up to one single value by calculating
                // pixel intensity.
                R = G = B = (int) (0.299 * R + 0.587 * G + 0.114 * B);
                // set bit into bitset, by calculating the pixel's luma
                if (R < 55) {
                    dots.set(k);//this is the bitset that i'm printing
                }
                k++;
            }
        }

    } catch (Exception e) {
        // TODO: handle exception
        Log.e(TAG, e.toString());
    }

}

然后我有一个叫做打印机命令的类,它在下面。

public class PrinterCommands {
    public static final byte[] INIT = {27, 64};
    public static byte[] FEED_LINE = {10};

    public static byte[] SELECT_FONT_A = {27, 33, 0};

    public static byte[] SET_BAR_CODE_HEIGHT = {29, 104, 100};
    public static byte[] PRINT_BAR_CODE_1 = {29, 107, 2};
    public static byte[] SEND_NULL_BYTE = {0x00};

    public static byte[] SELECT_PRINT_SHEET = {0x1B, 0x63, 0x30, 0x02};
    public static byte[] FEED_PAPER_AND_CUT = {0x1D, 0x56, 66, 0x00};

    public static byte[] SELECT_CYRILLIC_CHARACTER_CODE_TABLE = {0x1B, 0x74, 0x11};

    public static byte[] SELECT_BIT_IMAGE_MODE = {0x1B, 0x2A, 33, (byte)255, 3};
    public static byte[] SET_LINE_SPACING_24 = {0x1B, 0x33, 24};
    public static byte[] SET_LINE_SPACING_30 = {0x1B, 0x33, 30};

    public static byte[] TRANSMIT_DLE_PRINTER_STATUS = {0x10, 0x04, 0x01};
    public static byte[] TRANSMIT_DLE_OFFLINE_PRINTER_STATUS = {0x10, 0x04, 0x02};
    public static byte[] TRANSMIT_DLE_ERROR_STATUS = {0x10, 0x04, 0x03};
    public static byte[] TRANSMIT_DLE_ROLL_PAPER_SENSOR_STATUS = {0x10, 0x04, 0x04};
}

我找到了打印public static byte[] SELECT_BIT_IMAGE_MODE = {0x1B, 0x2A, 33, (byte)255, 3};时重要的地方。 我尝试使用不同宽度像素大小的图像来改变它。 mOutputStream = mSocket.getOutputStream();表示我从bluetoothsocket获取输出流,即Bluetoothsocket mSocket。

1 个答案:

答案 0 :(得分:0)

使用以下代码使用蓝牙pos / esc热敏打印机打印图像

创建以下方法。

public void printPhoto(int img) {
        try {
            Bitmap bmp = BitmapFactory.decodeResource(getResources(),
                    img);
            if(bmp!=null){
                byte[] command = Utils.decodeBitmap(bmp);
                outputStream.write(PrinterCommands.ESC_ALIGN_CENTER);
                printText(command);
            }else{
                Log.e("Print Photo error", "the file isn't exists");
            }
        } catch (Exception e) {
            e.printStackTrace();
            Log.e("PrintTools", "the file isn't exists");
        }
    }

使用这样的方法。

printPhoto(R.drawable.demoimage);

printText()方法如下

private void printText(byte[] msg) {
        try {
            // Print normal text
            outputStream.write(msg);
            printNewLine();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

printNewLine(),如下所示

private void printNewLine() {
        try {
            outputStream.write(PrinterCommands.FEED_LINE);
        } catch (IOException e) {
            e.printStackTrace();
        }

    }