Skip to content

Instantly share code, notes, and snippets.

@mattsilber
Created June 9, 2016 21:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattsilber/154c3ead60725d85152beb283936eb54 to your computer and use it in GitHub Desktop.
Save mattsilber/154c3ead60725d85152beb283936eb54 to your computer and use it in GitHub Desktop.
Take an SVG File and use inkscape to convert it to a PNG for each Android icon sizes
destFileName="${1/.svg/.png}"
sizes=( 48 72 96 144 192 512 )
for size in "${sizes[@]}"
do
mkdir $size/
inkscape -z -e $size/$destFileName -w $size -h $size $1
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment