Saving and loading images using ALAssetLibrary

891 Views Asked by At

I am posting this question as a continuation of following topic I posted earlier.

I am capturing image and video in my ios application and saving it to camera roll (client requirement). However, to view the captured images/video I am saving the assetURL in core data as String.

My saving code is as follows:

- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info {

   UIImage *cameraMedia = [info  objectForKey:UIImagePickerControllerOriginalImage ];
   NSDictionary* metaData = [info objectForKey:UIImagePickerControllerMediaMetadata];

   NSString* mediaType = [info objectForKey: UIImagePickerControllerMediaType];
   NSURL* mediaUrl = (NSURL*)[info valueForKey:UIImagePickerControllerMediaURL];

   ALAssetsLibrary *al = [[ALAssetsLibrary alloc] init];

   //For now we are saving image capture time from here
   //In future we may need to load the time from image metaData
   NSDate *captureTime = [[NSDate alloc] init];

   //completion blocks
   ALAssetsLibraryWriteImageCompletionBlock imageCompletionBlock = ^(NSURL* imgURL, NSError* error){
    if (error == nil) {
        NSLog(@"Asset URL %@", imgURL);
        [self saveEvidence:imgURL mediaType:mediaType withDate:captureTime];

       } else {
           UIAlertView *alertView =
        [[UIAlertView alloc] initWithTitle:@"Failed to save image to device!"
                                   message:[error localizedDescription]
                                  delegate:self
                         cancelButtonTitle:@"OK"
                         otherButtonTitles:Nil];
        [alertView show];
    }

};

ALAssetsLibraryWriteVideoCompletionBlock videoCompletionBlock = ^(NSURL* videoURL, NSError* error){
    if(error == nil)
    {
        NSLog(@"Asset URL %@", videoURL);
        [self saveEvidence:videoURL mediaType:mediaType withDate:captureTime];
    }else
    {
        UIAlertView *alertView =
        [[UIAlertView alloc] initWithTitle:@"Failed to save video to device!"
                                   message:[error localizedDescription]
                                  delegate:self
                         cancelButtonTitle:@"OK"
                         otherButtonTitles:Nil];
        [alertView show];
    }

};


    if(CFStringCompare ((CFStringRef) mediaType, kUTTypeImage, 0) == kCFCompareEqualTo){
        [al writeImageToSavedPhotosAlbum:[cameraMedia CGImage] metadata:metaData completionBlock: imageCompletionBlock];

    }else if(CFStringCompare ((CFStringRef) mediaType, kUTTypeMovie , 0) == kCFCompareEqualTo){
        [al writeVideoAtPathToSavedPhotosAlbum:mediaUrl completionBlock:videoCompletionBlock];

   }

       [self dismissViewControllerAnimated:YES completion:nil];
  }

In the saveEvidence, I am saving the URL to my core data entity. Now I am loading my image as follows:

-(void)loadThumbNail:(NSString*) mediaURL{

NSLog(@"image URL String: %@", mediaURL);

ALAssetsLibraryAssetForURLResultBlock resultblock = ^(ALAsset *asset)
{
    NSLog(@"in result block");
    //self.thumbNailImage = [UIImage imageWithCGImage:[asset thumbnail]];

    ALAssetRepresentation *rep = [asset defaultRepresentation];
    CGImageRef iref = [rep fullResolutionImage];
    if (iref) {
        self.thumbNailImage = [UIImage imageWithCGImage:iref];
    }
};

//
ALAssetsLibraryAccessFailureBlock failureblock  = ^(NSError *error)
{
    NSLog(@"Cant load image - %@",[error localizedDescription]);
};

if(mediaURL && [mediaURL length])
{
    self.thumbNailImage = nil;

    NSURL *asseturl = [NSURL URLWithString:mediaURL];
    NSLog(@"image URL: %@", asseturl);

    ALAssetsLibrary* assetslibrary = [[ALAssetsLibrary alloc] init];

    [assetslibrary assetForURL:asseturl
                   resultBlock:resultblock
                  failureBlock:failureblock];
   }

}

Initially I tried to load thumbnail image using: self.thumbNailImage = [UIImage imageWithCGImage:[asset thumbnail]]; But the image remain nil, that is not loading. Then I tried loading the fullResolutionImage. Still, the image is nil.

Any solution?

1

There are 1 best solutions below

2
On

Try to fetch assets like this

ALAssetsLibrary *library = [[ALAssetsLibrary alloc] init];
[library enumerateGroupsWithTypes:ALAssetsGroupSavedPhotos usingBlock:^(ALAssetsGroup *group, BOOL *stop) {
 [group enumerateAssetsUsingBlock:^(ALAsset *alAsset, NSUInteger index, BOOL *innerStop)
  {
      if (alAsset)
      {
          ALAssetRepresentation *representation =[alAsset defaultRepresentation];
          NSURL *url = [representation url];

          if([url isEqualToString:YOUR_SAVED_URL])
           {
            NSString *assetType=[alAsset valueForProperty:ALAssetPropertyType];
            UIImage *thumbNailImage=[UIImage imageWithCGImage:alAsset.thumbnail];
           }
      }
  }];
 if(group==nil)
 {
     // do what ever if group getting null
 }
} failureBlock: ^(NSError *error)
{
 // may be photo privacy setting disabled
}
];