5

在 iOS 4.2 上,当我使用 UIImagePickerController 让用户从照片库中选择图像时,这些是返回给我的字典键:

2011-03-02 13:15:59.518 xxx[15098:307] didFinishPickingMediaWithInfo: 
  info dictionary: {
    UIImagePickerControllerMediaType = "public.image";
    UIImagePickerControllerOriginalImage = "<UIImage: 0x3405d0>";
    UIImagePickerControllerReferenceURL = 
      "assets-library://asset/asset.JPG?id=1000000050&ext=JPG";
}

使用这些键中的一个或多个,我如何获得包含图像元数据(例如曝光信息和 GPS 位置数据)的 JPEG 表示,以便我可以将其上传到某处并包含元数据(未剥离)?

我从 Warren Burton 在从 iPhone 中从 ALAsset 检索的 URL 中显示图像中的非常好的答案中看到?如何使用 UIImagePickerControllerReferenceURL 和 ALAssetsLibrary assetForURL 方法来获取 ALAsset 和 ALAssetRepresentation。但是我该怎么做才能获得包含所有元数据的JPEG?

或者有没有通过 UIImage 的机制?

这里的底线是我想获得包含元数据的 JPEG ......

4

1 回答 1

7

自从我提出这个问题以来,我做了更多的实验,并认为我现在知道了答案。所有结果都是在 iOS 4.2 上获得的,这就是我所关心的......

首先,我们使用的是UIImageJPEGRepresentationala:

NSData *imageData = UIImageJPEGRepresentation(self.selectedImage, 0.9);

这似乎没有给你(大部分)图像中的元数据(EXIF、GPS 等)。很公平,我认为这是众所周知的。

我的测试表明,图像资产的“默认表示”中的 JPEG 将包含所有元数据,包括 EXIF 和 GPS 信息(假设它首先存在)。您可以通过从资产 URL 到资产到资产的默认表示 (ALAssetRepresentation) 获取该图像,然后使用 getBytes 方法/消息检索 JPEG 图像的字节。该字节流中包含上述元数据。

这是我用于此的一些示例代码。它需要一个资产 URL,假定用于图像,并返回带有 JPEG 的 NSData。关于您的使用、代码中的错误处理等方面的警告购买者。

/*
 * Example invocation assuming that info is the dictionary returned by 
 * didFinishPickingMediaWithInfo (see original SO question where
 * UIImagePickerControllerReferenceURL = "assets-library://asset/asset.JPG?id=1000000050&ext=JPG").
 */
[self getJPEGFromAssetForURL:[info objectForKey:UIImagePickerControllerReferenceURL]];
// ...

/* 
 * Take Asset URL and set imageJPEG property to NSData containing the
 * associated JPEG, including the metadata we're after.
 */
-(void)getJPEGFromAssetForURL:(NSURL *)url {
    ALAssetsLibrary* assetslibrary = [[ALAssetsLibrary alloc] init];
    [assetslibrary assetForURL:url
        resultBlock: ^(ALAsset *myasset) {
            ALAssetRepresentation *rep = [myasset defaultRepresentation];
#if DEBUG
            NSLog(@"getJPEGFromAssetForURL: default asset representation for %@: uti: %@ size: %lld url: %@ orientation: %d scale: %f metadata: %@", 
            url, [rep UTI], [rep size], [rep url], [rep orientation], 
            [rep scale], [rep metadata]);
#endif

            Byte *buf = malloc([rep size]);  // will be freed automatically when associated NSData is deallocated
            NSError *err = nil;
            NSUInteger bytes = [rep getBytes:buf fromOffset:0LL 
                                length:[rep size] error:&err];
            if (err || bytes == 0) {
                // Are err and bytes == 0 redundant? Doc says 0 return means 
                // error occurred which presumably means NSError is returned.

                NSLog(@"error from getBytes: %@", err);
                self.imageJPEG = nil;
                return;
            } 
            self.imageJPEG = [NSData dataWithBytesNoCopy:buf length:[rep size] 
                                     freeWhenDone:YES];  // YES means free malloc'ed buf that backs this when deallocated
        }
        failureBlock: ^(NSError *err) {
            NSLog(@"can't get asset %@: %@", url, err);
        }];
    [assetslibrary release];
}
于 2011-03-04T08:21:36.550 回答