Hellswipers/svg_to_png.sh

9 lines
182 B
Bash
Raw Permalink Normal View History

#!/bin/sh
if [ "$#" -lt 2 ]; then
echo "Usage: $0 [SVG File] [height]"
exit 1
fi
inkscape --export-type="png" --export-background-opacity=0 --export-height=$2 "$1"