iOS 8 PhotoKit. Get maximum-size image from iCloud Photo Sharing albums

前端 未结 4 1939
陌清茗
陌清茗 2020-12-13 11:04

How get access to the full-size images from iСloud? Every time I try to get this picture, I get image size 256x342. I not see progress too.

Code:

           


        
4条回答
  •  眼角桃花
    2020-12-13 11:33

    I think the below should get the full resolution image data:

     [manager requestImageDataForAsset:asset 
                               options:options 
                         resultHandler:^(NSData *imageData, NSString *dataUTI, UIImageOrientation orientation, NSDictionary *info) 
                 { 
                      UIImage *image = [UIImage imageWithData:imageData]; 
    
                      //...
    
                 }];
    

    The entire Photos Framework (PhotoKit) is covered in the WWDC video: https://developer.apple.com/videos/wwdc/2014/#511

    Hope this helps.

    Edit:

    The resultHandler can be called twice. This is explained in the video I linked to at around 30:00. Could be that you are only getting the thumbnail and the full image will come with the second time its called.

提交回复
热议问题