14 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
37
views
How do you send an escape set code page command to a legacy printer?
Sending ESC commands to a legacy matrix printer can be done easily in FreeBSD (and others) using:
printf '033円k0' | lpr -P lp
Above command chooses one font in a legacy STAR LC 7211 (seems to use ESC/...
1
vote
0
answers
362
views
printing a QR code with Brother QL-810 using ESC/P
I am using a Brother QL-810w thermal printer, and trying to print a QR code using ESC/P commands, sending a hex fie directy to the printer. I am using a console utiity program named senddat.exe, which ...
1
vote
1
answer
123
views
Python: From ESC/P Serial to BMP image
I receive an ESC/P protocol from a device via a serial interface. The device is actually intended to be connected to a dot matrix printer. Since we do not want to use printers, I am currently working ...
0
votes
0
answers
116
views
How to get the c/c++ standard representation of all the esc/p2 and pcl commands?
I found a reference manual for esc/p2.
ESC / Select vertical tab channel — · · C-67
ESC 0 Select 1/8-inch line spacing · · · C-51
ESC 1 Select 7/72-inch line spacing — — · C-60
ESC 2 Select 1/6-inch ...
0
votes
1
answer
756
views
Safely ignoring unknown ANSI, ESC/P, ESC/POS sequences, know the length
Some context first:
I'm making a device which transforms an electronic typewriter into a serial printer/terminal.
(don't ask why; I know that this does not make much sense practically)
Device inserted ...
1
vote
1
answer
1k
views
Image printing with Epson compatible Thermal printer problem
I am using C# and write code for print contents for the Thermal ticket printer.
There are codes that people use for image print, and it indeed prints images, but something goes wrong. This is my code ...
0
votes
1
answer
3k
views
How to set character set using ESC/POS?
More specifically, what is the difference between ESC t and ESC R and when should i use them?
How does it tie with the character encoding of the byte arrays i may send to the printer?
Edit
As a follow-...
0
votes
1
answer
2k
views
How to print box drawing character using ESC/POS
I would like to print box drawing character using ESC/POS to Epson LQ310 dot matrix printer in android app. The sample printout would be as below,
Initially, I am using underscore and vertical bar to ...
2
votes
0
answers
485
views
Sending ESC/P cut command to Brother VC-500w
for my current project, in which I'm using the Brother vc-500w as printer, I need to perform a full cut. I intend to use ESC/P commands to do it.
For the first step I tried to send data from ...
0
votes
0
answers
1k
views
Send a line of text to an ESC/POS printer in Python using win32print
I am trying to send a line of text to a thermal printer which uses ESC/P using win32api.
I am aware of the existence of python-escpos, but I want to understand how the raw printing works.
The ...
0
votes
0
answers
593
views
Print CODE128 barcode Epson/IBM OKI thermal
printer : oki ml3320, emulation IBM
I can't print this barcode...
Now I took 22. example from https://files.support.epson.com/pdf/general/escp2ref.pdf
My last try looking that
final char[] x = {...
4
votes
1
answer
4k
views
libusb, pyusb and python-escpos on a windows machine
I am trying to work with Epson POS TM-82 printer on windows 7 (64 bit). I have installed the printer's driver. I have python 2.7.15 (64 bit) installed. To work with python I am using this package, ...
0
votes
0
answers
75
views
Converting from TIFF to ESCP2
I am trying to develop a printing interface for my epson printer that will be used in a .net project. I need to convert any known format (maybe pdf, tiff, even jpeg) to epson ESCP/R format.
I made ...
14
votes
2
answers
1k
views
Use full page width with Brother P950NW
I would like to use the full width of the 18mm strips in my Brother P950NW printer for an image. At the moment, I am using ESC/P (not ESC/POS, which this printer does not seem to support), but if it's ...