根据颜色生成图片
2016-06-21 本文已影响28人
闲得一B
- (UIImage *)saImageWithSingleColor:(UIColor *)color
{
UIGraphicsBeginImageContext(CGSizeMake(1.0f, 1.0f));
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetFillColorWithColor(context, [color CGColor]);
CGContextFillRect(context, CGRectMake(0, 0, 1, 1));
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return image;
}