Tarafından görüntüye UIView dönüştürün drawViewHierarchyInRect: afterScreenUpdates: hangi birçok kat daha hızlı renderInContext daha
Önemli not: bu işlevi viewDidLoad veya viewWillAppear'dan çağırmayın , tam olarak görüntülendikten / yüklendikten sonra bir görünümü yakaladığınızdan emin olun
Obj C
UIGraphicsBeginImageContextWithOptions(myView.bounds.size, myView.opaque, 0.0f);
[myView drawViewHierarchyInRect:myView.bounds afterScreenUpdates:NO];
UIImage *snapshotImageFromMyView = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
myImageView.image = snapshotImageFromMyView;
Düzenlenen görüntü Fotoğraf albümünü kaydedin
UIImageWriteToSavedPhotosAlbum(snapshotImageFromMyView, nil,nil, nil);
Swift 3/4
UIGraphicsBeginImageContextWithOptions(myView.bounds.size, myView.isOpaque, 0.0)
myView.drawHierarchy(in: myView.bounds, afterScreenUpdates: false)
let snapshotImageFromMyView = UIGraphicsGetImageFromCurrentImageContext()
UIGraphicsEndImageContext()
print(snapshotImageFromMyView)
myImageView.image = snapshotImageFromMyView
Uzantı, iOS11, swift3 / 4 ile süper kolay genelleme
extension UIImage{
convenience init(view: UIView) {
UIGraphicsBeginImageContextWithOptions(view.bounds.size, view.isOpaque, 0.0)
view.drawHierarchy(in: view.bounds, afterScreenUpdates: false)
let image = UIGraphicsGetImageFromCurrentImageContext()
UIGraphicsEndImageContext()
self.init(cgImage: (image?.cgImage)!)
}
}
Use :
imgVV.image = UIImage.init(view: myView)
let img = UIImage.init(view: myView)