In this blog I will show how to create thumbnail image and save it in a location in C#.
System.Drawing.Image thumb = img.GetThumbnailImage(160,120, null, IntPtr.Zero);
img.Dispose();
thumb.Save(Server.MapPath("~/uploads/" + FileUpload1.FileName));
Join the conversation! Your thoughts help the community grow.
Sign in to leave a comment
It is the same account you read, post and publish with — and you will come straight back to this page.
SubashPosted Sep 7, 2016, 3:24 AM
Nice