码迷,mamicode.com
首页 > 其他好文 > 详细

图片存储

时间:2014-11-20 11:49:39      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:io   ar   os   sp   for   on   bs   as   c   

NSData *imageData;

        if (UIImagePNGRepresentation(imageToSave) == nil) {

            imageData = UIImageJPEGRepresentation(imageToSave, 1);

        } else {

            imageData = UIImagePNGRepresentation(imageToSave);

        }

        NSString *documentPath = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)[0];

        NSString *filePath = [documentPath stringByAppendingPathComponent:@"a.png"];

        [imageData writeToFile:filePath atomically:YES];

图片存储

标签:io   ar   os   sp   for   on   bs   as   c   

原文地址:http://www.cnblogs.com/yangmx/p/4110109.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!