Results 1 to 4 of 4

Thread: Image control

  1. #1

    Thread Starter
    Addicted Member Halon's Avatar
    Join Date
    Oct 2002
    Location
    under desk choking on rage
    Posts
    228

    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

  2. #2
    PowerPoster
    Join Date
    Aug 2002
    Location
    NY, NY
    Posts
    2,139
    Try using VB Image control with Stretch = True. It's pretty good. It stays sharp even when resized.
    VB Code:
    1. Private Sub Form_Resize()
    2.     Image1.Move 0, 0, Me.ScaleWidth, Me.ScaleHeight
    3. End Sub
    Roy

  3. #3

    Thread Starter
    Addicted Member Halon's Avatar
    Join Date
    Oct 2002
    Location
    under desk choking on rage
    Posts
    228

    but

    i have to save the image as a jpeg though .... aren't i limited to bmp's with an image control?

  4. #4
    PowerPoster
    Join Date
    Aug 2002
    Location
    NY, NY
    Posts
    2,139
    Yes, it's limited, but you should've mentioned that in the first post.
    Roy

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width