diff --git a/svg2png.sh b/svg2png.sh new file mode 100644 index 0000000..991e216 --- /dev/null +++ b/svg2png.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +INPUT="${1}" +OUTPUT="${4}" +WIDTH=${2} +HEIGHT=${3} + +inkscape -z -w ${WIDTH} -h ${HEIGHT} "${INPUT}" -e "${OUTPUT}" \ No newline at end of file