public static void Main()
var bitmap = new Bitmap(2, 2);
Image value1 = bitmap.Scale(2);
Image value2 = bitmap.Scale(3,5);
Console.WriteLine("Height: {0}, Width: {1}", value1.Height, value1.Width);
Console.WriteLine("Height: {0}, Width: {1}", value2.Height, value2.Width);