UIImage+Rotate.h 623 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // UIImage+Rotate.h
  3. // UIImage+Categories
  4. //
  5. // Created by lisong on 16/9/4.
  6. // Copyright © 2016年 lisong. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface UIImage (Rotate)
  10. /** 纠正图片的方向 */
  11. - (UIImage *)fixOrientation;
  12. /** 按给定的方向旋转图片 */
  13. - (UIImage*)rotate:(UIImageOrientation)orient;
  14. /** 垂直翻转 */
  15. - (UIImage *)flipVertical;
  16. /** 水平翻转 */
  17. - (UIImage *)flipHorizontal;
  18. /** 将图片旋转degrees角度 */
  19. - (UIImage *)imageRotatedByDegrees:(CGFloat)degrees;
  20. /** 将图片旋转radians弧度 */
  21. - (UIImage *)imageRotatedByRadians:(CGFloat)radians;
  22. @end