FormatDrop
How-To Guide

How to Convert SVG to PNG on Windows

Windows doesn't have built-in SVG-to-PNG export with resolution control, but Inkscape (free) is the gold standard for this conversion on Windows. For quick conversions, online tools or the Edge browser trick also work. This guide covers all three approaches.

Step-by-step instructions

  1. 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. 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. 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. 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?
Yes — use an online converter in your browser (formatdrop.com, Convertio, CloudConvert). Or use the Microsoft Edge browser trick: open the SVG in Edge, right-click the image → Save image as → PNG. These approaches are fine for occasional conversions.
Does Windows Paint support SVG?
No — Microsoft Paint cannot open SVG files. Paint only handles raster formats (BMP, JPG, PNG, GIF, TIFF). To convert SVG to PNG in Paint, you'd need to open the SVG in another app first and then paste it. Use Inkscape or an online converter instead.
How do I batch convert SVG files to PNG on Windows?
Using Inkscape's CLI in Command Prompt: `for %f in (*.svg) do inkscape "%f" --export-type=png --export-filename="%~nf.png" -w 512`. This converts all SVGs in the current folder to PNG at 512px wide. Inkscape must be installed and in the system PATH.
Convert SVG to PNG Now — Free

No account. No upload. Works in any browser.