iOS - 将 kCGImagePropertyExifUserComment 添加到图像的问题

发布于 2024-10-26 14:33:41 字数 306 浏览 6 评论 0原文

我在将 kCGImagePropertyExifUserComment 写入我的图像时遇到问题。我的代码(总体而言)有效,因为它可以轻松写入 GPS 坐标。但是,在 UserComment 字段中写入一些附加信息是不起作用的(我不确定为什么)。代码是:

CFDictionarySetValue(mutable, kCGImagePropertyExifUserComment, [NSString stringWithFormat:@"%0.0f,%0.0f,%0.0f",yaw,pitch,roll]);

有人对此有想法吗?

I'm having problems writing a kCGImagePropertyExifUserComment to my image. My code (overall) works, as it writes GPS coordinates without a hassle. However, writing some additional info in the UserComment field is non-working (and I'm not sure why). Code is:

CFDictionarySetValue(mutable, kCGImagePropertyExifUserComment, [NSString stringWithFormat:@"%0.0f,%0.0f,%0.0f",yaw,pitch,roll]);

Anyone have an idea on this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

燕归巢 2024-11-02 14:33:41

如果其他人想知道如何做到这一点,我终于弄清楚了:

NSDictionary *etcDict=[NSDictionary dictionaryWithObjectsAndKeys:
                               [NSString stringWithFormat:@"%0.0f,%0.0f,%0.0f",yaw,pitch,roll],kCGImagePropertyExifUserComment,
                               nil];
CFDictionarySetValue(mutable, kCGImagePropertyExifDictionary, etcDict);

奇怪,但它工作得很好!

If anyone else is wondering how to do this, I've finally figured it out:

NSDictionary *etcDict=[NSDictionary dictionaryWithObjectsAndKeys:
                               [NSString stringWithFormat:@"%0.0f,%0.0f,%0.0f",yaw,pitch,roll],kCGImagePropertyExifUserComment,
                               nil];
CFDictionarySetValue(mutable, kCGImagePropertyExifDictionary, etcDict);

Strange, but it works just fine!

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