ImageTransformationEnum
ImageTransformationEnum enumeration constants are used to denote possible image transformations.
typedef enum {
IT_RotateClockwise,
IT_RotateUpsideDown,
IT_RotateCounterclockwise,
IT_Despeckle,
IT_Invert,
IT_FlipHorizontalAxis,
IT_FlipVerticalAxis
} ImageTransformationEnum;
Elements
Name | Description |
---|---|
IT_RotateClockwise | Rotate 90 degrees clockwise. |
IT_RotateUpsideDown | Rotate upside down, or 180 degrees. |
IT_RotateCounterclockwise | Rotate 90 degrees counterclockwise or 270 degrees clockwise. |
IT_Despeckle | Despeckle image. |
IT_Invert | Invert image colors. |
IT_FlipHorizontalAxis | Flip image vertically, i.e. mirror image around the horizontal axis. |
IT_FlipVerticalAxis | Flip image horizontally, i.e. mirror image around the vertical axis. |
Used in
8/15/2023 1:19:30 PM