Winform 에서 Image Resize 할 때 사용되는 코드입니다.Stack Overflow에서 보았던 소스를 적어 둡니다. public static System.Drawing.Image Resize(Image image, int Width, int Height, bool needToFill) { int sourceWidth = image.Width; int sourceHeight = image.Height; int sourceX = 0; int sourceY = 0; double destX = 0; double destY = 0; double nScale = 0; double nScaleW = 0; double nScaleH = 0; nScaleW = ((double)Width / (double)s..