美文网首页
iOS颜色转图片

iOS颜色转图片

作者: 我一不小心就 | 来源:发表于2018-04-17 17:49 被阅读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;
}

相关文章

网友评论

      本文标题:iOS颜色转图片

      本文链接:https://www.haomeiwen.com/subject/ltypkftx.html