RotationTypeEnum
RotationTypeEnum enumeration constants are used to denote types of rotation that can be performed upon an image.
typedef enum {
RT_NoRotation,
RT_Clockwise,
RT_Counterclockwise,
RT_Upsidedown
} RotationTypeEnum;
Elements
Name | Description |
---|---|
RT_NoRotation | This value denotes no rotation. |
RT_Clockwise | Rotation 90 degrees clockwise. |
RT_Counterclockwise | Rotation 90 degrees counterclockwise or 270 degrees clockwise. |
RT_Upsidedown | Rotation upside down, or 180 degrees. |
Used in
IImageLoadingParams::ImageRotation
IImageProcessingParams::RotationType
IImageProcessingTools::DetectOrientationByText
8/15/2023 1:19:30 PM