博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
利用UIImagePickerController或者利用UIKit的 UIGraphicsBeginImageContext保存图片
阅读量:4958 次
发布时间:2019-06-12

本文共 1751 字,大约阅读时间需要 5 分钟。

转载自:http://my.oschina.net/hmj/blog/99970

    
应用中有时我们会有保存图片的需求,如利用UIImagePickerController用IOS设备内置的相机拍照,或是有时我们在应用程序中利用UIKit的 UIGraphicsBeginImageContext,UIGraphicsEndImageContext,UIGraphicsGetImageFromCurrentImageContext方法创建一张图像需要进行保存。 IOS的UIKit Framework提供了UIImageWriteToSavedPhotosAlbum方法对图像进行保存,该方法会将image保存至用户的相册中,描述如下:

void UIImageWriteToSavedPhotosAlbum (   UIImage  *image,   id       completionTarget,   SEL      completionSelector,   void     *contextInfo);

 

参数说明:
        image
            带保存的图片UImage对象
        completionTarget
            图像保存至相册后调用completionTarget指定的selector(可选)
        completionSelector
                completionTarget的方法对应的选择器,相当于回调方法,需满足以下格式
    

- (void) image: (UIImage *) imagedidFinishSavingWithError: (NSError *) error             contextInfo: (void *) contextInfo;

 

         contextInfo指定了在回调中可选择传入的数据。
当我们需要异步获得图像保存结果的消息时,我们需要指定completionTarget对象以及其completionSelector对应的选择器。示例如下:

- (void)saveImageToPhotos:(UIImage*)savedImage{    UIImageWriteToSavedPhotosAlbum(image, self, @selector(image:didFinishSavingWithError:contextInfo:), NULL);}// 指定回调方法- (void)image: (UIImage *) image didFinishSavingWithError: (NSError *) error contextInfo: (void *) contextInfo{      NSString *msg = nil ;      if(error != NULL){        msg = @"保存图片失败" ;    }else{        msg = @"保存图片成功" ;    }    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"保存图片结果提示"                                                        message:msg                                                       delegate:self                                              cancelButtonTitle:@"确定"                                              otherButtonTitles:nil];    [alert show];} // 调用示例UIImage *savedImage = [UIImage imageNamed:"savedImage.png"]; [self saveImageToPhotos:savedImage];

 

转载于:https://www.cnblogs.com/allanliu/p/4166437.html

你可能感兴趣的文章
Entity Framework Code First执行SQL语句、视图及存储过程
查看>>
【代码笔记】iOS-iOS的目录
查看>>
【代码笔记】iOS-plist获得城市列表
查看>>
c++ int和string的互相转换
查看>>
批量修改单据设置参数
查看>>
python 冒泡排序
查看>>
jquery 首页轮播插件 icarouselbox.js
查看>>
正则表达式中^的用法
查看>>
关于B/S模式CGI上传文件,遇到的问题归纳(待更新。。。)
查看>>
Eclipse CDT常用插件推荐
查看>>
LintCode Python 简单级题目 174.删除链表中倒数第n个节点
查看>>
windows phone 7---8 Belling's课堂(十五) 程序等待页面的处理
查看>>
[Tizen]如何在sdb shell中启动一个app
查看>>
用css定义ul位置
查看>>
Java8用法总结
查看>>
DataTable源码分析(二)
查看>>
使用Quartz.Net同时执行多个任务
查看>>
JS权威指南笔记之数据类型
查看>>
【整理】hash算法原理及常见函数
查看>>
class9_Menubar 菜单
查看>>