有没有办法在iOS中获取图像文件的元数据?

时间:2013-01-12 10:27:09

标签: ios objective-c image uiimage metadata

  

可能重复:
  Access metadata (exif tags) of image taken by UIImagePickerController - iOS/iPhone
  How to get image metadata in ios

我在iOS应用程序本地文件夹中有一些图像文件。 我怎样才能获得它的元数据?

2 个答案:

答案 0 :(得分:5)

您可以使用像QA1654中所述的ImageIO框架:

  

要访问图像属性,请执行以下操作:

     
      
  1. 为您的图片创建一个CGImageSourceRef。
  2.   
  3. 通过调用CGImageSourceCopyPropertiesAtIndex获取图像属性字典的副本。
  4.   
  5. 通过使用您感兴趣的属性键调用CFDictionaryGetValue来访问字典中的值。可用键   位于CGImageProperties Reference。
  6.   

答案 1 :(得分:2)