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

Description

Rotate image to the left

Syntax

Visual Basic
Public Sub RotateLeft() 

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