64 位 Exiv2(或其他 EXIF 编写器)
我需要一种非破坏性的方式从 .NET 代码将 EXIF 标签添加到 jpeg 图像。 到目前为止,我发现 Exiv2 和 .NET 包装器 Exiv2net 在添加或更新标签时效果很好。 然而,我的代码需要在 64 位机器上运行(并且由于其他原因编译为 64 位),并且在我看来 Exiv2 代码只能在 32 位中编译。
因此,我正在寻找开发 Exiv2 和 Exiv2net 64 位版本的人,或者完全是另一个工具包。 有人见过这样的事情吗?
顺便说一句,WPF 中的 BitmapMetadata 在更新时会删除 EXIF 标记,并且无法满足我的目的。
I need a non-destructive way of adding EXIF tags to jpeg images from .NET code. So far I have found Exiv2 and the .NET wrapper Exiv2net that works well when adding or updating tags. However, my code needs to run on a 64-bit machine (and compiled for 64-bit due to other reasons) and it seems to me that the Exiv2 code only compiles in 32-bit.
I am therefore looking for either someone working on a 64-bit version of Exiv2 and Exiv2net or another toolkit entirely. Has anyone seen such a thing?
Btw, the BitmapMetadata from WPF removes EXIF tags when updating and will not work for my purposes.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您知道您的目标系统将有 Perl 解释器,您可以捆绑 exiftool 并调用它来代表您的应用程序执行工作。 您甚至可以 将其编译为独立的可执行文件。
If you know your target system will have a Perl interpreter, you could bundle exiftool and call it to do work on behalf of your app. You may even be able to compile it into a standalone executable.