mirror of
https://github.com/danog/Telegram.git
synced 2024-12-12 09:29:55 +01:00
15 lines
395 B
Objective-C
15 lines
395 B
Objective-C
|
|
|
|
#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;
|
|
|
|
@end
|