I have an image of 320x320.
When I use Image.GetThumbnailImage
it generates an image of 180x180.
Only the file size of 320x300 is 10k, the Thumbnail file size is 52k ...
I wanted it to be at least equal, does anyone have any suggestions?
EDIT:
I have an image on the disk and open it like this:
Image image = new Bitmap(caminhoenomenodisco);
After that I simply do the Thumbnail like this:
Image nova = image.GetThumbnailImage(180, 180, null, new IntPtr());
EDIT:
Actually, the disk image is 24 bit-high, and the new image is saved with 32 bit depth.
I do not know how to generate the Thumbnail with 24 of intensity.