其他分享
首页 > 其他分享> > 产生纯色图像

产生纯色图像

作者:互联网

产生纯色图像

    UIGraphicsBeginImageContextWithOptions(imagBounds.size, NO, 0);
    [color setFill];
    UIRectFill(imagBounds);
    UIImage *img = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    return img;

posted on 2016-10-11 23:37  花老????  阅读(507)  评论(0)  编辑  收藏

标签:imagBounds,img,产生,color,图像,UIGraphicsBeginImageContextWithOptions,纯色
来源: https://blog.51cto.com/u_15223551/2833894