Thumbnail Problems

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am trying to make a listview that i will be using to display a group of
pictures in a form. For some reason though the pictures come up horribly. I
have a function that takes a image and returns a thumbnail of it why are they
working so bad? Also it works very slow how to make this quicker?

Thanks

WStoreyII
 
WStorey

There can be a lot of reasons, the starting images and/or your process.

Did you when making the program first use a picturebox to look how the
images looks after making thumbnails.

I get the idea as well that you did not save the thumbnails somewhere
however converts them on the fly from images. I can imagen that that takes a
lot of time.

Just some thoughts,

Cor

"WStoreyII"
..
 
WStoreyII said:
I am trying to make a listview that i will be using to display a group of
pictures in a form. For some reason though the pictures come up horribly.
I
have a function that takes a image and returns a thumbnail of it why are
they
working so bad?

If you are calling the image's 'GetThumbnailImage' method, an embedded
thumbnail will be used if the image contains one. These thumbnails often
have a bad quality. Instead of using this method, you can create the
thumbnails yourself:

Resizing an image with a certain interpolation mode
<URL:http://dotnet.mvps.org/dotnet/faqs/?id=interpolationmode&lang=en>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top