Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 70 像素 x 70 像素的图像徽标。我想制作一个 170 像素 X 70 像素的透明图像并将徽标附加在其中心。如何使用 ImageMagick 命令行工具 convert.exe 来实现这一点?
任何帮助将不胜感激。
谢谢。
我希望你不介意我说,但你误读了手册。Append 用于将两个图像并排或一个在另一个之上;不是一个在另一个之上。下面的代码可以工作,但如果你想做更复杂的事情,你需要使用-composite。
convert logo.png -background none -gravity center -extent 170x70 output.png
请求的替代方法:
convert -size 170x70 xc:none logo.png -geometry +100+10 -composite output.png