从 Cocoa 中的图像中读取 EXIF/IPTC 信息

发布于 2025-01-03 00:56:48 字数 114 浏览 0 评论 0原文

我无法找到任何有关如何从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

怎言笑 2025-01-10 00:56:48

您可以使用图像源函数 来自图像 IO 库。像...这样的东西

CGImageSourceCreateWithData(someCFDataRef, nil);
CFDictionaryRef dictRef = CGImageSourceCopyPropertiesAtIndex(imgSource, 0, nil);

应该用 EXIF 数据填充 dictRef

You can use the Image Source functions from the Image IO library. Something like...

CGImageSourceCreateWithData(someCFDataRef, nil);
CFDictionaryRef dictRef = CGImageSourceCopyPropertiesAtIndex(imgSource, 0, nil);

should fill dictRef with the EXIF data.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文