Created
May 31, 2011 20:08
-
-
Save yanks/1001165 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
- (UIImage*)upsideDownBunny { | |
UIImage *img = [UIImage imageNamed:"@bunny.png"]; | |
CGSize imgSize = [img size]; | |
UIGraphicsBeginImageContext(imgSize); | |
CGContextRef context = UIGraphicsGetCurrentContext(); | |
CGContextRotateCTM(context, M_PI); | |
CGContextTranslateCTM(context, -imgSize.width, -imgSize.height); | |
[img drawInRect:CGRectMake(0, 0, imgSize.width, imgSize.height)]; | |
UIImage *newImage = UIGraphicsGetImageFromCurrentImageContext(); | |
UIGraphicsEndImageContext(); | |
return newImage; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment