Converting large SVG to PNG file

image conversioninkscapesvg

So I have a 16mb SVG file with about 30,000 nodes and I've been trying to convert it to a 10,000×10,000 png image. I tried a lot of stuff and the closest I got was with inkscape, but it got some weird error halfway through the command and only rendered half the image. Does anyone know the best way to do this?

Best Answer

Imagemagick is a dedicated command line tool for converting and manipulating images, so may product better results:

convert -density 1200 -resize 10000x10000 your.svg your.png

You may need to change the density command to get optimal results

Related Question