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
8
votes
3 answers

HTML Printing: DOT-MATRIX

I'm printing an HTML receipt via javascript:window.print() Printing it to an Inkjet Printer makes everything all good. However on DOT-MATRIX Printer, Epson LX-300+II everything is different. It doesn't fit right, the texts are not aligned. I tried…
Aaron Alfonso
  • 516
  • 1
  • 8
  • 27
6
votes
1 answer

Printing custom paper size to an impact printer in WPF

I'm printing to an impact printer, loaded with 8.5 x 8.5 inch paper. When I print, the printer ejects 11 inches instead of 8.5. PageMediaSize pageSize = new PageMediaSize(PageMediaSizeName.Unknown, element.Width, element.Height); PrintDialog…
epalm
  • 4,283
  • 4
  • 43
  • 65
5
votes
2 answers

How to send raw string to a dotmatrix printer using python in ubuntu?

I have a dot-matrix printer LX-300 connected to my computer through the network. How do I send a raw string with ESCP characters directly to my printer in Python? The computer is connected to the printer through another computer. I need to send a…
William Wino
  • 3,599
  • 7
  • 38
  • 61
5
votes
0 answers

How to print in Printer's Default fonts using C# code?

i have LQ EPSON 300 Printer i want to Print some data in Printer's default font i think it will be possible if we use c# code to print by that printer's default font. PrintDocument pd = new PrintDocument(); pd.DefaultPageSettings.PaperSize = new…
sangeen
  • 304
  • 2
  • 3
  • 14
4
votes
3 answers

Java printing quality in Linux on dot-matrix printer

I need to print the report from a Java desktop application to a dot-matrix printer (Epson LX-300 II). Report consists of text ang some graphics. Printer is connected via USB and I'm using CUPS to print. I'm printing using the Printable interface…
Lord
  • 576
  • 6
  • 8
4
votes
3 answers

Dot matrix fast printing with precise layout in Java

I'd like to know what practical way of constructing reports for EPSON Dot Matrix printers exists in Java. At this time, I'm having the LX300+II model to play with. I know that there are basically two ways of using this printer: As a typewriter,…
Camilo Díaz Repka
  • 4,805
  • 5
  • 43
  • 68
4
votes
1 answer

Printing with dot matrix printers via C# programming

I am using the code template from Microsoft at this site with this snippet to print out only a single line and form feed: string s = "Hello world!\xC"; //\xC means form feed PrintDialog pd = new PrintDialog(); pd.PrinterSettings = new…
rasputin
  • 380
  • 5
  • 22
4
votes
1 answer

HTML to 'pretty' text conversion for printing on text only printer (dot matrix)

I have a web-site that generates some simple tabular data as html tables, many of my users print the web-page on a laser/inkjet printer; however some like to print on legacy Dot Matrix printers (text only) and there-in lies the problem. When giving…
Gala101
  • 464
  • 5
  • 14
4
votes
4 answers

Printing in (Parallel Port) Dot Matrix over C#

For the needs of a project, i want to print over the LPT1 in specific locations, this will print a document in a dot matrix printer where i should print values in the places they should go. I really hate going back, and i don't have any idea where…
George Taskos
  • 8,324
  • 18
  • 82
  • 147
3
votes
2 answers

How to detect type of selected printer that is dot matrix or not?

Normally, in old version Windows (98 or older) I can use MarkingTechnology in Printer api to get current type of printer. But it doesn't available in Windows 2000 or later. Do you have any other way to detect it in Windows 2000 or later? Example…
user94893
3
votes
1 answer

Dot-matrix printer doesn't moves to next tear off position after printing using python

I am using Epson FX2175 dot matrix printer and win32print python library to give commands to printer. After printing is completed paper doesn't moves to next tear off position. I tried sending FF(form feed) command at the end but it advances paper…
Deep Nishad
  • 181
  • 1
  • 2
  • 7
3
votes
0 answers

Dot matrix printing module for Node.js/Electron?

I have this kind of a big Java swing application containing 70,000+ lines of code that i want to migrate to Electron. I have a critical requirement for printing with Epson dot matrix printers (ESC/P2). To be more specific Epson LQ-310. Currently I'm…
m4heshd
  • 773
  • 9
  • 23
3
votes
0 answers

TVS MSP240 Dot Matrix printer paper rollback

I am using TVS MSP240 dot matrix printer with VB.NET and have a printing issue. Paper size is 6x4. However, if I print using this size, I get incomplete text, but with 6x5 I get complete text. But with this approach, paper scrolls one inch extra.…
Sawan
  • 2,152
  • 1
  • 14
  • 14
3
votes
2 answers

PHP to print using dot-matrix printers

I am working on a project that will end up printing receipts, my client uses a dot-matrix printer (some old version). He will need a system where receipt printing will be fast i.e. time efficient, and not opening a dialog box and choosing a…
2
votes
3 answers

itext and dotmatrix printers

I have a JSP page which is simply getting parameters, querying database, generating invoice PDF, and sending silently to the default printer. I use itext library. The invoice has to be printed on a dot-matrix printer with continuous paper. Each…
ndonmez
  • 21
  • 1
  • 5
1
2 3 4 5 6 7