Files @ 8e8209e4b8d4
Branch filter:

Location: C3L/Artwork/svg2png.sh

Dennis Fink
Updated Scripts
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