python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Change code page with ESC/POS on Birch printer
I am using QZ Tray tool to send raw data to thermal printer using ESC/POS commands. This is the code I'm using and it's working as expected on most printers:
data = [
"\x1b\x40",
&qu...

cakan
Votes: 0
Answers: 1
How to print QR Code on ESC/POS Printer by using Delphi?
this is a test code for printing on EPSON Thermal Printer.
All is working fine except the QR code part.
Printer just get stuck and I need to reset it manually.
I am following the documentation from th...
Vladimir
Votes: 0
Answers: 2
How to get the paper status of my Thermal Printer using python-escpos?
Currently, I am developing an ordering system that uses a thermal printer.
my code looks like this.
from escpos.printer import Usb
p = Usb(idVendor=0x471, idProduct= 0x55,in_ep=0x82, out_ep=0x02)
try...

George Pamfilis
Votes: 0
Answers: 1
Decode Epson print (ESC-i) command decoding/encoding
I'm trying to understand the algorithm used for compression value = 1 with the Epson ESCP2 print command, "ESC-i". I have a hex dump of a raw print file which looks, in part, like the hexdu...
Gary Aitken
Votes: 0
Answers: 1