Android打印机-打印机在行首打印点

时间:2019-05-18 19:34:19

标签: android react-native

我正在尝试在具有响应本机的蓝牙dpp 350打印机上进行打印。 打印机正在正确打印。但是,每一行的开头都有一个点。

我已经尝试了几种编码以及代码页,但无法在行首删除该点。

我正在使用react-native-bluetooth-escpos-printer库

let config = {
     encoding: 'ISO8859_1',
     codepage: 1,
     widthtimes: 0,
     heigthtimes: 0,
     fonttype: 1
}

await  BluetoothEscposPrinter.printText("Testando impressão!\r\n", config);     
await  BluetoothEscposPrinter.printText("I need help!\r\n", config);     
await  BluetoothEscposPrinter.printText("I need help!\r\n", config);     
await  BluetoothEscposPrinter.printText("I need help!\r\n", config);     
await  BluetoothEscposPrinter.printText("I need help!\r\n", config);

enter image description here

请,有人知道如何从行首删除此点吗?

0 个答案:

没有答案