美文网首页
[iOS] 绘制纯色图片

[iOS] 绘制纯色图片

作者: 世上无南西 | 来源:发表于2018-12-29 17:06 被阅读0次

+ (UIImage *)createImageWithColor:(UIColor *)color frame:(CGRect)rect

{

    UIGraphicsBeginImageContext(rect.size);

    CGContextRef context = UIGraphicsGetCurrentContext();

    CGContextSetFillColorWithColor(context, [color CGColor]);

    CGContextFillRect(context, rect);

    UIImage *theImage = UIGraphicsGetImageFromCurrentImageContext();

    UIGraphicsEndImageContext();    

    return theImage;

}

相关文章

网友评论

      本文标题:[iOS] 绘制纯色图片

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