Created
July 28, 2015 14:04
-
-
Save ryanfitz/6d8f17903ae066f8daba to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private func unrotateImage(image : UIImage) -> UIImage { | |
let size = image.size | |
UIGraphicsBeginImageContext(size) | |
image.drawInRect(CGRectMake(0, 0, size.width, size.height)) | |
let newImage = UIGraphicsGetImageFromCurrentImageContext() | |
UIGraphicsEndImageContext() | |
return newImage | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment