Skip to content

Instantly share code, notes, and snippets.

@chasemc
Created December 9, 2021 16:26
Show Gist options
  • Save chasemc/8d349af458beca7645a7b1ca28493999 to your computer and use it in GitHub Desktop.
Save chasemc/8d349af458beca7645a7b1ca28493999 to your computer and use it in GitHub Desktop.
Convert pdf to png with Inkscape
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