Skip to content

Instantly share code, notes, and snippets.

@Pavel-Sayekat
Forked from alexkuang0/svg2png.sh
Created October 10, 2022 12:36
Show Gist options
  • Save Pavel-Sayekat/19801801cf47604d96b9af2953dc7d5e to your computer and use it in GitHub Desktop.
Save Pavel-Sayekat/19801801cf47604d96b9af2953dc7d5e to your computer and use it in GitHub Desktop.
Batch converting SVG to PNG
for svg in $(ls ./svg); do
filename=$(echo $svg | cut -d'.' -f1)
convert -background none -density 1000 -resize 1000x svg/$(echo $filename).svg png/$(echo $filename).png
echo [DONE] $filename converted!
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment