Shiny Language Reference
Language Reference > Image Functions
mirrorimagev
mirrorimagev(image MyImage);
Mirrors the image vertically
The MIRRORIMAGEV statement mirrors the specified image vertically, i.e.: flips the image from top to bottom.
Parameters
MyImage
A variable declared as type IMAGE and previously associated with a bitmap image using the CREATEIMAGE statement.
Return Value
None
Example Code
image MyImage;
if(createimage(MyImage, "C:\\MyBitmap.bmp") == TRUE)
{
// Flip the image vertically
mirrorimagev(MyImage);
}