iOS 使用UIColor创建UIImage
示例
迅速
let color = UIColor.redColor() let size = CGSize(width: 200, height: 200) UIGraphicsBeginImageContextWithOptions(size, false, 0.0) CGContextSetFillColorWithColor(UIGraphicsGetCurrentContext(), color.CGColor) CGContextFillRect(UIGraphicsGetCurrentContext(), CGRect(origin: .zero, size: size)) let colorImage = UIGraphicsGetImageFromCurrentImageContext() UIGraphicsEndImageContext()
迅捷3
let color = UIColor.red()
let size = CGSize(width: 200, height: 200)
UIGraphicsBeginImageContextWithOptions(size, false, 0.0)
if let context = UIGraphicsGetCurrentContext() {
context.setFillColor(color.cgColor)
context.fill(CGRect(origin: .zero, size: size))
let colorImage = UIGraphicsGetImageFromCurrentImageContext()
}
UIGraphicsEndImageContext()目标C:
将此方法添加为的扩展UIImage:
+ (UIImage *)createImageWithColor: (UIColor *)color {
CGRect rect=CGRectMake(0.0f, 0.0f, 1.0f, 1.0f);
UIGraphicsBeginImageContext(rect.size);
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetFillColorWithColor(context, [color CGColor]);
CGContextFillRect(context, rect);
UIImage *theImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return theImage;
}
热门推荐
10 送离职同事简短祝福语
11 年终聚餐祝福语简短独特
12 工厂祝福语简短10字
13 生日祝福语古语简短创意
14 祝福语简短唯美10字
15 老师节祝福语的简短
16 英语寄语生日祝福语简短
17 外国媳妇订婚祝福语简短
18 写给兄弟的祝福语简短