Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to generate a collage image like shown

How to generate a collage image like show below. I would appreciate if you can let me know if there are any online tools or apps which do this. Thanks!

enter image description here

like image 811
sidj Avatar asked Jun 08 '16 18:06

sidj


1 Answers

Use ImageMagick montage like this to get your montage 10 images wide and with all images abutted together with no space between:

montage -geometry +0+0 -tile 10x *.jpg result.jpg

enter image description here

My images repeat because I didn't bother finding 1,000 unique faces :-)

like image 142
Mark Setchell Avatar answered Sep 16 '22 13:09

Mark Setchell