C# Code: private Bitmap SetResizeImage( string strImg, string FileName, int Imagewidth, int ImageHeight) { int nnx = Imagewidth; int nny = ImageHeight; System.Drawing. Image img = System.Drawing. Image .FromFile(strImg); Bitmap cpy = null ; cpy = new Bitmap (nnx, nny); using ( Graphics gr = Graphics .FromImage(cpy)) { gr.Clear( Color .Transparent); gr.InterpolationMode = System.Drawing.Drawing2D. InterpolationMode .High; gr.DrawImage(img, new Rectangle (0, 0, nnx, nny), new Rectangle (0, 0, img.Width, img.Height), GraphicsUnit .Pixel); } return cpy; } -----------------------------------------------------------------------------------------------...