Newer
Older
XinYang_IOS / YH_Category / UIImage+ImageEffects.h
@zhangfeng zhangfeng on 7 Dec 446 bytes 1.8.0




#import <UIKit/UIKit.h>

@interface UIImage (ImageEffects)

- (UIImage *)applyLightEffect;
- (UIImage *)applyExtraLightEffect;
- (UIImage *)applyDarkEffect;
- (UIImage *)applyTintEffectWithColor:(UIColor *)tintColor;

- (UIImage *)applyBlurWithRadius:(CGFloat)blurRadius tintColor:(UIColor *)tintColor saturationDeltaFactor:(CGFloat)saturationDeltaFactor maskImage:(UIImage *)maskImage;

- (UIImage *)blurryWithBlurLevel:(CGFloat)blur;

@end