UFFkleber and briefbogen

This commit is contained in:
L3D
2021-05-20 00:03:09 +02:00
parent 12d5a1944c
commit 9f59b8ab26
18 changed files with 360 additions and 0 deletions

28
.create_png.sh Executable file
View File

@@ -0,0 +1,28 @@
#!/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
for i in visitenkarten/*.svg
do
echo "Export PDF: $i"
inkscape \
--export-dpi 300 \
--export-type pdf \
--export-background white \
$i
done