|
BitmapExtensionsResize(Image, Size) Method
|
Returns a resized
Bitmap image of the original.
Namespace: GSF.DrawingAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.218-beta+101eee949414e414795e55a6e73d88938f0177b8
Syntax Example
This example shows how to resize an image:
using System;
using GSF.Drawing;
using System.Drawing;
class Program
{
static void Main(string[] args)
{
Bitmap original = (Bitmap)Bitmap.FromFile("Original.jpg");
Bitmap originalResized = original.Resize(new Size(800, 600));
originalResized.Save("OriginalResized.jpg");
original.Dispose();
originalResized.Dispose();
Console.ReadLine();
}
}
See Also