opaque-rs-example/assets/fontawesome/convert.sh

8 lines
205 B
Bash
Raw Normal View History

2020-10-23 20:08:50 +00:00
#!/bin/bash
for f in *.svg; do
echo "converting $f"
sed -i 's/>/><style>path\{stroke:#FFFFFF;fill:#FFFFFF\}<\/style>/' $f #> $f.intermediate
#inkscape -z -e $f.png -w 1024 -h 1024 $f.intermediate
done