Questions tagged [dot-matrix]

A dot matrix is a 2-dimensional patterned array, used to represent characters, symbols and images. Every type of modern technology uses dot matrices for display of information, including cell phones, televisions, and printers.

As an impact printer, the term mainly refers to low-resolution impact printers, with a column of 8, 9 or 24 "pins" hitting an ink-impregnated fabric ribbon, like a typewriter ribbon, onto the paper.

However, almost all modern computer printers also create their output as matrices of dots, but use a different technology like laser printing or inkjet printing and are not called dot matrix printers.

Impact printers survive where multi-part forms are needed, as the pins can impress dots through multiple layers of paper to make a carbonless copy, for security purposes.

98 questions
2
votes
1 answer

Read Epson Printer Status using C++ and ESC/P

I'm trying to get the status of a PLQ-20 Espon printer, using C++, but with no success. I tried that using GDI API and Escape function with PASSTHROUGH parameter, but the printer never understands the escape codes with that function. I tried to use…
Tippex
  • 23
  • 1
  • 4
2
votes
0 answers

dot-matrix of chinese character

I want to build a LED dispay of chinese characters, in 16*16. It already exist in commercial use: I have tried in python by using converting the chinese character to an image using the librairy PIL but I only get interesting result with a big size…
Dupond
  • 328
  • 1
  • 2
  • 9
2
votes
1 answer

Epson dot matrix printer, print on large paper size (FX-890 and LQ-590)

Short story: I need to print to a really large paper on my work (it's like 5 pages letter united), we use a custom paper configuration but printers has a limit per page and i dont know if we can use "printing continuously" or something to achieve…
WillTech
  • 68
  • 6
2
votes
0 answers

Dot Matrix Printing: Webpage

I have a problem printing a web page via google chrome in Dot Matrix Printer. I have configured all, but it is not showing the proper format. It is somehow larger than the default format. Here is a non Dot-Matrix Printer. Like saving as PDF, it is…
Aaron Alfonso
  • 516
  • 1
  • 8
  • 27
2
votes
2 answers

Whitespace generated by XSL printed as funny character by dot matrix printer

I have created XSLT over XML which looks bea-u-ti-ful in text editor or browser, but when I send it to the company's dino dot-matrix printer it prints as something like big T with stressed a, so something like "Ta". I can simply replace it in the…
Rendeto
  • 21
  • 1
2
votes
0 answers

jasper report printing using dot matrix letters sticking each other

I am using jasper report to print the bill through the dot matrix printer on the continuous 80 column sheet. I am facing the problem the each character was sticking with each other at the time of printing in dot matrix,if i am using laser printer…
2
votes
0 answers

How to send esc/p2 commands to dot matrix printer in Java

I am printing a string using JtextArea. Here is my code. JTextArea text = new JTextArea(); text.setText(XmlReceiptPrinter.sb.toString()); text.setFont(new Font("Courier New", Font.BOLD, 9)); PrintRequestAttributeSet attrSet = new…
Madhu
  • 9
  • 1
  • 8
2
votes
1 answer

how i can print text in dot matrix font from c#?

This code is working great but The code print the text in simple font but I want to print it in dot matrix font , any code to print it in dot matrix? try { PrintDocument pd = new PrintDocument(); pd.DefaultPageSettings.PaperSize = new…
sangeen
  • 304
  • 2
  • 3
  • 14
2
votes
1 answer

How to print images and lines using an Epson DotMatrix Printer

I've tried to print out a table using a dotmatrix printer, it worked but the text quality was very bad. So I tried to print it using the simple FileWriter: FileWriter out; try { out = new FileWriter("LPT1:"); out.write(string); …
William Wino
  • 3,599
  • 7
  • 38
  • 61
2
votes
0 answers

Printing from RDLC report to Dot Matrix Printer

I am trying to print a RDLC report to a dot matrix printer using Generic/Text only printer driver in Windows XP. But the problem is that, I am not getting the proper output as I am able to see in the preview of the report. In the print preview the…
mokaymakci
  • 1,373
  • 1
  • 18
  • 30
2
votes
0 answers

Java Printing page pops out

I m trying to print a page using dot matrix printer.Whenever i print a page even if the page is half printed the printer pops out the whole page and takes it to the new page..Please suggest something so that i can stay on the same page after…
Sumit
  • 21
  • 1
2
votes
1 answer

How can I cleanly print a web page to a dot-matrix printer?

I have an Epson LX 300 dot matrix printer. I'm using PHP to create an HTML receipt, and am using Javascript's window.print() to ask the browser to print the web page. Unfortunately the printer can not handle the formatted text. Font sizes are…
Madhur Rampal
  • 541
  • 3
  • 9
  • 21
1
vote
0 answers

How can I control paper orientation when printing to a dot matrix printer?

I am developing an identity card management application in Java that will replace a decades-old obsolete mainframe system. The required functionalities include printing personal data on cards that are fed by a dot matrix printer. The page size of…
Jeff Morin
  • 1,010
  • 1
  • 13
  • 25
1
vote
0 answers

how do i send data from an stm32f0 to an max7219 dot matrix to make the pong game

dear helpers and coding gods, i want to make an pong game with spi connection to the dot matrix on a stm32f0 with the program aplication keill, and the hardware, MAX7219 Dot matrix module 8x8 Communicate with SPI1 communication to the 8x8 LED…
1
vote
0 answers

print a invoice in a dot matrix printer using c# and itext7

I have a application in windows form using c# and itext7. I create a invoice in pdf and the pdf layout is fine, but whe I sent the file to be printed in a dot matrix printer EPSON TM-U220 the font is blurry like this image: The entire codo to…