Skip to content

Instantly share code, notes, and snippets.

@gautiermichelin
Created November 24, 2017 09:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gautiermichelin/15d47b1fc688c045aaa1413caf837233 to your computer and use it in GitHub Desktop.
Save gautiermichelin/15d47b1fc688c045aaa1413caf837233 to your computer and use it in GitHub Desktop.
pdf2png as a simple command, using ghostscript and imagemagick
#!/bin/bash
PDF=$1
PNG=$2
convert -density 300x300 -units pixelsperinch $PDF -background white -alpha background -alpha off $PNG
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment