Hello all,
I am able to print .gif files successfully using the code below inthe PrintPageEventHandler event.
Image img =
System.Drawing.Bitmap.FromFile(@"D:\TestLabel.gif");
e.Graphics.DrawImage(img, rf);
The actual .gif file is about 50kb. However, when printing, about 1.5mb of data gets sent to the printer, so it takes a few seconds to print out. Is there a way to decrease the file size sent to the printer? Thank you.
TL