我需要以编程方式更改gif的颜色。原始的gif在透明背景上是白色的,我希望通过代码改变颜色。
我已在this thread中尝试了答案,但这会导致gif在第一帧上冻结。这是我正在使用的一些代码。
class MyViewController: UIViewController {
@IBOutlet weak var myImageView: UIImageView?
override func viewDidLoad() {
myImageView?.image = UIImage.gif(name: "my_gif")
myImageView?.image = myImageView?.image?.maskWithColor(color: UIColor.red)
// This creates a red, but still version of the gif
}
}
extension UIImage {
func maskWithColor(color: UIColor) -> UIImage? {
let maskImage = cgImage!
let width = size.width
let height = size.height
let bounds = CGRect(x: 0, y: 0, width: width, height: height)
let colorSpace = CGColorSpaceCreateDeviceRGB()
let bitmapInfo = CGBitmapInfo(rawValue: CGImageAlphaInfo.premultipliedLast.rawValue)
let context = CGContext(data: nil, width: Int(width), height: Int(height), bitsPerComponent: 8, bytesPerRow: 0, space: colorSpace, bitmapInfo: bitmapInfo.rawValue)!
context.clip(to: bounds, mask: maskImage)
context.setFillColor(color.cgColor)
context.fill(bounds)
if let cgImage = context.makeImage() {
let coloredImage = UIImage(cgImage: cgImage)
return coloredImage
} else {
return nil
}
}
}
我目前正在为我需要的每种颜色使用不同的gif文件作为解决方法,但这听起来非常低效。有什么想法吗?
提前致谢!
答案 0 :(得分:0)
您可以创建UIView
并设置其背景颜色。然后,您可以将视图的alpha值设置为0.5,并将视图放在图像视图上。
像这样:
let overlayView = UIView()
overlayView.frame = myImageView.frame
overlayView.backgroundColor = .red
overlayView.alpha = 0.5
view.addSubview(overlayView)
这样你就不会弄乱现有的图像视图。
希望这有帮助。