美文网首页iOS Developer
Swift颜色生成纯色图片

Swift颜色生成纯色图片

作者: Zhui_Do | 来源:发表于2017-03-30 18:25 被阅读528次
 func creatImageWithColor(color:UIColor)->UIImage{
        let rect = CGRect(x:0,y:0,width:1,height:1)
        UIGraphicsBeginImageContext(rect.size)
        let context = UIGraphicsGetCurrentContext()
        context?.setFillColor(color.cgColor)
        context!.fill(rect)
        let image = UIGraphicsGetImageFromCurrentImageContext()
        UIGraphicsEndImageContext()
        return image!
    }

相关文章

网友评论

    本文标题:Swift颜色生成纯色图片

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