Skip to content

Instantly share code, notes, and snippets.

@mp4096
Created November 24, 2015 17:44
Show Gist options
  • Save mp4096/ce0c5e1b8ca573f5d4fd to your computer and use it in GitHub Desktop.
Save mp4096/ce0c5e1b8ca573f5d4fd to your computer and use it in GitHub Desktop.
Convert all PDF documents in a folder to PNG images using ImageMagick
@ echo off
for /r %%i in (*.pdf) do convert -density 1200 -resize 25%% "%%i" "%%i.png"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment