从库中连接元数据与UIImage

时间:2014-03-20 14:03:49

标签: ios uiimage metadata alasset

我从库中获取图像作为ALAsset。我得到这样的原始图像:

ALAssetRepresentation *rep = [asset defaultRepresentation];
CGImageRef iref = [rep fullResolutionImage];
UIImage *im = [UIImage imageWithCGImage:iref];
data4 = UIImageJPEGRepresentation(im, 0.5);

我也可以像这样获取元数据:

NSDictionary *data = [rep metadata];

这绝对没问题,但是当我想将图片上传到服务器时。但是,当我这样做时,图片上传时没有元数据。有没有办法如何将它作为一个整体发送?

1 个答案:

答案 0 :(得分:0)

我认为您要求ALAsset,将照片发送到包含其exif数据的网络服务:请参阅ALAsset , send a photo to a web service including its exif data