I\'m looking at replacing ALAssetsLibrary with Photos framework in my app.
I can retrieve photos, collections, and asset sources just fine (even write t
Better solution i found and worked well for me is:
[[PHImageManager defaultManager] requestImageDataForAsset:photoAsset
options:reqOptions
resultHandler:
^(NSData *imageData, NSString *dataUTI, UIImageOrientation orientation, NSDictionary *info) {
CIImage* ciImage = [CIImage imageWithData:imageData];
DLog(@"Metadata : %@", ciImage.properties);
}];