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

Description

Rotate image upside down

Syntax

Visual Basic
Public Sub Flip() 

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