Utilisez l’API Bria Image Editing via CometAPI pour erase, gen_fill, expand, enhance, upscale ou remplacer des arrière-plans avec POST /bria/image/edit/.
curl --request POST \
--url https://api.cometapi.com/bria/image/edit/{action} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"image": "https://raw.githubusercontent.com/cometapi-dev/.github/refs/heads/main/assets/img/original_image.png",
"mask": "https://raw.githubusercontent.com/cometapi-dev/.github/refs/heads/main/assets/img/mask_image.png"
}
'{}request_id renvoyé pour interroger les résultats via le point de terminaison Query Status.Le paramètre sync est fixe sur cette interface — vous n’avez pas besoin de le spécifier.| Operation | Description | Documentation |
|---|---|---|
erase | Supprimer des objets d’images | Bria Erase Docs |
gen_fill | Remplissage génératif pour les zones masquées | Bria Gen Fill Docs |
expand | Étendre le canevas de l’image | Bria Expand Docs |
enhance | Améliorer la qualité de l’image | Bria Enhance Docs |
increase_resolution | Augmenter la résolution de l’image | Bria Upscale Docs |
replace_background | Remplacer l’arrière-plan de l’image | Bria Background Docs |
Bearer token authentication. Use your CometAPI key.
Must be application/json.
Editing action to perform. Supported values: erase, gen_fill, expand, enhance, increase_resolution, replace_background.
Source image as a public URL or base64-encoded data URI. Accepted formats: JPEG, PNG, WebP. Maximum 12 MB.
Mask image as a public URL or base64. White areas mark the region to edit; black areas are preserved. Required for erase, gen_fill, and expand actions.
Text description of the desired edit. Required for gen_fill and replace_background actions.
Number of result variants to generate. Default: 1.
When true, the response blocks until results are ready. When false (default), returns immediately with placeholder URLs that can be polled.
Success
The response is of type object.
curl --request POST \
--url https://api.cometapi.com/bria/image/edit/{action} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"image": "https://raw.githubusercontent.com/cometapi-dev/.github/refs/heads/main/assets/img/original_image.png",
"mask": "https://raw.githubusercontent.com/cometapi-dev/.github/refs/heads/main/assets/img/mask_image.png"
}
'{}