Files @ 12af8687043b
Branch filter:

Location: C3L/Artwork/svg2png.sh

Dennis Fink
Moved fonts to root dir
1
2
3
4
5
6
#!/bin/bash

for i in $(find Logos/SVG -type f -not -name "Laurel_Wreath.svg"); do
    new_filename=$(echo $i | sed 's/svg/png/g' | sed 's/SVG/PNG/g')
    inkscape -f "$i" -e "$new_filename" -C -d 1200
done