Creates a new Image by rotating an existing image.

Namespace: ImageSense
Assembly: ImageSense (in ImageSense.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public FilterChain Rotate(
	float angle,
	bool maintainDimensions,
	Color fillColor
)
Visual Basic
Public Function Rotate ( _
	angle As Single, _
	maintainDimensions As Boolean, _
	fillColor As Color _
) As FilterChain
Visual C++
public:
FilterChain^ Rotate(
	float angle, 
	bool maintainDimensions, 
	Color fillColor
)

Parameters

angle
Type: System..::..Single
The number of degrees to rotate the source image.
maintainDimensions
Type: System..::..Boolean
Maintain the original image dimensions or expand to contain all of the new image.
fillColor
Type: System.Drawing..::..Color
The background color to use in the new image.

Return Value

This FilterChain.

See Also