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)
Syntax
Property Value
TransformsProvider class instance containing methods which are responsible for geometric transformations of the bitmap.
Examples
| | Copy Code |
|---|
'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)
|
| | Copy Code |
|---|
//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);
|
See Also