1

我有一堆不同大小的PNG图标:

96x96
96x23
96x46
96x80
etc...

convert我怎样才能在 linux实用程序的帮助下填充它们。这样所有图标都具有相同的正方形尺寸,例如96x96

现有图像应居中。像这样(对于 size 的图像5x5):

.....
xxxxx
xxxxx
xxxxx
.....

我使用以下命令来缩放图像。也许,我只是忘记了一些参数?

convert -size 96x96 icon.png -resize 96x96 +profile '*' scaled.png
4

1 回答 1

1

这个应该有帮助:

convert             \
   icon.png         \
  -scale 96x96      \
  -background white \
  -gravity center   \
  -extent 96x96     \
  +profile '*'      \
   scaled.png
于 2012-09-30T15:06:46.163 回答