-
Notifications
You must be signed in to change notification settings - Fork 70
/
UIImage+BlurredFrame.h
29 lines (25 loc) · 1.1 KB
/
UIImage+BlurredFrame.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
//
// UIImage+blurredFrame.h
//
// Created by Adrian Gzz on 04/11/13.
// Copyright (c) 2013 Icalia Labs. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface UIImage (BlurredFrame)
- (UIImage *)applyLightBluredAtFrame:(CGRect)frame __attribute__((deprecated));
- (UIImage *)applyLightEffectAtFrame:(CGRect)frame;
- (UIImage *)applyExtraLightEffectAtFrame:(CGRect)frame;
- (UIImage *)applyDarkEffectAtFrame:(CGRect)frame;
- (UIImage *)applyTintEffectWithColor:(UIColor *)tintColor atFrame:(CGRect)frame;
- (UIImage *)applyBlurWithRadius:(CGFloat)blurRadius
tintColor:(UIColor *)tintColor
saturationDeltaFactor:(CGFloat)saturationDeltaFactor
maskImage:(UIImage *)maskImage
atFrame:(CGRect)frame;
- (UIImage *)applyBlurWithRadius:(CGFloat)blurRadius
iterationsCount:(NSInteger)iterationsCount
tintColor:(UIColor *)tintColor
saturationDeltaFactor:(CGFloat)saturationDeltaFactor
maskImage:(UIImage *)maskImage
atFrame:(CGRect)frame;
@end