我有一个自定义的UI组件,该组件可生成一个圆球的图像,并在其顶部叠加一些标签。
我正在使用下面在StackOverflow上找到的UIView
扩展名对该组件进行快照。
我要获取生成的UIImage
,并在CAEmitterCell
中使用它。
我的问题是快照图像是正方形的-我在白色背景上的圆形球。我希望背景清晰可见,但似乎找不到解决方法。
有什么方法可以修改UIImage
以使其角落透明吗?
谢谢。
extension UIView {
/// Create snapshot
///
/// - parameter rect: The `CGRect` of the portion of the view to return. If `nil` (or omitted),
/// return snapshot of the whole view.
///
/// - returns: Returns `UIImage` of the specified portion of the view.
func snapshot(of rect: CGRect? = nil) -> UIImage? {
// snapshot entire view
UIGraphicsBeginImageContextWithOptions(bounds.size, isOpaque, 0)
drawHierarchy(in: bounds, afterScreenUpdates: true)
let wholeImage = UIGraphicsGetImageFromCurrentImageContext()
UIGraphicsEndImageContext()
// if no `rect` provided, return image of whole view
guard let image = wholeImage, let rect = rect else { return wholeImage }
// otherwise, grab specified `rect` of image
let scale = image.scale
let scaledRect = CGRect(x: rect.origin.x * scale, y: rect.origin.y * scale, width: rect.size.width * scale, height: rect.size.height * scale)
guard let cgImage = image.cgImage?.cropping(to: scaledRect) else { return nil }
return UIImage(cgImage: cgImage, scale: scale, orientation: .up)
}
}
答案 0 :(得分:0)
在弄清楚如何在这里说出我的问题后,我想到了另一种搜索答案的方法,并找到了解决方案。
有人发布了扩展程序,使白色背景透明,作为对上一个问题的答案。白色对我不起作用,但是简单的编辑和更改名称后,扩展名就可以在黑色背景下代替白色。
extension UIImage {
func imageByMakingBlackBackgroundTransparent() -> UIImage? {
let image = UIImage(data: UIImageJPEGRepresentation(self, 1.0)!)!
let rawImageRef: CGImage = image.cgImage!
let colorMasking: [CGFloat] = [0, 0, 0, 0, 0, 0]
UIGraphicsBeginImageContext(image.size);
let maskedImageRef = rawImageRef.copy(maskingColorComponents: colorMasking)
UIGraphicsGetCurrentContext()?.translateBy(x: 0.0,y: image.size.height)
UIGraphicsGetCurrentContext()?.scaleBy(x: 1.0, y: -1.0)
UIGraphicsGetCurrentContext()?.draw(maskedImageRef!, in: CGRect.init(x: 0, y: 0, width: image.size.width, height: image.size.height))
let result = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return result
}
}
我的图像原本是在白色背景上,但图像的重要部分也有白色。我暂时将背景更改为黑色,拍摄了快照,然后将黑色转换为透明,然后将背景更改为白色。
最终结果是我的问题已解决。 感谢任何花时间阅读或思考此问题的人。