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)
public TransformsProvider Transforms { get; }
using (var bitmap = new Bitmap(@"Images\in.jpg")) { bitmap.Transforms.Resize(100, 0); bitmap.Save(@"Images\Output\out.jpg"); }