From c39f2222c3e98316b70e9e6dcc4fcf980f78e726 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Mon, 20 Nov 2023 14:25:40 -0500 Subject: [PATCH] SVG to PNG conversion --- configs/shells/bash/macros.sh | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/configs/shells/bash/macros.sh b/configs/shells/bash/macros.sh index db9aef6..4a7d0df 100644 --- a/configs/shells/bash/macros.sh +++ b/configs/shells/bash/macros.sh @@ -248,4 +248,13 @@ gh-emulated() { # Only if `gh` is not installed if ! command -v gh &> /dev/null; then alias gh=gh-emulated -fi \ No newline at end of file +fi + +# Convert an SVG to a PNG +svg2png() { + if [ $# != 1 ]; then + echo "Usage: svg2png " + else + inkscape -z "$1.png" "$1" --export-type=png + fi +}