Rotates an image at arbitrary angle.
Namespace:
Aurigma.GraphicsMill
Assembly:
Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)
Public Sub Rotate ( _ angle As Single, _ backgroundColor As Color, _ interpolationMode As InterpolationMode _ )
public void Rotate( float angle, Color backgroundColor, InterpolationMode interpolationMode )
Type: System.Single
Angle to rotate image at (in degrees).Type: Aurigma.GraphicsMill.Transforms.InterpolationMode
InterpolationMode value specifying interpolation algorithm used during rotation.'Rotate at 5 degrees with medium quality bitmap.Transforms.Rotate(5, Aurigma.GraphicsMill.RgbColor.Yellow, _ Aurigma.GraphicsMill.Transforms.InterpolationMode.MediumQuality)
//Rotate at 5 degrees with medium quality bitmap.Transforms.Rotate(5, Aurigma.GraphicsMill.RgbColor.Yellow, Aurigma.GraphicsMill.Transforms.InterpolationMode.MediumQuality);