driver icon indicating copy to clipboard operation
driver copied to clipboard

"5" character before line when .style('bu')

Open andernunes opened this issue 9 months ago • 2 comments

A character "5" is printed before every line when use .style('bu).

Ex: printer .font('A') .size(0, 1) .style("bu") .tableCustom([ { text: item.qtd.toFixed(1), align: "LEFT", width: 0.1 }, { text: item.produto.toUpperCase().trim(), align: "LEFT", width: 0.9 }, ]);`

PRINT: "51.0 PRODUCTNAME 1.00 1.00" EXPECTED: "1.0 PRODUCTNAME 1.00 1.00"

andernunes avatar May 21 '24 21:05 andernunes