Skip to content

Instantly share code, notes, and snippets.

@Bayonetta
Created August 26, 2014 07:23
Show Gist options
  • Save Bayonetta/9b94da3c16f3891dd5f3 to your computer and use it in GitHub Desktop.
Save Bayonetta/9b94da3c16f3891dd5f3 to your computer and use it in GitHub Desktop.
converter view to image
- (UIImage *)imageFromView:(UIView *)view {
UIGraphicsBeginImageContextWithOptions(view.bounds.size, YES, 0.0);
[view drawViewHierarchyInRect:view.bounds afterScreenUpdates:NO];
UIImage * img = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return img;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment