transparent + converter-script
This commit is contained in:
parent
4260a7f71a
commit
3c65bfe2d9
1
.gitignore
vendored
1
.gitignore
vendored
@ -1 +1,2 @@
|
|||||||
*.png
|
*.png
|
||||||
|
*.zip
|
||||||
36
Turnverein1883BildstockLogo-transparent.svg
Normal file
36
Turnverein1883BildstockLogo-transparent.svg
Normal file
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 20 KiB |
14
script/png-transparent.sh
Executable file
14
script/png-transparent.sh
Executable file
@ -0,0 +1,14 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
if [ "$1" == "" ]; then
|
||||||
|
echo "Missing size"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
cd "$(dirname "$0")/.." || exit 1
|
||||||
|
|
||||||
|
inkscape Turnverein1883BildstockLogo-transparent.svg \
|
||||||
|
--export-type=png \
|
||||||
|
--export-filename=./png/Turnverein1883BildstockLogo-transparent$1.png \
|
||||||
|
--export-dpi=300 \
|
||||||
|
--export-width=$1
|
||||||
14
script/png.sh
Executable file
14
script/png.sh
Executable file
@ -0,0 +1,14 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
if [ "$1" == "" ]; then
|
||||||
|
echo "Missing size"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
cd "$(dirname "$0")/.." || exit 1
|
||||||
|
|
||||||
|
inkscape Turnverein1883BildstockLogo.svg \
|
||||||
|
--export-type=png \
|
||||||
|
--export-filename=./png/Turnverein1883BildstockLogo$1.png \
|
||||||
|
--export-dpi=300 \
|
||||||
|
--export-width=$1
|
||||||
Loading…
Reference in New Issue
Block a user