S Shiva Dec 16, 2004 #2 This is one way: Bitmap newBmp = new Bitmap (new-size-x, new-size-y); Graphics g = Graphics.FromImage (newBmp); g.DrawImage (<original bmp>, 0, 0); Hello. How can I resize image in Bitmap object?
This is one way: Bitmap newBmp = new Bitmap (new-size-x, new-size-y); Graphics g = Graphics.FromImage (newBmp); g.DrawImage (<original bmp>, 0, 0); Hello. How can I resize image in Bitmap object?