ClearImage COM Server Send comments on this topic.
RotateRight Method
See Also  Example

Description

Rotate image to the right

Syntax

Visual Basic
Public Sub RotateRight() 

Remarks

This method generates an error if Image object is a zone.

Example

Image rotations
VB Example (Visual Basic)Copy Code
Private Sub T_ImageRotate(ByRef Img As CiImage)
  Img.RotateLeft
  Img.RotateRight
  Img.Flip
  Img.FlipHorz
  Img.FlipVert
End Sub

See Also