Hello Experts
I am printing a receipt using a visual c sharp and an EPSON thermal POS printer.
In order to print the logo, I am using the following lines that work just fine.
Bitmap bm1 = new Bitmap(pictureBox1.Width, pictureBox1.Height);
pictureBox1.DrawToBitmap(bm1, new Rectangle(0, 0, pictureBox1.Width, pictureBox1.Height));
e.Graphics.DrawImage(bm1, hx, hy, wi, he);
bm1.Dispose();
And because I used an image
I continue printing each line of text as an image
as follows.
// text
hy += (he+s2);wi = 300; he = 20;
Bitmap tit1 = new Bitmap(wi,he);
pictureBox5.DrawToBitmap(tit1, new Rectangle(0, 0, wi, he));
e.Graphics.DrawImage(tit1, hx , hy, wi , he);
tit1.Dispose();
The thing is most of the time I need to print several items and the printing is longer than the height of A4 paper size.
my printing is being truncated when the limit is reached.
How can I make receipts longer than the height of A4 ?
Regards,
Firstly, the height of A4 is 29.7cm. Can you describe in a better way what's you scenario?