V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX 提问指南
magic961102
V2EX  ›  问与答

想咨询下各位大哥,如何用 Java 删除图片的元数据并且不影响图片质量?

  •  
  •   magic961102 · 10 天前 · 501 次点击

    如题,如何用 java 删除 jpg 等图片的类似作者、标题等信息,目前测试使用以下方法没效果

     try (FileOutputStream fos = new FileOutputStream(outputPath)) {
                    // 删除所有 EXIF 元数据
                    new ExifRewriter().removeExifMetadata(
                        new File(inputPath), 
                        fos
                    );
                }
    
    目前尚无回复
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   1804 人在线   最高记录 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 19ms · UTC 03:39 · PVG 11:39 · LAX 19:39 · JFK 22:39
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.