文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Java 提取照片的EXIF信息批量重命名

2024-04-02 19:55

关注

手机或照机拍摄的照片名称通常是”IMG_001.JPG”这种格式,这种文件名称是无意义的。使用照片拍摄时间命名可以让我们在多年以后查找照片时根据文件名就能快速筛选出某一时间段的照片。

原始照片或视频是带有EXIF信息的。这些信息是设备在拍摄时生成,记录了照片的拍摄时间,设备信息,拍摄GPS位置等信息,在文件属性中可以查看到:

图片APP和网盘软件中图片时间线也是提取EXIF信息生成的。如果对照片进行处理,如美化操作,另存为时可能会丢失EXIF信息,或者EXIF信息被改写,会导致识别信息不准。

我以前备份的照片,大多是原始文件名,现在我想根据拍摄日期批量重命名。

找了一圈,发现老牌看图软件ADSee带有这个功能:

但是存在几个问题:

于是动动手,用JAVA代码实现这个小功能。

提取EXIF信息使用的是开源项目 metadata extractor ,它支持市面上常见的媒体文件格式和设备:

metadata extractor 官网:https://drewnoakes.com/code/exif/

引入依赖:


<dependency>
  <groupId>com.drewnoakes</groupId>
  <artifactId>metadata-extractor</artifactId>
  <version>2.15.0</version>
</dependency>

官方读取示例代码:


Metadata metadata = ImageMetadataReader.readMetadata(file);

for (Directory directory : metadata.getDirectories()) {
    for (Tag tag : directory.getTags()) {
        System.out.format("[%s] - %s = %s \n",
            directory.getName(), tag.getTagName(), tag.getDescription());
    }
    if (directory.hasErrors()) {
        for (String error : directory.getErrors()) {
            System.err.format("ERROR: %s", error);
        }
    }
}

以下是我使用示例代码读取一张图片输出的部分结果:

其中 Date/Time Original 就是我要取的摄像日期。

代码如下:



public static void recursion(File file) {
    if (file.isDirectory()) {
        // 目录
        File[] fileList = file.listFiles();
        for (File f : fileList) {
            recursion(f);
        }

    } else {
        // 文件
        if (file.isFile()) {
            // 格式:2019:06:27 11:23:55 或 2019:07:13 19:07:42下午
            String originDateTime = getOriginDateTime(file);
            if (null != originDateTime) {
                int lastDoc = file.getPath().lastIndexOf(".");
                String suffix = file.getPath().substring(lastDoc);
                String fileName = originDateTime.replace("下午", "").replaceAll(":", "-") + suffix;
                File newFile = new File(file.getParentFile(), fileName);
                if (newFile.exists()) {
                    System.out.format("文件【%s】已存在 \n", newFile.getPath());
                } else {
                    System.out.format("重命名【%s】 -> 【%s】 \n", file.getPath(), newFile.getPath());
                    file.renameTo(newFile);
                }
            } else {
                System.out.format("文件【%s】中未找到 Origin DateTime 信息  \n", file.getPath());
            }
        }
    }
}


public static String getOriginDateTime(File file) {

    String originDateTime = null;
    try {
        Metadata metadata = ImageMetadataReader.readMetadata(file);

        for (Directory directory : metadata.getDirectories()) {
            for (Tag tag : directory.getTags()) {
                if ("Date/Time Original".equals(tag.getTagName())) {
//                        System.out.format("[%s] - %s = %s \n",
//                                directory.getName(), tag.getTagName(), tag.getDescription());
                    originDateTime = tag.getDescription();
                }
            }
            if (directory.hasErrors()) {
                for (String error : directory.getErrors()) {
                    System.err.format("ERROR: %s %s \n", error, file.getPath());
                }
            }
        }
    } catch (Exception e) {
        e.printStackTrace();
    }

    return originDateTime;
}

Main方法测试:


public static void main(String[] args) throws ImageProcessingException, IOException {

    recursion(new File("图片目录"));
}

执行结果:

可以根据自己需求重写重命名方法。比如在拍摄日期相同时加上一个自增数。

以上就是Java 提取照片的EXIF信息批量重命名的详细内容,更多关于Java 提取EXIF信息重命名的资料请关注编程网其它相关文章!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯