Hellswipers/svg_to_png.sh
Mutzi afab78db12
Rewrote the game in C#
Added sounds and music
2024-03-21 11:53:40 +01:00

9 lines
182 B
Bash
Executable File

#!/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"