Macos – Command-line application for converting SVG to PNG on Mac OS X

command linemacospngsvg

Are there any command-line programs that can convert an SVG to PNG that run on macOS?

Best Answer

Or without installing anything:

qlmanage -t -s 1000 -o . picture.svg 

It will produce picture.svg.png that is 1000 pixels wide.

I have tested it only on OS X 10.6.3.

Related Question