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

swift 颜色转为图片

作者: 紫荆逸 | 来源:发表于2017-10-13 10:02 被阅读76次

    /// 将颜色转换为图片
    ///
    /// - Parameter color: UIColor
    /// - Returns: UIImage
    func getImageWithColor(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/lyaayxtx.html