Is there any working module to convert a SVG image into a pixel format like JPEG or PNG?
We can also use command line interface such as inkscape to achieve it. Download inkscape from inkscape.org
Open Terminal/command prompt Type command as:
single file conversion
inkscape -z --file=original.svg --export-png=converted.png --export-area-drawing --export-dpi=200
Batch conversion of SVG's to PNG can be achieved as follows :
for i in *.svg;
do inkscape -z --file=$i --export-png=$i.png --export-area-drawing --export-dpi=200;
done
--export-area-drawing : This will only export the drawing area of SVG file and not the whole document area.