Nothing Leaves

Convert SVG to PNG

Convert SVG images to PNG directly in your browser. Your files are never uploaded.

What to know

Converting vector SVG to PNG rasterises it at the size defined inside the file. If the result is smaller or blurrier than expected, the SVG's own width and height attributes are the reason.

SVG is vector XML rather than pixels, so it scales to any size without blurring. Converting it to a raster format fixes it at one resolution permanently.

PNG compresses losslessly and keeps full alpha transparency, which makes it the right choice for screenshots, logos and line art — and a poor one for photographs, where it produces far larger files than JPG.

Questions

Are my SVG files uploaded anywhere?

No. The conversion runs inside your browser using the Canvas API. The file is read into memory on your own machine and never sent over the network, which you can confirm by opening your browser's developer tools and watching the network tab stay empty.

Does converting SVG to PNG reduce quality?

PNG is lossless, so nothing is degraded during the conversion itself. Any quality already lost in the original SVG cannot be restored, however.

Is there a file size limit?

There is no limit imposed by the tool, because there is no server to upload to. The practical ceiling is your device's available memory — very large images may be slow on an older phone.