3

我有一台 Zebra MZ220 便携式蓝牙打印机。

目前,我可以使用以下代码通过我的 android 应用程序在打印机上打印文本/字符串...

private static void sendZplOverBluetooth(final String theBtMacAddress, final String Data) {
        new Thread(new Runnable() {
            public void run() {
                try {
                   ZebraPrinterConnection thePrinterConn = new BluetoothPrinterConnection(theBtMacAddress);
                   Looper.prepare();
                   thePrinterConn.open();
                   String zplData = Data;
                   thePrinterConn.write(zplData.getBytes());
                   Thread.sleep(500);
                   thePrinterConn.close();
                   Looper.myLooper().quit();
                } 
                catch (Exception e) {
                   e.printStackTrace();
                }
           }
       }).start();

}

我想知道是否有一种方法可以通过我的 android 应用程序在打印机上打印图像,如果可以,如何?图像存储在 SD 卡上。有什么帮助吗?谢谢

4

1 回答 1

3

就在这里!查看 SDK 附带的开发者演示中的开发者演示

<install_dir>\android\<version>\demos\src\com\zebra\android\devdemo\imageprint\ImagePrintDemo.java

以下是获取位图的方法:

BitmapFactory.decodeFile(file.getAbsolutePath())

你可以通过

getGraphicsUtil().printImage(pathOnPrinter, 位图, [x], [y])

于 2011-03-09T17:13:55.353 回答