forked from McZonk/UIKitPlus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUIImageView+UIPImageFrame.m
84 lines (59 loc) · 2.8 KB
/
UIImageView+UIPImageFrame.m
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#import "UIImageView+UIPImageFrame.h"
@implementation UIImageView (UIPImageFrame)
- (CGRect)imageFrame
{
UIViewContentMode contentMode = self.contentMode;
UIImage *image = self.image;
if(image == nil)
{
return CGRectZero;
}
CGSize imageSize = image.size;
CGSize viewSize = self.bounds.size;
switch(contentMode)
{
case UIViewContentModeScaleToFill:
return CGRectMake(0.0, 0.0, viewSize.width, viewSize.height);
case UIViewContentModeScaleAspectFill:
{
CGFloat ratioWidth = viewSize.width / imageSize.width;
CGFloat ratioHeight = viewSize.height / imageSize.height;
CGFloat ratio = ratioWidth > ratioHeight ? ratioWidth : ratioHeight;
imageSize.width *= ratio;
imageSize.height *= ratio;
return CGRectMake((viewSize.width - imageSize.width) * 0.5, (viewSize.height - imageSize.height) * 0.5, imageSize.width, imageSize.height);
}
case UIViewContentModeScaleAspectFit:
{
CGFloat ratioWidth = viewSize.width / imageSize.width;
CGFloat ratioHeight = viewSize.height / imageSize.height;
CGFloat ratio = ratioWidth < ratioHeight ? ratioWidth : ratioHeight;
imageSize.width *= ratio;
imageSize.height *= ratio;
return CGRectMake((viewSize.width - imageSize.width) * 0.5, (viewSize.height - imageSize.height) * 0.5, imageSize.width, imageSize.height);
}
case UIViewContentModeRedraw:
// this is a special case and this is the best fallback
return CGRectMake(0.0, 0.0, viewSize.width, viewSize.height);
case UIViewContentModeCenter:
return CGRectMake((viewSize.width - imageSize.width) * 0.5, (viewSize.height - imageSize.height) * 0.5, imageSize.width, imageSize.height);
case UIViewContentModeTop:
return CGRectMake((viewSize.width - imageSize.width) * 0.5, 0.0, imageSize.width, imageSize.height);
case UIViewContentModeBottom:
return CGRectMake((viewSize.width - imageSize.width) * 0.5, viewSize.height - imageSize.height, imageSize.width, imageSize.height);
case UIViewContentModeLeft:
return CGRectMake(0.0, (viewSize.height - imageSize.height) * 0.5, imageSize.width, imageSize.height);
case UIViewContentModeRight:
return CGRectMake(viewSize.width - imageSize.width, (viewSize.height - imageSize.height) * 0.5, imageSize.width, imageSize.height);
case UIViewContentModeTopLeft:
return CGRectMake(0.0, 0.0, imageSize.width, imageSize.height);
case UIViewContentModeTopRight:
return CGRectMake(viewSize.width - imageSize.width, 0.0, imageSize.width, imageSize.height);
case UIViewContentModeBottomLeft:
return CGRectMake(0.0, viewSize.height - imageSize.height, imageSize.width, imageSize.height);
case UIViewContentModeBottomRight:
return CGRectMake(viewSize.width - imageSize.width, viewSize.height - imageSize.height, imageSize.width, imageSize.height);
}
return CGRectZero;
}
@end