Skip to content

Instantly share code, notes, and snippets.

@tothi
Last active November 11, 2019 21:43
Show Gist options
  • Save tothi/74d13817333940a2895b93cf95f24570 to your computer and use it in GitHub Desktop.
Save tothi/74d13817333940a2895b93cf95f24570 to your computer and use it in GitHub Desktop.
imagemagick magic
# batch convert jpg photos to a4 pdf keeping exif orientation
convert *jpg -compress jpeg -auto-orient -quality 75 -resize 1240x1754 -extent 1240x1754 -gravity center -units PixelsPerInch -density 150x150 out.pdf
# add auto-rotate to A4 portrait (e.g. for printing):
convert *jpg -compress jpeg -rotate "-90>" -quality 75 -resize 1240x1754 -extent 1240x1754 -gravity center -units PixelsPerInch -density 150x150 out.pdf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment