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
1
vote
5 answers

Print HTML table to dot matrix printer

I have a php website which generate invoice in the form of html tables, I need to print these html tables to dot-matrix printer. I have tried to print webpage directly with browser print option, but it seems the printer treat it as image because it…
raven
  • 123
  • 1
  • 2
  • 11
1
vote
0 answers

How to print barcode and QR code using a dot matrix print? (EPSON TM-U220)

I have a dot matrix printer capable of 180 dpi (EPSON TM-U220) and a C# WPF application for billing. It must print a ticket with a barcode and a QR code. I am using zxing to generate a barcode and a QR code and I just print it using printDialog. The…
Joan Gerard
  • 135
  • 6
  • 17
1
vote
1 answer

Dot matrix printer is not continuing with half letter paper size

I'm using an epson lx 300+II dot matrix printer and I'm using half letter size paper (tractor feed) and I have set custom paper size to width 8.5" and height 5.5". When I print one page it prints fine but if print more than one pages first page…
chalitha geekiyanage
  • 6,464
  • 5
  • 25
  • 32
1
vote
1 answer

Esc/P for setting page length in inch

I need to set up ESC/P for page length in PHP which is 5.5 inch. My printer is LX300+ and the code is: $page_length = Chr(27) . Chr(67) . Chr(0) . "5.5"; Is that correct way for Esc C 0 n (n=5.5). Does not seems to work right. Is there any way…
Anakin
  • 29
  • 6
1
vote
1 answer

How to preserve data alignment in dot matrix printing no matter the character size (pitch)

I print text into a dot matrix printer using the generic text only driver and I manage to align data on paper's columns using one space character for every empty printing character on the 135 characters wide paper. This works on 10CPI in the sense…
mplexus
  • 39
  • 1
  • 8
1
vote
0 answers

Java Printing Dotmatrix printer not stop feeding paper

I want to print a bill in java using java PrintService. I am using FileOutputStream to create file. My Printer is tvs msp star 250 printer(dotmatrix). I tried "\f" and (char)12 to set a page break( form feed) character in file in doc,txt and rtf.…
JavaUser
  • 11
  • 1
1
vote
0 answers

Not able to Set custom page size through java printing on dot matrix printer

We are trying to print through java on dot matrix printer. We have created the Paper object with custom size. But when it goes to printer, it doesn't take the custom size. It takes either 11 inches or 12 inch size. Below is the code which we are…
vivek
  • 11
  • 3
1
vote
0 answers

Dot Matrix printing

I like lots of people need to print text ONLY to a dot matrix printer. I have run the example found here. And It seems to work but only XP it does not seem to work on Wnidows 7. I have tested using a generic/Text only printo to file driver as I…
Simon Rees
  • 161
  • 2
  • 11
1
vote
1 answer

How to Print only the exact size of the report in Crystal Report

I want to print the data using the crystal report which is generated from the database the report is depend upon the data requested by the user. It may be of 5 lines or it may can vary to 20 to 25 lines now while printing in the dot matrix…
1
vote
1 answer

Print to a Dot-Matrix Printer directly from VB.NET

i am finishing a program i am writing and i have to create a printing to an Epson LQ-300+ Dot-Matrix. The printing has to print some text in some specific parts of the paper (Amount,name etc) Can anyone point me to the right direction or post me an…
Panos B.
  • 49
  • 1
  • 9
1
vote
2 answers

ESC/P Set Absolute Horizontal Print Position

I am having trouble with setting the horizontal print position in an Epson LX-300 II dot matrix printer. The command to set the horizontal print position does not work sometimes. I need this to align the printable data to the appropriate column in…
1
vote
1 answer

LCD Output on RS232-connected Module via Ethernet - Request for general information

currently I am trying to write to an 20x4 LCD Dot-Matrix Module using Perle's TruePort Redirector. I have the GMS-DS LCD Module connected to a Perle Serial to Ethernet Device Server. As of now, I think that I need to write to a local TruePort…
Wolfram
  • 8,044
  • 3
  • 45
  • 66
1
vote
0 answers

how send Printer command to EPSON LQ-300+ from VB.NET 2005

I have to send a priter command for changing font from VB.NET. And i am using RawprinterHelperClass and sendstringtoprinter(printername,stringname) function to print a string. I have Printer Command but i donot know to send it. Printer Command is
Vasu Shanmugam
  • 67
  • 1
  • 13
0
votes
1 answer

Using ghostscript with TallyGenicom 6312 Line Printer

I am attempting to use GhostScript 9.04 with .NET (gsdll32.dll) to convert and then output a pdf file to a TallyGenicom 6312 Line Printer. I've dug through tons of documentation but no matter what parameters I throw at GhostScript, and what type of…
chrispy
  • 88
  • 1
  • 5
0
votes
0 answers

I am Using WiFi UDP to send numbers from my computer to an adafruit led matrix display with arduino mega 2560 wifi R3 but it only sends once

I am using an Songhe Mega2560 + WiFi R3 ATmega2560+ESP8266 32Mb Memory USB-TTL CH340G to power and send numbers to a 64x32 adafruit led matrix display from my computer. I am kind of a beginner at this but I got it to be able to send numbers to the…