美文网首页
根据颜色生成纯色图片

根据颜色生成纯色图片

作者: liuweilyy | 来源:发表于2017-07-24 16:13 被阅读0次

    有时候需要一张纯颜色的背景图片就不需要找美工切图,直接自己生成:
    创建UIImage的类别:

    /**根据颜色生成图片*/
    +(UIImage *)createImageWithColor:(UIColor *)color;
    
    +(UIImage *)createImageWithColor:(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/mmmbkxtx.html