首页 > 系统 > iOS > 正文

iOS中将颜色转为图片

2019-11-09 17:36:19
字体:
来源:转载
供稿:网友

- (UIImage*) createImageWithColor: (UIColor*) color

{

    CGRect rect=CGRectMake(0.0f,0.0f, 1.0f,1.0f);

    UIGraphicsBeginImageContext(rect.size);

    CGContextRef context =UIGraphicsGetCurrentContext();

    CGContextSetFillColorWithColor(context, [colorCGColor]);

    CGContextFillRect(context, rect);

    UIImage *theImage =UIGraphicsGetImageFromCurrentImageContext();

    UIGraphicsEndImageContext();

    return theImage;

}


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表