Bitmap.Transforms Property

Gets an object providing methods which are responsible for geometric transformations of the bitmap (resize, rotate, crop, etc).

Namespace: Aurigma.GraphicsMill
Assembly: Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)

Syntax

C#
public TransformsProvider Transforms { get; }

Property Value

A TransformsProvider containing methods which are responsible for geometric transformations of the bitmap.

Examples

C#
using (var bitmap = new Bitmap(@"Images\in.jpg"))
{
    
    bitmap.Transforms.Resize(100, 0);
    bitmap.Save(@"Images\Output\out.jpg");
}

See Also

Reference