Returns object providing methods which are responsible for geometric transformations of the bitmap (resize, rotate, crop, swirl, etc).
Namespace:
Aurigma.GraphicsMill
Assembly:
Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)
Public ReadOnly Property Transforms As TransformsProvider
public TransformsProvider Transforms { get; }
'Resize image proportionally to width 100 bitmap.Transforms.Resize(100, 0) 'Resize image proportionally to height 100 'bitmap.Transforms.Resize(0, 100) 'Resize image to make both width and height equal 100 '(don't constrain proportions) 'bitmap.Transforms.Resize(100, 100)
//Resize image proportionally to width 100 bitmap.Transforms.Resize(100, 0); //Resize image proportionally to height 100 //bitmap.Transforms.Resize(0, 100); //Resize image to make both width and height equal 100 //(don't constrain proportions) //bitmap.Transforms.Resize(100, 100);