Best Free SVG kuti PNG Converter
Rasterize SVG kuti PNG, JPG, WebP kapena PDF pa mlingo inu kusankha - ufulu, palibe kulembetsa.
Momwe zimagwira ntchito
- Kutsitsa. Sankhani SVG fayilo (kuposa 100 MB).
- Sankhani mtundu & scale. Sankhani PNG, JPG, WebP kapena PDF, ndi mfundo ya kukula kwa chisankho.
- Kutsitsa. Imali imatsitsanso chithunzicho mwamsanga; palibe chomwe chimasunga.
Zachidule
SVG to PNG rasterizes a scaleable SVG vector into a fixed-size image - PNG, JPG or WebP - or into a PDF. It's what you need when a tool, platform or document won't accept a SVG and wants a normal image instead. You choose a scale factor, so you can render the SVG larger for a crisp, high-resolution result rather than being stuck at its default size. Transparency is kept for PNG and WebP and flattened onto white for JPG. No watermark, no signup, processed in memory.
Ziti anthu agwiritsa ntchito kwa
- Gwiritsani ntchito SVG kuti mupange PNG kwa pulogalamu yomwe imakana SVG
- Render a vector logo pa high resolution
- Pezani JPG kapena WebP kuchokera ku SVG ya webusaiti
- Kutumiza SVG ku PDF kuti isindikizidwe
Wopanga API
Automatize izi chida kuchokera ku code yanu yapadera. Kutumiza POST zosowa ku endpoint pansipa ndi kupeza zotsatira zofanana web chida amatulutsa. Ndi malire a mtengo pa IP ndi zosowa zosalembetsa - API zilembo kwa malire apamwamba akuyenda.
https://best.free/api/tools/svg-to-png/
| Paramita | Mfano | Zofunika | Zikumbutso |
|---|---|---|---|
file (fayilo) |
image.svg |
Yes | SVG file, ≤25 MB. |
format |
png |
Si | png / jpg / webp / pdf. |
scale |
1 |
Si | Scale factor 0.1-8. |
curl -X POST https://best.free/api/tools/svg-to-png/ \
-F 'file=@image.svg' \
-F 'format=png' \
-F 'scale=1' \
-o image.png
import requests
files = {"file": open("image.svg", "rb")}
data = {"format": "png", "scale": 1}
r = requests.post("https://best.free/api/tools/svg-to-png/", files=files, data=data)
with open("image.png", "wb") as out:
out.write(r.content)
const fd = new FormData();
fd.append("file", fileInput.files[0]);
fd.append("format", "png");
fd.append("scale", 1);
const r = await fetch("https://best.free/api/tools/svg-to-png/", { method: "POST", body: fd });
const blob = await r.blob(); // the image.png
Kuyankha: The rasterized image (PNG/JPG/WebP) or PDF.