Instant Background Remover — Clean, Transparent Images in One Click

Instant Background Remover — Clean, Transparent Images in One Click

Remove Background

Remove Background

Remove Background

Remove Background

async function removeBackground() { const fileInput = document.getElementById('imageInput'); const file = fileInput.files[0]; if (!file) return alert("Upload an image first!"); const formData = new FormData(); formData.append("image_file", file); formData.append("size", "auto"); const response = await fetch("https://api.remove.bg/v1.0/removebg", { method: "POST", headers: { "X-Api-Key": "YOUR_API_KEY" }, body: formData }); const blob = await response.blob(); const resultImg = document.createElement("img"); resultImg.src = URL.createObjectURL(blob); document.getElementById("result").appendChild(resultImg); }
Previous Post Next Post

Contact Form