如何从照片库iphone获取照片信息?

时间:2011-11-08 16:00:56

标签: iphone photo

是否可以在照片库中获取完整的照片信息,例如保存照片的日期和时间。我发现我们可以使用断言库从照片库中获取所有照片是否有任何课程可以获得照片完整信息。

1 个答案:

答案 0 :(得分:0)

您需要使用Assets库和UIImagePickerController。我会把一些代码作为采样器。

NSMutableDictionary *imageMetadata = nil;
NSURL *assetURL = [info objectForKey:UIImagePickerControllerReferenceURL];

ALAssetsLibrary *library = [[ALAssetsLibrary alloc] init];
[library assetForURL:assetURL
    resultBlock:^(ALAsset *asset)  {
        NSDictionary *metadata = asset.defaultRepresentation.metadata;
        imageMetadata          = [[NSMutableDictionary alloc] initWithDictionary:metadata];
        [self addEntriesFromDictionary:metadata];
    }
    failureBlock:^(NSError *error) {
    }];
[library autorelease];