如何在保留 ICC 颜色配置文件的同时删除 EXIF 标签?

发布于 2024-08-19 01:02:19 字数 201 浏览 4 评论 0原文

我正在以编程方式生成多种尺寸的图像缩略图。

我需要保留图像的色彩空间,同时删除所有(其他)EXIF 信息。

我在 PHP 5.3 上使用 imagick,但是有关如何使用任何 imagemagick API 执行此操作的信息会很有帮助。

我正在尝试尽可能地修剪图像缩略图的文件大小,但颜色空间是必要的信息,否则客户端无法足够准确地渲染颜色。

I am programmatically generating several sizes of thumbnails for images.

I need to preserve the color space of an image while removing all (other) EXIF information.

I am using imagick on PHP 5.3, but information on how to do this with any imagemagick API would be helpful.

I'm trying to prune the file size of my image thumbnails as much as possible, but the color space is necessary information or the client doesn't render the colors accurately enough.

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

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

发布评论

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

评论(2

So要识趣 2024-08-26 01:02:19

为了实现此目的,我使用 MagickStripImage() 删除所有无关数据,然后运行 ​​-convert [inputJPG] -profile [profile] [outputJPG] 再次添加 sRGB 配置文件。

这符合我的目的(因为我已经事先完成了配置文件转换,所以我的所有配置文件都是 sRGB)。我确实尝试了 Tom 的使用 ExifTool 的建议(这太棒了),但无法让它去除 EXIF+XMP+IPTC 并保持配置文件完整。

To achieve this I used MagickStripImage() to remove all the extraneous data, then ran -convert [inputJPG] -profile [profile] [outputJPG] to add the sRGB profile again.

This worked for my purposes (as I'd already done profile conversion beforehand, so all my profiles are sRGB). I did try Tom's suggestion of using ExifTool (which is fantastic) but couldn't get it to strip out EXIF+XMP+IPTC and leave the profile intact.

不交电费瞎发啥光 2024-08-26 01:02:19

在不知道您的确切用例以及为什么要通过 php 执行此操作的情况下,我想知道您是否尝试过 Phil 的 ExifTool哈维?它允许您添加、修改和删除典型的图像元数据。您可以编辑单个图像和整个图像批次。

Without knowing your exact use case and why you want to do this via php, I was wondering if you tried ExifTool from Phil Harvey? It allows you to add, modify, and delete the typical image metadata. You can edit individual images and whole image batches.

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