L3D
b5254d3224
@raoul update das mal bitte svg preview ist schon zeitgemäß! Und LFS ist auch am oarsch!
10 lines
195 B
Bash
Executable file
10 lines
195 B
Bash
Executable file
#!/bin/bash
|
|
for i in *.svg
|
|
do
|
|
echo "Transform Image: $i"
|
|
inkscape \
|
|
--actions="export-filename:$i.png; export-do;"\
|
|
--export-dpi 300 \
|
|
--export-background white \
|
|
$i
|
|
done
|