从 jpg、dng 和 awr raw 文件获取元数据
我想知道是否有人知道如何从 jpg、arw 和 dng 文件访问元数据(特别是日期)。
我最近在合并操作失败后丢失了文件夹结构,并且想根据元数据重命名恢复的文件。
我计划创建一个小型 C++ 应用程序来深入研究每个文件并获取元数据。
任何意见表示赞赏。
(或者,如果您知道已经有这样做的应用程序,我想知道:)
I was wondering if anyone new how to get access the metadata (the date in particular) from jpg, arw and dng files.
I've recently lost the folder structure after a merge operation gone-bad and would like to rename the recovered files according to the metadata.
I'm planning on creating a little C++ app to dig into each file and get the metadata.
any input is appreciated.
( alternatively, if you know of an app that already does this I'd like to know :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您看过 libexif 项目 http://libexif.sourceforge.net/ 吗?
Have you looked at the libexif project http://libexif.sourceforge.net/?
好的,所以我在谷歌上搜索(可能应该从这里开始)“基于 exif data arw dng jpg 的批量重命名”,
弹出的第一页是 Phil Harvey 的 ExifTool
它支持最近的 arw 和 dng 文件,并且通过一些命令行魔法,我应该能够让它做我想做的事情
- 将文件移动到文件夹(images/YYYY-MM-DD/)并将文件重命名为 YYYYMMDD_#图片文件夹(和子文件夹)中的 ###.ext
希望这对其他人有帮助
ok, so I did a google search (probably should have started with that) for "batch rename based on exif data arw dng jpg"
and the first page that popped up was the ExifTool by Phil Harvey
it supports recent arw and dng files, and with some command line magic I should be able to get it to do what pretty much what I want
-move files to folders (images/YYYY-MM-DD/) and rename files to YYYYMMDD_####.ext that are in pics folder(and subfolders)
hope this helps others
您还应该尝试 Adobe XMP SDK,它非常适合支持格式(JPEG、PNG、TIFF 和 DNG)。
You should also try Adobe XMP SDK, which is great for its supported formats (JPEG, PNG, TIFF and DNG).