12345678910111213141516171819202122232425262728293031 |
- #import <UIKit/UIKit.h>
- @interface UIImage (Rotate)
- - (UIImage *)fixOrientation;
- - (UIImage*)rotate:(UIImageOrientation)orient;
- - (UIImage *)flipVertical;
- - (UIImage *)flipHorizontal;
- - (UIImage *)imageRotatedByDegrees:(CGFloat)degrees;
- - (UIImage *)imageRotatedByRadians:(CGFloat)radians;
- @end
|