Best Free Image to SVG Vectorizer
Kuongorora logo kana icon muSVG scaleable kuti inogara chikuru pa chero upamhi - zvakasununguka, hapana kumbobvira kugamuchira.
Maitiro ekushanda
- Upload. Choose a logo, icon or simple graphic (up to 40 MB).
- Choose a mode. Choose color to keep the palette, or black & white for clean line work.
- Dhawunirodha SVG. Iyo yakatevera SVG inorodha otomatiki uye inowedzera kune chero saizi.
Nezve iyi chirongwa
Image Vectorizer inotora mabitmap - PNG kana JPG - kuita SVG inoita sevector paths, saka inoramba ichimira zvakanaka panzvimbo yekubuda yakaoma kana ichiwedzera. Inoita zvakanaka palogo, ma icon, mapikicha akapusa uye ma line art ane hukuru hwekuenzanisa, apo inogona kutora mafomu akachena. Choose color to keep the palette, or black-and-white for crisp single-colour line work.
Chii vanhu vanoshandisa kuti
- Shandisa raster logo seSVG yeprinta uye wewebhu
- Vectorize icon kuti iite chimiro chakanaka pazvose zvidiki
- Kushandura nyore line art kuita editable vector paths
- Kugadzirira graphic yechidzitiro kana laser engraving
Developer API
Automatize iyi chirongwa kubva yako pachako code. Send a POST request to the endpoint below and get the same result the web tool produces. It is rate-limited per IP and needs no signup - API keys for higher limits are coming.
https://best.free/api/tools/image-vectorizer/
| Parameter | Mufananidzo | Anodarika | Nhoroondo |
|---|---|---|---|
file (faira) |
logo.png |
Yes | PNG/JPG bitmap, โค25 MB. |
mode |
color |
Hapana | "color" or "bw" (black & white). |
curl -X POST https://best.free/api/tools/image-vectorizer/ \
-F 'file=@logo.png' \
-F 'mode=color' \
-o image.svg
import requests
files = {"file": open("logo.png", "rb")}
data = {"mode": "color"}
r = requests.post("https://best.free/api/tools/image-vectorizer/", files=files, data=data)
with open("image.svg", "wb") as out:
out.write(r.content)
const fd = new FormData();
fd.append("file", fileInput.files[0]);
fd.append("mode", "color");
const r = await fetch("https://best.free/api/tools/image-vectorizer/", { method: "POST", body: fd });
const blob = await r.blob(); // the image.svg
Kutenda: A scalable SVG traced from the bitmap.