Create thumbnail and reduce image size
Posted
by oo
on Stack Overflow
See other posts from Stack Overflow
or by oo
Published on 2009-03-26T00:43:07Z
Indexed on
2010/05/08
10:48 UTC
Read the original article
Hit count: 221
I have very large images (jpg) and i want to write a csharp program to loop through the files and reduce the size of each image by 75%.
I tried this:
Image thumbNail = image.GetThumbnailImage(800, 600, null, new IntPtr());
but the file size is still very large.
Is there anyway to create thumbnails and have the filesize be much smaller?
© Stack Overflow or respective owner