Skip to content

Instantly share code, notes, and snippets.

@helbertgs
Last active November 9, 2018 00:01
Show Gist options
  • Save helbertgs/304289b40f5f699e6dfe542a5d333253 to your computer and use it in GitHub Desktop.
Save helbertgs/304289b40f5f699e6dfe542a5d333253 to your computer and use it in GitHub Desktop.
Crop a UIImage
extension UIImage {
func crop(rect: CGRect) -> UIImage? {
if let image = self.cgImage, let cropped: CGImage = image.cropping(to: rect) {
return UIImage(cgImage: cropped)
}
return nil
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment