美文网首页
颜色转换为图片

颜色转换为图片

作者: JohnayXiao | 来源:发表于2018-04-28 17:13 被阅读3次
    #pragma mark 颜色转换为图片
    
    + (UIImage*)createImageWithColor:(UIColor*)color{
    
    CGRectrect=CGRectMake(0.0f,0.0f,1.0f,1.0f);UIGraphicsBeginImageContext(rect.size);
    
    CGContextRefcontext=UIGraphicsGetCurrentContext();CGContextSetFillColorWithColor(context, [colorCGColor]);
    
    CGContextFillRect(context, rect);
    
    UIImage*theImage=UIGraphicsGetImageFromCurrentImageContext();UIGraphicsEndImageContext();returntheImage;
    
    }
    

    相关文章

      网友评论

          本文标题:颜色转换为图片

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