1
0
Fork 0
slint-memory-game/icons/README.md

11 lines
371 B
Markdown
Raw Normal View History

2023-05-03 13:54:11 -04:00
The icons originate from Font-Awesome font ( http://fontawesome.io ) and licensed under the OFL
https://fontawesome.com/license/free
The PNGs were generated using
```sh
for f in *.svg; do rsvg-convert -a -w 128 -h 128 -o `echo $f | sed -e "s,-solid\.svg,.png,"` $f; done
for f in *.png; do convert -background none -gravity center -extent 128x128 $f $f; done
```