UIImage+ImageRotate.h 249 B

123456789101112131415161718
  1. //
  2. // UIImage+ImageRotate.h
  3. // LenzSDK
  4. //
  5. // Created by lr on 2023/5/18.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface UIImage (ImageRotate)
  10. - (UIImage *)imageRotateWithIndegree:(CGFloat)indegree;
  11. @end
  12. NS_ASSUME_NONNULL_END