美文网首页
根据颜色生成图片--swift版本

根据颜色生成图片--swift版本

作者: 不言弃zxf | 来源:发表于2020-03-11 10:41 被阅读0次

    // 根据颜色生成图片

    func getImageWith(_ color: UIColor?, andHeight height: CGFloat) -> UIImage? {

        let r = CGRect(x: 0.0, y: 0.0, width: 1.0, height: height)

        UIGraphicsBeginImageContext(r.size)

        let context = UIGraphicsGetCurrentContext()

        context?.setFillColor(color!.cgColor)

        context?.fill(r)

        let img: UIImage? = UIGraphicsGetImageFromCurrentImageContext()

        UIGraphicsEndImageContext()

        return img

    }

    相关文章

      网友评论

          本文标题:根据颜色生成图片--swift版本

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