What SVG to PNG does
SVG to PNG rasterises a vector SVG into a PNG at any chosen resolution.
- Vector to raster
Convert an SVG to PNG by uploading your vector file and choosing the output resolution; the tool rasterises the SVG at any size you want and downloads a crisp PNG. It runs in your browser, so your file is never uploaded.
A converter that renders a scalable SVG vector graphic into a raster PNG image at a chosen resolution.
Related terms
Set any output width and height; the SVG is rendered crisply at that resolution.
The SVG's transparent areas are preserved in the PNG.
The SVG is rendered locally with the Canvas API.
SVG to PNG rasterises a vector SVG into a PNG at any chosen resolution.
The SVG is drawn to a canvas at the requested size and exported as a PNG with canvas.toBlob.
Use SVG logos and icons where only raster PNGs are accepted, at exactly the size you need.
PNG is raster, so unlike SVG it will not scale infinitely without quality loss beyond the exported size.
The image is processed entirely in your browser with the Canvas API; nothing is uploaded to a server.