RasterImage.Rotate

Rotate(float, bool, Color)

Rotate image around the center.

public virtual void Rotate(float angle, bool resizeProportionally, Color backgroundColor)
ParameterTypeDescription
angleSingleThe rotate angle in degrees. Positive values will rotate clockwise.
resizeProportionallyBooleanif set to true you will have your image size changed according to rotated rectangle (corner points) projections in other case that leaves dimensions untouched and only internal image contents are rotated.
backgroundColorColorColor of the background.

Exceptions

exceptioncondition
NotImplementedException

See Also


Rotate(float)

Rotate image around the center.

public virtual void Rotate(float angle)
ParameterTypeDescription
angleSingleThe rotate angle in degrees. Positive values will rotate clockwise.

See Also