可能重复:
Access metadata (exif tags) of image taken by UIImagePickerController - iOS/iPhone
How to get image metadata in ios
我在iOS应用程序本地文件夹中有一些图像文件。 我怎样才能获得它的元数据?
答案 0 :(得分:5)
您可以使用像QA1654中所述的ImageIO框架:
要访问图像属性,请执行以下操作:
- 为您的图片创建一个CGImageSourceRef。
- 通过调用CGImageSourceCopyPropertiesAtIndex获取图像属性字典的副本。
- 通过使用您感兴趣的属性键调用CFDictionaryGetValue来访问字典中的值。可用键 位于CGImageProperties Reference。
醇>
答案 1 :(得分:2)