如何在 Java 中从 JPEG 图像中删除元数据?

发布于 2024-11-19 10:32:14 字数 58 浏览 2 评论 0原文

我正在尝试从 .jpg 文件中删除元数据并将其替换为任何内容。谁能提供一个例子来说明我如何做到这一点?

I'm trying to remove metadata from a .jpg file and replace it with nothing. Can anyone provide an example of how I might do this?

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

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

发布评论

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

评论(2

杀お生予夺 2024-11-26 10:32:14

读取图像时不会读取元数据。所以只需读入并写回即可。

BufferedImage image = ImageIO.read(new File("image.jpg"));
ImageIO.write(image, "jpg", new File("image.jpg"));

Metadata isn't read when you read in the image. So just read it in and write it back.

BufferedImage image = ImageIO.read(new File("image.jpg"));
ImageIO.write(image, "jpg", new File("image.jpg"));
野鹿林 2024-11-26 10:32:14

Apache ExifRewriter

读取 Jpeg 图像,删除所有 EXIF 元数据(通过删除 APP1 段),并将结果写入流。

FileInputStream is = new FileInputStream(new File("/path/to/photo.jpg"));
FileOutputStream os = new FileOutputStream(new File("/path/to/photo_without.jpg"))) 

new ExifRewriter().removeExifMetadata(is, os);

The Apache ExifRewriter:

Reads a Jpeg image, removes all EXIF metadata (by removing the APP1 segment), and writes the result to a stream.

FileInputStream is = new FileInputStream(new File("/path/to/photo.jpg"));
FileOutputStream os = new FileOutputStream(new File("/path/to/photo_without.jpg"))) 

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