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.
 
 
 
Michael Murtaugh c7b65da9bb readme + makefile 5 years ago
.gitignore readme + makefile 5 years ago
Makefile readme + makefile 5 years ago
README.html readme + makefile 5 years ago
README.md readme + makefile 5 years ago
layout_with_montage.sh readme + makefile 5 years ago
styles.css readme + makefile 5 years ago

README.md

95 layouts

Because there's always more than one way to do it.

Imagemagick's suite of tools includes montage which is quite flexible and useful for making a quick overview page of image.

  • mogrify
  • identify
  • convert

Sizing down a bunch of images

Warning: MOGRIFY MODIES THE IMAGES -- ERASING THE ORIGINAL -- make a copy of the images before you do this!!!

mogrify -resize 1024x *.JPG 

Fixing the orientation of images

mogrify -auto-orient *.JPG

Using Montage

montage -label "%f" *.JPG \
    -shadow \
    -geometry 1000x1000+100+100 \
    montage.caption.jpg

Using pdftk to put things together