Remove Image Background
Remove the background of an image
One of the main functionalities of IMG Processing is the background removal feature, being one of the best on the whole internet, in quality and price, being x50 cheaper than tools like RemoveBG, and getting awesome results.
In this guide, we’ll see how to remove the background of an image using the API.
Creating an Image
All the images in IMG Processing, must be created. To create an image you can upload one from your computer, by an url from an allowed origin, or create one from a prompt. Let’s create an image by uploading one from your computer. We’ll use the curl command to do this since it’s the more generic way to do it, but you can use any other tool you want.
First, download the image you want to remove the background from. Here we’ll use a cat image.
Then, copy your api key on the dashboard and replace it on the x-api-key
field, and replace the image
field with the path to the image you want to remove the background from.
After doing it, just run send! This will return an image object in the response.
Now, we have the image created, and we can remove the background.
Upload an Image
Upload an image to the API
Removing the Background
To remove the background of an image, we need to send the image id to the remove-background
endpoint.
Remove Background
Remove the background of an image
As parameters, we need to send the image id, we got from the previous step.
This will return a new image object with the background removed.
Downloading the Image
Now, we have the image with the background removed, and we can download it using the download
endpoint.
Download an Image
Download an image
As parameters, we need to send the image id, we got from the previous step.
This will download the image to your computer.
Try it yourself
You can try this on the Postman collection.
Postman Collection
Try it yourself on the Postman Collection
Keep Learning
Now that you know how to remove the background of an image, you can learn how to do other things with the API.