Skip to content

Instantly share code, notes, and snippets.

@erronjason
Created March 5, 2016 03:38
Show Gist options
  • Save erronjason/036fb36feb93dfc90d73 to your computer and use it in GitHub Desktop.
Save erronjason/036fb36feb93dfc90d73 to your computer and use it in GitHub Desktop.
Converts pdfs to jpgs - You're gonna need convert (imagemagick) and ghostscript for windows
:: You're gonna need convert (imagemagick) and ghostscript for windows
:: Assumes pdfs are in a folder below this script called pdfs\ and will throw jpgs into jpgs\
for %%f in (pdfs\*.pdf) do (
convert %%f jpgs\%%~nf.jpg
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment