Tile with a lot of images from terminal

imagesterminal

Suppose I have a directory with 30 images. Is that possible to create a big image using these images as tiles?

Suppose all images have the same size, like 120×80 and I want to create a big image with 6 rows x 5 columns of these images with no space between them?

Is that possible to do that from terminal using, for example, SIPS or another app?

Best Answer

Yes, use imagemagick;

montage *.jpg -mode Concatenate -tile 6x5 montage.jpg
Related Question