Skip to content

Instantly share code, notes, and snippets.

@mykappa
Created May 11, 2022 08:33
Show Gist options
  • Save mykappa/f9d94d544f36c0c1fef0360db18a5339 to your computer and use it in GitHub Desktop.
Save mykappa/f9d94d544f36c0c1fef0360db18a5339 to your computer and use it in GitHub Desktop.
Use ImageMagick to convert PDFs in the current folder to PNG
find . -type f -name '*.pdf' -print0 |
while IFS= read -r -d '' file
do convert -verbose -density 600 -layers composite "${file}" "${file%.*}.png"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment