using System.Drawing.Imaging; public void ResizePic(string oldFilePath, int thumbnailImageWidth, int thumbnailImageHeight, string targetFilePath) { using (Image oldImg = Image.FromFile(oldFilePath)) { using (Image thumnailImg = oldImg.GetThumbnailIma…