Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/wix/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Imagemagick 在image magick中更改图像的背景_Imagemagick - Fatal编程技术网

Imagemagick 在image magick中更改图像的背景

Imagemagick 在image magick中更改图像的背景,imagemagick,Imagemagick,我正在使用imagemagick的此命令将图像和背景的大小扩展为白色 convert input.png -extent 495X320 -gravity center -background white output.jpg 大小不一样,但每次背景都是黑色的。我尝试了很多方法,但每次都会遇到同样的问题。有人能帮我解决这个问题吗。任何帮助和建议都将非常值得欣赏。此处的顺序很重要,请在-extent之前使用-background: convert input.png -background w

我正在使用imagemagick的此命令将图像和背景的大小扩展为白色

convert input.png -extent 495X320 -gravity center  -background white output.jpg

大小不一样,但每次背景都是黑色的。我尝试了很多方法,但每次都会遇到同样的问题。有人能帮我解决这个问题吗。任何帮助和建议都将非常值得欣赏。

此处的顺序很重要,请在
-extent
之前使用
-background

convert input.png -background white -extent 495X320 -gravity center output.jpg