2021-02-09 22:03:38 +01:00
|
|
|
#!/bin/bash
|
|
|
|
for i in logos/*.svg
|
|
|
|
do
|
|
|
|
echo "Transform Image: $i"
|
|
|
|
inkscape \
|
|
|
|
--actions="export-filename:$i.png; export-do;"\
|
|
|
|
--export-dpi 96 \
|
|
|
|
--export-background white \
|
|
|
|
$i
|
|
|
|
done
|
|
|
|
for i in briefboegen/*.svg
|
|
|
|
do
|
|
|
|
echo "Export PDF: $i"
|
|
|
|
inkscape \
|
|
|
|
--export-dpi 300 \
|
|
|
|
--export-type pdf \
|
|
|
|
--export-background white \
|
|
|
|
$i
|
|
|
|
done
|
2021-02-10 18:35:06 +01:00
|
|
|
for i in visitenkarten/*.svg
|
|
|
|
do
|
|
|
|
echo "Export PDF: $i"
|
|
|
|
inkscape \
|
|
|
|
--export-dpi 300 \
|
|
|
|
--export-type pdf \
|
|
|
|
--export-background white \
|
|
|
|
$i
|
|
|
|
done
|