如何在gif周围添加透明空间?

时间:2017-02-09 14:20:05

标签: image imagemagick animated-gif

我需要使用微调器gif并为其添加文本,但文本需要位于当前图像边框下方的微调器动画下。

是否有使用Imagemagick在图像周围添加透明空间的命令?或者,是否有免费的在线工具来实现相同的结果?

我尝试了以下操作,但它会产生一种非常紧张和无法使用的图像:

convert spinner.gif -background none -gravity north -extent 400x200 new_spinner.gif

1 个答案:

答案 0 :(得分:3)

由于jimmetry's answer to this related questionthis imagemagick documentation的组合,我找到了一个有效的解决方案:

convert spinner.gif -coalesce -repage 0x0 -background none -gravity north -extent 400x200 +repage new_spinner.gif