如何在保留 ICC 颜色配置文件的同时删除 EXIF 标签?
我正在以编程方式生成多种尺寸的图像缩略图。
我需要保留图像的色彩空间,同时删除所有(其他)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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为了实现此目的,我使用 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.
在不知道您的确切用例以及为什么要通过 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.