创建具有这些属性的图像的正确 ImageMagick 参数是什么?
外部程序正在转换图像,以便属性从左侧更改为右侧。
我正在尝试使用 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.
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
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:
What are the correct ImageMagick parameters to generate an image with all the desired properties?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
答案是使用参数
-密度300
所以完整的命令是:
The answer is to use the parameter
-density 300
so the full command would be: