从 Cocoa 中的图像中读取 EXIF/IPTC 信息
我无法找到任何有关如何从 Cocoa 中的图像读取 EXIF/IPTC 信息的最新示例。有什么可以轻松完成的事情,或者我应该使用外部工具如 exiftool 并使用 NSTask 启动它?
谢谢 !
I am unable to find any recent example on how to read EXIF/IPTC information from an image in Cocoa. Is there anything that can be easily done or should I use an external tool as exiftool and start it with NSTask ?
Thanks !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这里有一些代码看起来很有用: http://devmacosx.blogspot.com /2011/07/nsimage-exif-metadata.html
There's some code that appears useful here: http://devmacosx.blogspot.com/2011/07/nsimage-exif-metadata.html
您可以使用图像源函数 来自图像 IO 库。像...这样的东西
应该用 EXIF 数据填充
dictRef
。You can use the Image Source functions from the Image IO library. Something like...
should fill
dictRef
with the EXIF data.