Link to home
Start Free TrialLog in
Avatar of ttobin333
ttobin333

asked on

VB6 Picturebox: how to maximize image resize quality

When creating thumbnail views of images, I have just been using "paintpicture" to resize. This works OK, but I have seen high resolution thumbnails with much more detail in other programs. Is there a way to maximize image detail when reducing the size?

Thanks!
Avatar of Antagony1960
Antagony1960

You could try using the FreeImage library. It's open source and comes with a VB module which you can use in your project. It also has an impressive range of image conversion functions.
Avatar of ttobin333

ASKER

I was hoping to accomplish this without using the FreeImage Library. Are there any VB6 or API techniques that you could recommend?
ASKER CERTIFIED SOLUTION
Avatar of Antagony1960
Antagony1960

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Perfect! Thanks!