Skip to content

Instantly share code, notes, and snippets.

@tsuzukihashi
Created December 8, 2021 01:30
Show Gist options
  • Save tsuzukihashi/167ad67500ee940acf5d01317ce7ca5b to your computer and use it in GitHub Desktop.
Save tsuzukihashi/167ad67500ee940acf5d01317ce7ca5b to your computer and use it in GitHub Desktop.
UIViewをUIImageに変換するExtension
import UIKit
extension UIView {
var uiImage: UIImage {
let imageRenderer = UIGraphicsImageRenderer.init(size: bounds.size)
return imageRenderer.image { context in
layer.render(in: context.cgContext)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment