如何将一些图像作为一个图像保存到swift中的照片库?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何将一些图像作为一个图像保存到swift中的照片库?相关的知识,希望对你有一定的参考价值。
答案
试试这个,传入包含你需要的所有子视图的基本视图:
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!
}
以上是关于如何将一些图像作为一个图像保存到swift中的照片库?的主要内容,如果未能解决你的问题,请参考以下文章