comparison: svg-to-png.sh
svg-to-png.sh
- changeset 158
- 5bd755eaa5a8
- child 162
- 3ebe1a0ca818
equal
deleted
inserted
replaced
|
1 #!/bin/bash |
|
2 mkdir --parents icons |
|
3 for svgfile in $(find icons_svg -name '*.svg') |
|
4 do |
|
5 pngfile="icons/$(basename ${svgfile%.svg}.png)" |
|
6 echo "$svgfile => $pngfile" |
|
7 convert -background none "${svgfile}" "${pngfile}" |
|
8 done |