ImageMagick 删除配置文件

发布于 2024-11-19 23:32:38 字数 281 浏览 1 评论 0原文

我正在尝试从 jpg 中删除除 exif 之外的所有配置文件。根据文档,可以使用正则表达式(例如 xmp)来实现。所以我正在尝试类似的

转换 in.jpg +profile '!exif,*' -size 570x375 -resize 570x375 -quality 65 out.jpg

但当我验证 -verbose 时我仍然看到所有配置文件

我的 IM 版本:ImageMagick 6.5。 9-0 2010-02-12 Q16
操作系统:CentOS 5.5 版 我缺少什么?

I'm trying to remove all profile from jpg except exif. According to docs it could be don with regular expression (example for xmp). So I'm trying something similar

convert in.jpg +profile '!exif,*' -size 570x375 -resize 570x375 -quality 65 out.jpg

but when I do verify -verbose I still see all profiles

My IM version: ImageMagick 6.5.9-0 2010-02-12 Q16
Os : CentOS release 5.5
What am I missing?

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

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

发布评论

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

评论(1

野生奥特曼 2024-11-26 23:32:39

这适用于 ImageMagick 6.6.2-6:

convert +profile '!exif,*' -size 570x375 -resize 570x375 -quality 65 in.jpg out.jpg

您是否尝试过将文件内参数用作倒数第二个,而不是第一个?

This works for me with ImageMagick 6.6.2-6:

convert +profile '!exif,*' -size 570x375 -resize 570x375 -quality 65 in.jpg out.jpg

Have you tried to use the in-file argument as second last, not first?

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