You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
321 B
Bash
14 lines
321 B
Bash
# "Fix" the images rotation
|
|
# mogrify -auto-orient *.JPG
|
|
|
|
|
|
# montage *.JPG -geometry 1000x1000 montage.1000x1000.jpg
|
|
|
|
montage -label "%f" *.JPG \
|
|
-shadow \
|
|
-geometry 1000x1000+100+100 \
|
|
montage.caption.jpg
|
|
|
|
# montage -label '%f' *.JPG \
|
|
# -tile x1 -shadow -geometry '60x60+2+2>' label_shadow.jpg
|