Inês Borges
Inês Borges
I tried to change the size by modifying the size variable which was 32 I switched it to 64. Nothing happenned. Printed the same size as it was before.
I have tried printing QRCodes with the demo app and it also prints two in a row. Why? Is it because of the printer?
Instead I used the following code: ``` function imprimirNaImpressoraBolso(timestamp: string){ var printerName: any; BTPrinter.list(function(data1: any){ console.log("Success list"); console.log("Devices list: ", data1); // paired bluetooth devices array printerName = data1[0]; BTPrinter.status(function(data:...
@ademir10 That is a custom function ``` function textToBase64Barcode(text: string){ var canvas = document.createElement("canvas"); JsBarcode(canvas, text, {width: 3, height: 100, marginBottom: 200}); return canvas.toDataURL("image/png"); } ``` JSBarcode is a script...