Hi everyone….!!!
Following is the code which can creates the thumbnails of images with no hardwork….
System.Drawing.Image originalImage = System.Drawing.Image.FromFile(imagePath); System.Drawing.Image thumbnailImage = originalImage.GetThumbnailImage(90, 90, null, IntPtr.Zero);
thumbnailImage.Save(thumbnailPath);
See how easy it is to create thumbnail in .net
–
Keep Smiling