grafiken/.create_svg.sh

11 lines
202 B
Bash
Raw Normal View History

2019-10-14 09:58:11 +02:00
#!/bin/bash
2020-11-18 23:55:02 +01:00
for i in *.svg
2019-10-14 09:58:11 +02:00
do
2020-11-18 23:55:02 +01:00
echo "Transform Image: $i"
inkscape \
--actions="export-filename:export/$i.png; export-do;"\
--export-dpi 300 \
--export-background white \
$i
2019-10-14 09:58:11 +02:00
done