Enumeration: UIImageOrientation
Overview
Specifies the possible orientations of an image.
Constant Summary
- UIImageOrientationUp
The default orientation of images. the image is drawn right-side up, as shown here. available in ios 2.0 and later.declared in uiimage.h.
- UIImageOrientationDown
The image is rotated 180 degrees, as shown here. available in ios 2.0 and later.declared in uiimage.h.
- UIImageOrientationLeft
The image is rotated 90 degrees counterclockwise, as shown here. available in ios 2.0 and later.declared in uiimage.h.
- UIImageOrientationRight
The image is rotated 90 degrees clockwise, as shown here. available in ios 2.0 and later.declared in uiimage.h.
- UIImageOrientationUpMirrored
The image is drawn as a mirror version of an image drawn with the uiimageorientationup value. in other words, the image is flipped along its horizontal axis, as shown here. available in ios 2.0 and later.declared in uiimage.h.
- UIImageOrientationDownMirrored
The image is drawn as a mirror version of an image drawn with the uiimageorientationdown value. this is the equivalent to flipping an image in the “up” orientation along its horizontal axis and then rotating the image 180 degrees, as shown here. available in ios 2.0 and later.declared in uiimage.h.
- UIImageOrientationLeftMirrored
The image is drawn as a mirror version of an image drawn with the uiimageorientationleft value. this is the equivalent to flipping an image in the “up” orientation along its horizontal axis and then rotating the image 90 degrees counterclockwise, as shown here. available in ios 2.0 and later.declared in uiimage.h.
- UIImageOrientationRightMirrored
The image is drawn as a mirror version of an image drawn with the uiimageorientationright value. this is the equivalent to flipping an image in the “up” orientation along its horizontal axis and then rotating the image 90 degrees clockwise, as shown here. available in ios 2.0 and later.declared in uiimage.h.