Step-by-step instructions
- 1
Convert with Inkscape (recommended)
Download Inkscape (inkscape.org — free). Open the SVG file. Go to File → Export PNG Image (Shift+Ctrl+E). In the Export panel, set the width and height in pixels. Click Export As and save. Inkscape is the most powerful free SVG editor on Windows and produces pixel-perfect PNG output.
Go to converter - 2
Use the Edge browser trick
Open the SVG file in Microsoft Edge (drag it into the browser). Press Ctrl+P to print. Select Microsoft Print to PDF or a PDF printer if you want PDF, but for PNG: right-click the SVG image in Edge → Save image as → PNG. Edge renders the SVG and allows saving as PNG. Image dimensions match the browser viewport — may be small.
- 3
Command line with Inkscape CLI
Once Inkscape is installed: `inkscape input.svg --export-type=png --export-filename=output.png -w 1024 -h 1024`. The -w and -h set the output dimensions. Batch convert all SVGs in a folder: `for %f in (*.svg) do inkscape "%f" --export-type=png --export-filename="%~nf.png" -w 512`.
- 4
Check the output
Open the PNG in Photos or Paint to verify quality. Transparent SVG backgrounds should appear as transparent in the PNG (shows as white in Paint, which doesn't display transparency). Use a browser or image editor that shows transparency to verify. If quality looks pixelated, re-export at a higher resolution.
Why convert SVG to PNG?
SVG files don't work in most Windows apps, email clients, or social media platforms. Converting to PNG gives you a universally compatible image that works everywhere while preserving the crisp appearance of the original vector.
Your files never leave your device
FormatDrop runs the conversion engine entirely inside your browser using WebAssembly. No file upload. No server. Nothing stored. You can verify this by opening DevTools → Network tab and watching: zero upload requests.
Frequently asked questions
Can I convert SVG to PNG without downloading software on Windows?
Does Windows Paint support SVG?
How do I batch convert SVG files to PNG on Windows?
No account. No upload. Works in any browser.