blob: 41ad79eda8fb33e8c4b0f19f237fdf167630bb1c (
plain)
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
|
//
// UIImage_Additions.m
// FlushD
//
// Created by Ronny Fenrich on 12-07-27.
//
//
#import "UIImage+Additions.h"
@implementation UIImage (Additions)
+ (UIImage *) imageFromColor:(UIColor *)color
{
UIImage *img = [UIImage imageFromColor:color width:1 height:1];
return img;
}
+ (UIImage *) imageFromColor:(UIColor *)color width:(CGFloat) width height:(CGFloat) height
{
CGRect rect = CGRectMake(0, 0, width, height);
UIGraphicsBeginImageContext(rect.size);
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetFillColorWithColor(context, [color CGColor]);
CGContextFillRect(context, rect);
UIImage *img = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return img;
}
// helper method for iPhone5, loads tall image with fallback to old imageNamed method based on current device height
+ (UIImage *)retina4ImageNamed:(NSString *)imageName
{
NSMutableString *imageNameMutable = [imageName mutableCopy];
NSRange retinaAtSymbol = [imageName rangeOfString:@"@"];
if (retinaAtSymbol.location != NSNotFound) {
[imageNameMutable insertString:@"-568h" atIndex:retinaAtSymbol.location];
} else {
CGFloat screenHeight = [UIScreen mainScreen].bounds.size.height;
if ([UIScreen mainScreen].scale == 2.f && screenHeight == 568.0f) {
NSRange dot = [imageName rangeOfString:@"."];
if (dot.location != NSNotFound) {
[imageNameMutable insertString:@"-568h@2x" atIndex:dot.location];
} else {
[imageNameMutable appendString:@"-568h@2x"];
}
}
}
UIImage *image = [UIImage imageNamed:imageNameMutable];
if (!image) {
image = [UIImage imageNamed:imageName];
}
return image;
}
+ (UIImage *)imageWithImage:(UIImage *)image convertToSize:(CGSize)size
{
UIGraphicsBeginImageContext(size);
[image drawInRect:CGRectMake(0, 0, size.width, size.height)];
UIImage *destImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return destImage;
}
@end
|