我想在 Mac 上调整图像大小。我使用 ImageMagick。
这里的代码是:convert eight.png -resize 375X667 resize_eg.png
有警告。
转换:无效的配置文件长度“eight.png”@warning/png.c/MagickPNGWarningHandler/1744。
这只是一个警告。处理仍在继续。如果您担心,请在第一个转换中使用 +profile "*"。
我无法从+个人资料“*”。
我尝试过,但失败了。我认为这很容易。
答案1
使用+profile "*"
将从图像中删除所有配置文件,有关命令的更多信息,请参阅这里。对于你的情况,你可以像这样使用它:
convert eight.png +profile "*" -resize 375X667 resize_eg.png
答案2
可以使用该选项抑制 ImageMagick 中的警告-quiet
。以下内容不再显示警告:
convert -quiet eight.png -resize 375X667 resize_eg.png