Remove Background

This page explains how to use the Picsart Creative APIs Python SDK to remove the background from an image. Please refer to the API documentation for the full list of the features and their possible values and to the API Reference RemoveBackgroundClient for the SDK usage.

Simple use case for Remove Background

You can easily remove the background from an image using a file or URL.

Example:

import picsart_sdk
from picsart_sdk import PicsartAPI
from picsart_sdk.api_responses import ApiResponse
from picsart_sdk.clients import RemoveBackgroundClient

client: RemoveBackgroundClient = picsart_sdk.client(PicsartAPI.REMOVE_BACKGROUND)

response1: ApiResponse = client.remove_background(image_path="./file.jpg")
response2: ApiResponse = client.remove_background(image_url="https://domain.com/image.jpg")
print(response1.data.url)
print(response2.data.url)

More Complex Case

If you want to apply additional features to the background removal process, you can pass optional parameters supported by the API.

Refer to the official Remove Background API documentation for more details:

Example:

import picsart_sdk
from picsart_sdk import PicsartAPI
from picsart_sdk.api_responses import ApiResponse
from picsart_sdk.clients import RemoveBackgroundClient

client: RemoveBackgroundClient = picsart_sdk.client(PicsartAPI.REMOVE_BACKGROUND)

response: ApiResponse = client.remove_background(
    image_url="https://domain.com/image.jpg",
    stroke_size=2,
    stroke_color="red"
)
print(response.data.url)

Using asynchronous HTTP call

import asyncio

import picsart_sdk
from picsart_sdk import PicsartAPI
from picsart_sdk.api_responses import ApiResponse
from picsart_sdk.clients import AsyncRemoveBackgroundClient

async def async_removebg():
    client: AsyncRemoveBackgroundClient = picsart_sdk.async_client(PicsartAPI.REMOVE_BACKGROUND)
    response: ApiResponse = await client.remove_background(image_path="./file.jpg", stroke_size=2, stroke_color="red")
    print(response.data.url)

asyncio.run(async_removebg())