我有一台 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 卡上。有什么帮助吗?谢谢