Skip to content

Instantly share code, notes, and snippets.

@zhangwc
Created August 30, 2013 08:26
Show Gist options
  • Save zhangwc/6387561 to your computer and use it in GitHub Desktop.
Save zhangwc/6387561 to your computer and use it in GitHub Desktop.
- (void)savePicturefromurl:(NSString *)url path:(NSString *)path imgName:(NSString *)imgName
{
UIImage *img=[UIImage imageWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:url]]];
if(path==nil)
{
path = [[[NSBundle mainBundle] bundlePath] stringByAppendingPathComponent:imgName];
}
[UIImagePNGRepresentation(image) writeToFile:path atomically:YES];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment