Add a helper script for converting svg to png with inkscape
This commit is contained in:
parent
830777a280
commit
26fda5e05a
|
@ -0,0 +1,8 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
INPUT="${1}"
|
||||||
|
OUTPUT="${4}"
|
||||||
|
WIDTH=${2}
|
||||||
|
HEIGHT=${3}
|
||||||
|
|
||||||
|
inkscape -z -w ${WIDTH} -h ${HEIGHT} "${INPUT}" -e "${OUTPUT}"
|
Loading…
Reference in New Issue