前端之家收集整理的这篇文章主要介绍了
swift中代码生成纯色图片,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
使用自定义的颜色生成图片
class func imageWithColor(color:UIColor) -> UIImage
{
let rect = CGRect(x: 0.0,y: 0.0,width: 1.0,height: 1.0)
UIGraphicsBeginImageContext(rect.size)
let context:CGContext = UIGraphicsGetCurrentContext()!
CGContextSetFillColorWithColor(context,color.CGColor);
CGContextFillRect(context,rect);
let image = UIGraphicsGetImageFromCurrentImageContext()
UIGraphicsEndImageContext()
return image
}
原文链接:https://www.f2er.com/swift/321606.html