Skip to content

Instantly share code, notes, and snippets.

@KevinWang15
Created June 24, 2024 05:13
Show Gist options
  • Save KevinWang15/85538e92994fe8d2bee8d7533d377566 to your computer and use it in GitHub Desktop.
Save KevinWang15/85538e92994fe8d2bee8d7533d377566 to your computer and use it in GitHub Desktop.
PDF to Image Grid Conversion
# 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