如何使用Imagemagick在平铺图像中的平铺之间插入一行间距?

如何使用Imagemagick在平铺图像中的平铺之间插入一行间距?,imagemagick,tile,Imagemagick,Tile,我有一组图像,我想在一行中平铺在一起。这可以通过像这样使用Imagemagick蒙太奇来完成 montage `ls tile*.png` -tile x1 -gravity west -geometry 1x1\<+0+0 out_file.png montage`ls tile*.png`-tile x1-gravity west-geometry 1x1\如果图像大小已知,则只需在-geometry开关中放大1像素即可。因此,如果图像是256x256,则使用-geometry 25

我有一组图像,我想在一行中平铺在一起。这可以通过像这样使用Imagemagick
蒙太奇来完成

montage `ls tile*.png` -tile x1 -gravity west -geometry 1x1\<+0+0 out_file.png

montage`ls tile*.png`-tile x1-gravity west-geometry 1x1\如果图像大小已知,则只需在
-geometry
开关中放大1像素即可。因此,如果图像是256x256,则使用
-geometry 257x256