|
-
Oct 2nd, 2002, 01:37 PM
#1
Thread Starter
Addicted Member
Image control
Hi everyone! I have an application that captures photos from digital sources and now i need to resize them but keep the resolution high, or at its original level. I am willing to pay for a good image processing control if needed, but i hope someone has encountered this before.
Thanks in advance
-
Oct 2nd, 2002, 02:01 PM
#2
PowerPoster
Try using VB Image control with Stretch = True. It's pretty good. It stays sharp even when resized.
VB Code:
Private Sub Form_Resize()
Image1.Move 0, 0, Me.ScaleWidth, Me.ScaleHeight
End Sub
-
Oct 2nd, 2002, 02:09 PM
#3
Thread Starter
Addicted Member
but
i have to save the image as a jpeg though .... aren't i limited to bmp's with an image control?
-
Oct 2nd, 2002, 02:11 PM
#4
PowerPoster
Yes, it's limited, but you should've mentioned that in the first post.
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
|