1
I have a picture of 320x320.
When I use the Image.GetThumbnailImage
it generates an image of 180x180.
Only the size of the 320x300 file is 10k, the size of the Thumbnail file is 52k...
I wish he was at least the same, someone has some suggestion?
EDIT:
I have an image on the disk and I open it like this:
Image image = new Bitmap(caminhoenomenodisco);
After that I simply do Thumbnail like this:
Image nova = image.GetThumbnailImage(180, 180, null, new IntPtr());
EDIT:
Actually the disk image is at 24 bit intensity and the new image is saved at 32 intensity.
I don’t know how to generate Thumbnail with 24 of intensity.
I made a change to the question, I didn’t understand how I can open a disk file passing bit depth, the files I have are 24 of intensity yes. How would I do that in the code I edited in the question?
– Ricardo
@user3517631 I edited the answer.
– Leonel Sanches da Silva