Created
December 9, 2021 16:26
-
-
Save chasemc/8d349af458beca7645a7b1ca28493999 to your computer and use it in GitHub Desktop.
Convert pdf to png with Inkscape
This file contains hidden or 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
for i in *.pdf; do | |
inkscape --export-background-opacity=0 --export-dpi=300 --export-type=png $i | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment