optimize build and svg
This commit is contained in:
parent
f6a379a2b6
commit
6d64076aeb
3 changed files with 62 additions and 26 deletions
|
@ -1,10 +0,0 @@
|
||||||
#!/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
|
|
3
Makefile
3
Makefile
|
@ -1,4 +1,3 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
all:
|
all:
|
||||||
./.create_svg.sh
|
find . -type f -name '*.svg' -print0 | xargs -0 -n 1 -P 6 inkscape --actions="export-filename:$1.png; export-do;" --export-background white --export-dpi 96 $1
|
||||||
|
|
||||||
|
|
63
chvoc.svg
63
chvoc.svg
File diff suppressed because one or more lines are too long
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 25 KiB |
Loading…
Reference in a new issue