Logo for a presentation
- Input
- SVG logo at 3× scale
- Output
- Sharp PNG at three times the intrinsic size
Rendering above the intended display size keeps it crisp on high-density screens.
SVG is a vector format that scales to any size without losing sharpness, but many places — email, older software, social platforms — accept only bitmaps. Converting to PNG rasterises the vector at a resolution you choose. Because SVG has no fixed pixel size, you decide how large the output should be.
Runs entirely in your browser — your images are never uploaded.
How to
Upload a file or paste the markup. Its intrinsic size is read from the width, height or viewBox.
Set an exact pixel width or a scale multiplier. Because SVG is vector, any size renders perfectly sharp.
Keep transparency, or flatten onto a colour where transparency is not wanted.
Save the PNG at your chosen size.
Examples
Rendering above the intended display size keeps it crisp on high-density screens.
Setting one dimension keeps the aspect ratio, which matters when a platform requires a specific size.
Useful where transparency renders as black or as a checkerboard in the destination software.
Why use it
Vectors have no fixed resolution, so the PNG is rendered fresh at whatever size you pick rather than scaled from a bitmap.
Keep the alpha channel or flatten onto a colour, depending on where the PNG is going.
Width, height and viewBox are all handled, so an SVG without explicit dimensions still converts at the right proportions.
Works from a file or from markup pasted directly.
Your graphics are never uploaded.
Good to know
Summary
FAQ
Discover