Picture collage maker in Python
The usage of collage_maker.py
is very simple:
usage: collage_maker.py [-h] [-f FOLDER] [-o OUTPUT] [-w WIDTH]
[-i INIT_HEIGHT] [-s]
Photo collage maker
optional arguments:
-h, --help show this help message and exit
-f FOLDER, --folder FOLDER
folder with images (*.jpg, *.jpeg, *.png)
-o OUTPUT, --output OUTPUT
output collage image filename
-w WIDTH, --width WIDTH
resulting collage image width
-i INIT_HEIGHT, --init_height INIT_HEIGHT
initial height for resize the images
-s, --shuffle enable images shuffle
Example:
collage_maker.py -o my_collage.png -w 800 -i 250 -s
Description of algorithm is available in my blog: http://delimitry.blogspot.com/2014/07/picture-collage-maker-using-python.html
Released under The MIT License.