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

Description

Flip image around vertical axis

Syntax

Visual Basic
Public Sub FlipVert() 

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