Printing picturebox to A5

macvic211

Member
Joined
Oct 31, 2009
Messages
6
Location
Wales
Programming Experience
Beginner
I have a picturebox which contains a jpeg image which is A4 in size. I have managed to figure out the code to print it correctly (with a little help), however, I need a secondary print button that will print the image A5 in size but on an A4 paper, as if you were printing 2 images per page. I have managed to rotate the page to landscape, but need to know how to resize the image on the page. Any help for a novice programmer would be much appreciated!
 
Just adjust the Width and Height of the image as you put it on the paper :)

VB.NET:
.DrawImage (image, x, y, width height)
 
Back
Top