Convert SVG to PNG
Drop SVG files and download rasterized PNGs with transparency kept. PNG is the format to use when something needs pixels rather than vector markup: an email, a thumbnail, an app that won’t render SVG.
The SVG is drawn at the pixel size set by its width, height, or viewBox. If it has no intrinsic size, the converter falls back to an 800×600 canvas, so set an explicit size when the output resolution matters.
Resolution is fixed after conversion
SVG scales to any size; PNG does not. Once rasterized, the PNG is a fixed grid of pixels, so for a larger image, raise the SVG’s dimensions before converting and keep the SVG as your editable source.
Transparency
An SVG with no background rasterizes to a transparent PNG, which is ideal for logos and icons placed over other content.
Batch and privacy
Add multiple files, convert, and use Download all as ZIP for the whole set. Rasterizing and encoding run in your browser; nothing is uploaded.