plotter_tools/svg2png.sh

8 lines
126 B
Bash
Raw Normal View History

#!/bin/bash
INPUT="${1}"
OUTPUT="${4}"
WIDTH=${2}
HEIGHT=${3}
inkscape -z -w ${WIDTH} -h ${HEIGHT} "${INPUT}" -e "${OUTPUT}"