Image to SVG converter
Trace a raster image into vector shapes, or embed it inside an SVG wrapper.
Processed in your browser. This file is converted on your device and is never uploaded.
Converter
.png, .jpg, .jpeg, .webp, .gif, .bmp up to 50 MB. You can also drag a file here.
No file selected.
About this tool
Turning a PNG or JPEG into an SVG is the one image conversion that cannot really be done. A raster image is a grid of pixels with no shapes underneath it, so there is nothing to recover: any tool claiming to vectorize a photograph is drawing new shapes that resemble it.
This tool does that honestly. It reduces the image to a small number of colours, draws paths around each region, and gives you the result labelled as what it is: an approximation. On flat artwork such as a logo or a line drawing the result can be excellent and genuinely scalable. On a photograph it produces thousands of paths and a file several times larger than the original.
Supported formats and limits
- Input
- .png, .jpg, .jpeg, .webp, .gif, .bmp
- Output
- .svg (image/svg+xml)
- Output name
- The original name with -traced or -embedded, for example logo.png becomes logo-traced.svg.
- File size limit
- 50 MB
- Processing
- In your browser. The file is not uploaded.
How to use it
- Choose a .png, .jpg, .webp, .gif, or .bmp file.
- Pick whether to trace the image into shapes or embed the pixels inside an SVG wrapper.
- For tracing, choose the kind of source and how many colours to reduce to.
- Select Convert, then download the .svg file and check it before relying on it.
Limitations
- Tracing is an approximation. The output resembles the input; it is not derived from any original geometry, because a raster image has none.
- Photographs trace badly. Expect thousands of paths, a file larger than the original, and visible banding where smooth gradients became flat regions.
- Text is not recognised as text. Letters become outlines, so the result cannot be edited or searched as words.
- Tracing is limited to four megapixels, because it produces one path per colour region and a larger image would exhaust the browser. Resize first if you hit that.
- The embed option is not vectorization at all. It places the pixels inside an SVG document, so the file carries the .svg extension but scales no better than the original.
- Fine detail below the colour threshold is discarded rather than approximated.
Frequently asked questions
- Is my image uploaded?
- No. Both tracing and embedding run entirely in your browser. The image never leaves your device.
- Will this give me a proper vector version of my logo?
- If the logo is flat colour with clean edges, often yes, and it will scale properly afterwards. If it is a small or blurry copy, the tracer will follow the blur and the artefacts. Redrawing from the original artwork always beats tracing.
- Why is the SVG bigger than the PNG?
- Because every colour region became a path with many coordinates. This happens most with photographs and with any image containing noise or gradients. Fewer colours produces a smaller file.
- What is the difference between tracing and embedding?
- Tracing produces real vector shapes that scale. Embedding wraps the original pixels in an SVG document, which is useful only when something insists on the .svg extension. Neither improves an image; only tracing makes it scalable.
- Can I get editable text back?
- No. That would need optical character recognition, which this site does not do. Traced letters are outlines, not words.
- What does the tracing?
- ImageTracer, an open-source tracing library released into the public domain, running in your browser. It is credited here because knowing a result came from a tracer is part of knowing what the result is.