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
)
Visual Basic
Public Function Rotate ( _
	angle As Single, _
	maintainDimensions As Boolean _
) As FilterChain
Visual C++
public:
FilterChain^ Rotate(
	float angle, 
	bool maintainDimensions
)

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.

Return Value

This FilterChain.

See Also