我有一个不透明图像和一个不透明蒙版图像。使用
MetalPetal
和它 MTIBlendWithMaskFilter
我可以创建一个输出图像,它正确地掩盖了输入图像,但在黑色背景下是不透明的。
我希望输出图像具有 Alpha 通道,例如,用透明像素代替黑色像素。
func mt_blend(image: UIImage, with mask: UIImage) -> UIImage {
let ciMaskImage = CIImage(cgImage: mask.cgImage!)
let mtiMaskImage = MTIImage(ciImage: ciMaskImage, isOpaque: true)
let mtiMask = MTIMask(content: mtiMaskImage)
let ciImage = CIImage(cgImage: image.cgImage!)
let mtiImage = MTIImage(ciImage: ciImage, isOpaque: true)
let contextOptions = MTIContextOptions()
let context = try! MTIContext(device: MTLCreateSystemDefaultDevice()!, options: contextOptions)
let blendFilter = MTIBlendWithMaskFilter()
blendFilter.inputMask = mtiMask
blendFilter.inputBackgroundImage = mtiMaskImage
blendFilter.inputImage = mtiImage
let outputImage = try! context.makeCGImage(from: blendFilter.outputImage!)
return UIImage(cgImage: outputImage)
}
看来我对 premultiplyingAlpha 的误解或误用就是这里的问题。
输入图片:
遮罩图像:
输出图像:
您将混合滤镜的backgroundImage设置为遮罩不透明的图像。要获得透明背景,请将背景图像设置为透明颜色。
blendFilter.inputBackgroundImage = MTIImage.init(color: MTIColor.clear, sRGB: false, size: mtiImage.size)
MTIBlendWithMaskFilter
的输出图像尺寸将等于 inputBackgroundImage
的尺寸。根据您的需要设置尺寸。
拯救了我的一天!感谢您的解决方案。