Skip to content

Instantly share code, notes, and snippets.

View silvinaroldan's full-sized avatar
🏳️‍🌈

Silvina Roldan silvinaroldan

🏳️‍🌈
View GitHub Profile
@gregpardo
gregpardo / UIImage+CropTransparent.swift
Last active November 3, 2024 16:24
Swift Image Crop Out Transparent Pixels (Swift 2.0)
extension UIImage {
func imageByCroppingTransparentPixels() -> UIImage {
let rect = self.cropRectForImage()
return cropImage(toRect: rect)
}
func cropRectForImage(image:UIImage) -> CGRect {
let imageAsCGImage = image.CGImage
let context:CGContextRef? = self.createARGBBitmapContext(imageAsCGImage!)