Skip to content

Instantly share code, notes, and snippets.

@vdespa
Created May 9, 2019 06:36
Show Gist options
  • Save vdespa/c4ede99afdf209241d97144a87a4c5ba to your computer and use it in GitHub Desktop.
Save vdespa/c4ede99afdf209241d97144a87a4c5ba to your computer and use it in GitHub Desktop.
Convert svg to png
for f in *.svg; \
do echo "Processing $f file.."; \
rsvg-convert -h 1080 $f > $f.png; \
rm $f; \
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment