使用imagemagick将EPS转换为PNG时如何添加填充?

时间:2012-10-31 08:24:37

标签: imagemagick imagemagick-convert

如何在使用imagemagick将EPS转换为PNG时添加填充?

我想做类似的事情:

convert logo.eps -size 128x128 logo.png

但希望实际徽标为96x96像素,居中,被透明背景包围,以达到128x128像素。

1 个答案:

答案 0 :(得分:25)

自己找到了:

convert logo.eps -background transparent -gravity center -scale 96x96 -extent 128x128 logo.png