zoukankan      html  css  js  c++  java
  • IOS UIImagePickerController 保存图片到 相册

     // 异步下载图片

            dispatch_queue_t queue =dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT,0);

            dispatch_group_t group =dispatch_group_create();

            dispatch_group_async(group, queue, ^{

                NSData *data = [NSDatadataWithContentsOfURL:[NSURLURLWithString:imageUrl]];

                UIImage *image = [UIImageimageWithData:data];

                    //  保存图片到相册

                    [PDPhotoGraphToolsaveImageToPhotos:image];

            });

     

    @interface PDPhotoGraphTool: NSObject

     

    + (void)saveImageToPhotos:(UIImage *)savedImage;

     

     

    + (void)image: (UIImage *) image didFinishSavingWithError: (NSError *) errorcontextInfo: (void *) contextInfo;

    @end

     

    @implementationPDPhotoGraphTool

     

    +(void)saveImageToPhotos:(UIImage *)savedImage

    {

       

        UIImageWriteToSavedPhotosAlbum(savedImage,self,@selector(image:didFinishSavingWithError:contextInfo:),NULL);

    }

     

    +(void)image:(UIImage *)image didFinishSavingWithError:(NSError *)errorcontextInfo:(void *)contextInfo

    {

        NSString *msg = nil ;

       

        if(error != NULL){

           

            msg = @"保存图片失败" ;

           

        }else{

           

            msg = @"保存图片成功" ;

           

        }

       

        UIAlertView *alert = [[UIAlertViewalloc] initWithTitle:@"保存图片结果提示"

                             

                                                       message:msg

                             

                                                      delegate:self

                             

                                              cancelButtonTitle:@"确定"

                             

                                              otherButtonTitles:nil];

       

        [alert show];

     

    }

    @end

  • 相关阅读:
    angularJS的学习资源,巨全
    JSON语法
    handlerbars入门学习
    js中局部变量和全局变量的易混点
    js中判断一个变量是否为数字类型的疑问
    js中的类型转换方法
    使用sn.exe为程序集签名
    探究Entity Framework如何在多个仓储层实例之间工作单元的实现及原理(2018-05-31、2019-08-16修改部分严重错误代码)
    Fiddler4无法抓取HttpWebRequest本地请求的解决办法
    JS判断时特殊值与boolean类型的转换
  • 原文地址:https://www.cnblogs.com/llios/p/3921912.html
Copyright © 2011-2022 走看看