iphone 保存图片到相册照片库

来源:互联网 发布:推荐书目 知乎 编辑:程序博客网 时间:2024/04/29 02:17

已知图片保存到相册

UIImageWriteToSavedPhotosAlbum([UIImage imageNamed:photoName], self@selector(image:didFinishSavingWithError:contextInfo:), nil);


- (void)image:(UIImage *)image didFinishSavingWithError:(NSError *)error contextInfo:(void *)contextInfo

{

UIAlertView *alert;

    if (error == nil)

{

alert = [[UIAlertView allocinitWithTitle:nil message:@"This picture has been saved to your photo album.Picture Saved!" delegate:nilcancelButtonTitle:@"OK." otherButtonTitles:nil];

[alert show];

[alert release];

}

else

{

alert = [[UIAlertView allocinitWithTitle:nil message:@"Please try it again later.Saving Failed" delegate:nilcancelButtonTitle:@"OK." otherButtonTitles:nil];

[alert show];

[alert release];

}

}


 

保存当前视图:

#import <QuartzCore/QuartzCore.h>

UIGraphicsBeginImageContext(currentView.bounds.size); //currentView当前的view

[currentView.layer renderInContext:UIGraphicsGetCurrentContext()];

UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();

UIGraphicsEndImageContext();

UIImageWriteToSavedPhotosAlbum(viewImage, nilnilnil);