|
-
May 24th, 2000, 01:42 AM
#1
Thread Starter
Addicted Member
I'm trying to print a grphics thats is twice the size of the papers size so I tried the printer.paintpicture to do it. But, what it gives me is only the image but half-sized (half the image).
The same happens when I try to save a picturebox after resizing it (it is saved as the original).
I tried to use picturebox1.image and yes, it is in autoredraw = true.
Any ideas ??
Thanks in advance.
-
May 24th, 2000, 01:47 AM
#2
Member
you need to use the paintpicture method to resize your image
e.g.
printer.paintpicture picture, 0, 0, , , 1400, 1400, printer.width-2800, printer.width-2800
VB / GIS Consultant
VB6 SP4, VC++6
-
May 24th, 2000, 01:53 AM
#3
Thread Starter
Addicted Member
I tried it but the measurement of the area was correct but the picture inside was not "streched".
-
May 24th, 2000, 01:58 AM
#4
Member
good point!!
I had co-ords the wrong way round
printer.paintpicture picture, 1400, 1400,printer.width-2800, printer.height-2800,0 ,0,picture.width, picture.height
VB / GIS Consultant
VB6 SP4, VC++6
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|