swift 如何将几张图片作为一张图片保存到照片库?
How to save a couple of images as one image to photo library in swift?
第一个视图控制器中有三个 imageView(两个甜甜圈 png 和一个辛普森图像)。是否有任何解决方案可以将这些图像捕获为一张图像并将其保存到照片库?谢谢
试试这个,传入包含您需要的所有子视图的基础视图:
func createImage(from aView:UIView) -> UIImage {
UIGraphicsBeginImageContextWithOptions(CGSize(width: aView.frame.width, height: aView.frame.height), true, 0)
aView.layer.render(in: UIGraphicsGetCurrentContext()!)
let image = UIGraphicsGetImageFromCurrentImageContext()
UIGraphicsEndImageContext()
return image!
}
第一个视图控制器中有三个 imageView(两个甜甜圈 png 和一个辛普森图像)。是否有任何解决方案可以将这些图像捕获为一张图像并将其保存到照片库?谢谢
试试这个,传入包含您需要的所有子视图的基础视图:
func createImage(from aView:UIView) -> UIImage {
UIGraphicsBeginImageContextWithOptions(CGSize(width: aView.frame.width, height: aView.frame.height), true, 0)
aView.layer.render(in: UIGraphicsGetCurrentContext()!)
let image = UIGraphicsGetImageFromCurrentImageContext()
UIGraphicsEndImageContext()
return image!
}