Skip to content

Instantly share code, notes, and snippets.

@tcibinan
Last active October 2, 2017 18:24
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 tcibinan/2497f17bf33da5f29452a5b3fb0c72e0 to your computer and use it in GitHub Desktop.
Save tcibinan/2497f17bf33da5f29452a5b3fb0c72e0 to your computer and use it in GitHub Desktop.
Script from the previous employment. Converts all PDF files in the current directory to a list of folders with PNG slides. One folder for each PDF.
FOR %%I IN (*.pdf) DO (mkdir %%~nI & magick convert -density 400 %%I -resize 1280x720 ./%%~nI/slide.png)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment