Rotates current image

Namespace: HiComponents.IEvolution
Assembly: IEvolution2 (in IEvolution2.dll) Version: 10.1.0.0

Syntax

         
 C#  Visual Basic  Visual C++ 
public void Rotate(
	double angle,
	bool antialias
)
Public Sub Rotate ( _
	angle As Double, _
	antialias As Boolean _
)
public:
void Rotate(
	double angle, 
	bool antialias
)

Parameters

angle
Double
the rotating angle in degrees
antialias
Boolean
if True, an antialias algorithm is used

Examples

CopyC#
Image.Rotate(180,true);

See Also