Best Free Background Remover
Iva nechokwadi chekuti unoda kubvisa pfungwa yemufananidzo uye wozoiwanazve panzvimbo yakajeka - imwe pfungwa, pawebhusaiti yedu, yemahara.
✦ 2 credits per use · 5 free a day
Maitiro ekushanda
- Add your photo. Choose a image where the subject stands out from the background (up to 12 MB).
- Kubvisa. Press Remove background uye segmentation model masks zvese kunze kwemubvunzo.
- Kuchengeta PNG. Dhawunirodha PNG yepasi pevhu inoratidza pfungwa dzako, unokwanisa kuiisa pane chero chinhu, vhidhiyo kana mavara.
Nezve iyi chirongwa
Kudonha mu photo uye iyi tool inobvisa chikonzero chikuru - munhu, chigadzirwa, kana shamwari yakanaka - uye inodzosera pane zvakajeka zvakajeka pasi pechidzitiro se PNG. Hapana sliders kuti kusvibiswa pamusoro uye hapana model menu kusarudza kubva: imwe zvakanaka-tuned segmentation model inoita basa pa yedu yemahara server, mu memory, uye inopa iyo result straight back. The honest catch is the edges - a crisp subject against a contrasting background lifts out cleanly, while flyaway hair or a subject that melts into a busy scene is where any automatic cutout has to guess. Kana iwe uine chikonzero chikuru PNG iwe unogona kuisa pamusoro pechidzitiro chitsva, kuisa mu design, kana kuisa kuburikidza ne Image Resizer kana Image Compressor pano kuti uite asset.
Chii vanhu vanoshandisa kuti
- Place a product on a clean transparent background for a listing - Kuisa chigadzirwa panzvimbo yakachena yakajeka
- Kubvisa munhu kana shamwari yemhuri kubva pafoto kuti uite kadhi kana collage
- Shandisa vhidhiyo yemufananidzo kuti uite profile kana avatar image
- Kubvisa chinhu kana kuratidza kubva kumashure kwechigadzirwa kana kuratidza usati wazviisa mumifananidzo
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/background-remover/
| Parameter | Mufananidzo | Anodarika | Nhoroondo |
|---|---|---|---|
file (faira) |
portrait.jpg |
Yes | JPG/PNG/WebP, ≤12 MB (auto-downscaled past ~2000px). |
curl -X POST https://best.free/api/tools/background-remover/ \
-F 'file=@portrait.jpg' \
-o no-background.png
import requests
files = {"file": open("portrait.jpg", "rb")}
r = requests.post("https://best.free/api/tools/background-remover/", files=files)
with open("no-background.png", "wb") as out:
out.write(r.content)
const fd = new FormData();
fd.append("file", fileInput.files[0]);
const r = await fetch("https://best.free/api/tools/background-remover/", { method: "POST", body: fd });
const blob = await r.blob(); // the no-background.png
Kutenda: A transparent PNG with the background removed.