Created
May 11, 2022 08:33
-
-
Save mykappa/f9d94d544f36c0c1fef0360db18a5339 to your computer and use it in GitHub Desktop.
Use ImageMagick to convert PDFs in the current folder to PNG
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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