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?
Try to fetch assets like this