Skip to content

Instantly share code, notes, and snippets.

@bigsan
Created April 2, 2019 15:44
Show Gist options
  • Save bigsan/a9155948cfbb384a2a6240ca597163bf to your computer and use it in GitHub Desktop.
Save bigsan/a9155948cfbb384a2a6240ca597163bf to your computer and use it in GitHub Desktop.
UIImage extension that creates a UIImage from a UIView
extension UIImage {
// UIImage extension that creates a UIImage from a UIView
convenience init (view:UIView) {
UIGraphicsBeginImageContext(view.frame.size)
view.layer.render(in: UIGraphicsGetCurrentContext()!)
let image = UIGraphicsGetImageFromCurrentImageContext()
UIGraphicsEndImageContext()
self.init(cgImage: image!.cgImage!)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment