截取部分视图作为图片,保存图片到相册

来源:互联网 发布:linux迁移mysql数据库 编辑:程序博客网 时间:2024/05/18 14:45
-(UIImage *)getResultImageFrom:(UIImageView *)imageView {    UIGraphicsBeginImageContext(CGSizeMake(imageView.bounds.size.width , imageView.bounds.size.height ));    [imageView.layer renderInContext:UIGraphicsGetCurrentContext()];    UIImage *result =UIGraphicsGetImageFromCurrentImageContext();    UIGraphicsEndImageContext();       return result;}
 UIImageWriteToSavedPhotosAlbum(resultImg, self, @selector(image:didFinishSavingWithError:contextInfo:), NULL);



0 0
原创粉丝点击