C# Image Printing
-
-
Hello everyone. Hope someone can help me here. I've built a basic image printer and I need to add a small 2-line table to every page that it prints. Any ideas on how to accomplish this? I can provide code samples if necessary. Thanks in advance. Scott
yep, just like your drawing an image, draw the table where you need it you have to create the table drawing yourself i.e. Graphics.DrawRectange(...);//draw your table Graphics.DrawString(...);draw the text
If only MySelf.Visible was more than just a getter...
-
yep, just like your drawing an image, draw the table where you need it you have to create the table drawing yourself i.e. Graphics.DrawRectange(...);//draw your table Graphics.DrawString(...);draw the text
If only MySelf.Visible was more than just a getter...
-
Heh, unlike a lot of things in the world of computing, that actually makes sense. Am annoyed at myself now for not thinking of that. Thank you very much.