iOS颜色转图片

2018-04-17  本文已影响0人  我一不小心就
- (UIImage *)imageWithColor:(UIColor *)color

{
    CGRect rect = CGRectMake(0.0f, 0.0f, 80.0f, 45.0f);
    UIGraphicsBeginImageContext(rect.size);
    CGContextRef context = UIGraphicsGetCurrentContext();
    
    CGContextSetFillColorWithColor(context, [color CGColor]);
    CGContextFillRect(context, rect);
    
    UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    
    return image;
}
上一篇 下一篇

猜你喜欢

热点阅读