123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- #import <UIKit/UIKit.h>
- #import <objc/runtime.h>
- #import <QuartzCore/QuartzCore.h>
- #import <Accelerate/Accelerate.h>
- @interface UIImage (Extension)
- - (UIImage *)fixOrientation;
- + (UIImage *)imageWithBgColor:(UIColor *)color alpha:(CGFloat)alpha;
- - (UIImage *)horTransform;
- - (UIImage*)imageAddCornerWithRadius:(CGFloat)radius andSize:(CGSize)size;
- + (UIImage *)boxblurImageWithBlur:(CGFloat)blur andImage:(UIImage *)image;
- - (UIImage *)imageByBlurRadius:(CGFloat)blurRadius
- tintColor:(UIColor *)tintColor
- tintMode:(CGBlendMode)tintBlendMode
- saturation:(CGFloat)saturation
- maskImage:(UIImage *)maskImage;
- + (UIImage *)originImageWithName:(NSString *)name ;
- - (UIImage *)circleImage;
- @end
|