Skip to content

Instantly share code, notes, and snippets.

@xuyunan
Created June 7, 2013 06:02
Show Gist options
  • Save xuyunan/5727319 to your computer and use it in GitHub Desktop.
Save xuyunan/5727319 to your computer and use it in GitHub Desktop.
截屏
// 截全屏
- (UIImage *)imageWithScreenContents
{
UIGraphicsBeginImageContext(SCREEN_SIZE);
UIImage *aImage =UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return aImage;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment