Shiny Language Reference

Language Reference > Image Functions


mirrorimageh

mirrorimageh(image MyImage);

 

 

Mirrors the image horizontally

The MIRRORIMAGEH statement mirrors the specified image horizontally, i.e.: flips the image from left to right.

 

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 horizontally
    mirrorimageh(MyImage);
}