把颜色转化成图片-swift

前端之家收集整理的这篇文章主要介绍了把颜色转化成图片-swift前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

swift 如何把 颜色直接换换成图片

func creatImageWithColor(color:UIColor)->UIImage{
        let rect = CGRectMake(0.0,0.0,1.0,1.0)
        UIGraphicsBeginImageContext(rect.size)
        let context = UIGraphicsGetCurrentContext()
        CGContextSetFillColorWithColor(context,color.CGColor)
        CGContextFillRect(context,rect)
        let image = UIGraphicsGetImageFromCurrentImageContext()
        UIGraphicsEndImageContext()
        return image
    }
原文链接:https://www.f2er.com/swift/325520.html

猜你在找的Swift相关文章