Render SVG images to PNG and other formats from the command line.
SVG rendering tool and library
resvg$ resvg input.svg output.png$ resvg --width 800 --height 600 input.svg output.png$ resvg --dpi 300 input.svg output.png$ for f in *.svg; do resvg "$f" "${f%.svg}.png"; done$ resvg --zoom 2 --background white input.svg output.png