Last active
November 11, 2019 21:43
-
-
Save tothi/74d13817333940a2895b93cf95f24570 to your computer and use it in GitHub Desktop.
imagemagick magic
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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