Created
June 24, 2024 05:13
-
-
Save KevinWang15/85538e92994fe8d2bee8d7533d377566 to your computer and use it in GitHub Desktop.
PDF to Image Grid Conversion
This file contains 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
# PDF to Image Grid Conversion | |
magick convert -density 150 "your-pdf.pdf" -alpha remove -alpha off -background white -resize 1000x page_%d.png | |
magick montage page_*.png -tile 3x3 -geometry 1000x+10+10 -background gray output.png | |
# Some fun ... | |
magick convert -density 150 "your-pdf.pdf" -resize 1000x page_%d.png | |
magick convert -density 150 "your-pdf.pdf" -background white -resize 1000x -flatten output.png |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment