3 lines
216 B
Fish

#!/usr/bin/fish
for file in *.svg; magick -background black -density 1000 $file -alpha remove -resize 32x32 $file.png && magick stream -map rgb -storage-type char $file.png $file.raw && xxd -i $file.raw $file.h; end