美文网首页
根据颜色创建图片

根据颜色创建图片

作者: liuyihua的技术修炼场 | 来源:发表于2017-12-07 13:28 被阅读6次

-(UIImage *)imageWithColor:(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;
}

相关文章

网友评论

      本文标题:根据颜色创建图片

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