创建具有这些属性的图像的正确 ImageMagick 参数是什么?

发布于 2024-11-14 05:59:55 字数 777 浏览 1 评论 0原文

外部程序正在转换图像,以便属性从左侧更改为右侧在此处输入图像描述

我正在尝试使用 Imagemagick< 复制这些完全相同相同的更改/强>。

当我应用 strip/cmyk 时,我得到了正确的颜色数量和磁盘大小:

convert CMYK_jpg.jpg -strip -colorspace CMYK CMYK_jpg_stripped_cmyk.jpg

当我尝试将分辨率更改为 300x300 时,如下所示:

convert CMYK_jpg.jpg -strip -colorspace CMYK -resample 300x300 CMYK_jpg_stripped_cmyk.jpg

然后它会正确更改DPI,但所有其他值 strong> 不正确:

在此处输入图像描述

生成具有所有所需内容的图像的正确 ImageMagick 参数是什么属性?

An external program is converting an image so that the properties change from those on the left to those on the right.
enter image description here

I am trying to replicate these exact same changes with Imagemagick.

When I apply strip/cmyk, I get the number of colors and disk size correct:

convert CMYK_jpg.jpg -strip -colorspace CMYK CMYK_jpg_stripped_cmyk.jpg

enter image description here

But when I try to then change the resolution to 300x300 as well like this:

convert CMYK_jpg.jpg -strip -colorspace CMYK -resample 300x300 CMYK_jpg_stripped_cmyk.jpg

then it changes the DPI correctly, but all the other values are incorrect:

enter image description here

What are the correct ImageMagick parameters to generate an image with all the desired properties?

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

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

发布评论

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

评论(1

懒的傷心 2024-11-21 05:59:55

答案是使用参数-密度300
所以完整的命令是:

convert CMYK_jpg.jpg -density 300 -strip -colorspace CMYK CMYK_jpg_stripped_cmyk.jpg

The answer is to use the parameter -density 300
so the full command would be:

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