1

SVG to PNG conversion

This commit is contained in:
Evan Pratten 2023-11-20 14:25:40 -05:00
parent 14614ec75a
commit c39f2222c3

View File

@ -248,4 +248,13 @@ gh-emulated() {
# Only if `gh` is not installed
if ! command -v gh &> /dev/null; then
alias gh=gh-emulated
fi
fi
# Convert an SVG to a PNG
svg2png() {
if [ $# != 1 ]; then
echo "Usage: svg2png <file>"
else
inkscape -z "$1.png" "$1" --export-type=png
fi
}