Convert PNG to SVG online
Upload PNG files and convert them directly to SVG. The page opens with the upload form first, so you can begin converting immediately.
Upload PNG files and convert them to SVG with batch upload, resize, quality, metadata, and ZIP download controls.
Upload and convert
Upload PNG files and convert them directly to SVG. The page opens with the upload form first, so you can begin converting immediately.
Basic Vector SVG is the default mode and creates editable SVG paths. Embed SVG remains available for fast wrapper output, while High Detail Vector SVG keeps more colors and shapes.
Use the quality, resize, compression, metadata, and background controls to tune the output for web, design, archive, or document workflows.
Upload multiple images at once and download a ZIP package when there is more than one output file or when Force ZIP is enabled.
Automate this conversion with POST /api/image-conversion/png-to-svg/convert. The API accepts multipart uploads and the same conversion options shown in the UI.
FAQ
It is an online converter for creating SVG output from uploaded PNG files.
Upload one or more files, adjust the available options, then start the conversion and download the result.
Yes. Batch uploads are supported, and multi-file results are returned as a ZIP package.
Yes. Basic Vector SVG is the default and creates traced SVG paths. Embed SVG is available as a separate mode.
Basic Vector is faster and simplified. High Detail keeps more color and shape detail, which can produce larger SVG files.
Yes. The remove metadata option strips image metadata before writing the converted output.
Yes. Enable Remove white background when tracing SVG to make near-white pixels transparent before vectorization.
Yes. Enable Force ZIP when you want a ZIP file even for a single converted image.
No. The uploaded file is read for conversion, and the downloaded result is generated as a new file.
Yes. SVG output can be used anywhere that supports that image or document format.
Yes. Send a multipart POST request to /api/image-conversion/png-to-svg/convert with one or more files.
The endpoint validates the expected input format and returns an error when the file is not PNG.
Free conversion supports up to three files at once. Larger batch options are available with an upgraded plan.
The converted file keeps the original filename stem and changes the extension to the SVG output format.
The default settings are tuned for a balanced output. Increase quality or detail only when the use case needs it.
API and CLI
curl -X POST "http://127.0.0.1:8013/api/image-conversion/png-to-svg/convert" \
-H "X-API-Key: 1d251a33bcf2e90689dd9eac608f70c0302faccec7afaedc" \
-F "files=@/path/to/input.png" \
-F "quality=82" \
-F "svg_mode=basic_vector" \
-F "svg_color_count=32" \
-F "svg_detail=medium" \
-F "remove_metadata=true" \
-o converted-output.bin
python scripts/image_convert_cli.py png-to-svg ./input-1.png ./input-2.png \
--base-url http://127.0.0.1:8013 \
--api-key 1d251a33bcf2e90689dd9eac608f70c0302faccec7afaedc \
--output ./converted