Skip to content

Instantly share code, notes, and snippets.

@akio0911
Created June 17, 2009 16:49
Show Gist options
  • Save akio0911/131348 to your computer and use it in GitHub Desktop.
Save akio0911/131348 to your computer and use it in GitHub Desktop.
#import <QuartzCore/QuartzCore.h>
- (UIImage*) buildImageFrom: (UIView*)view {
UIGraphicsBeginImageContext(view .bounds.size);
[view.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage* viewImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return viewImage;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment