POST /bria/image/edit/ aracılığıyla CometAPI üzerinden Bria Image Editing API’yi kullanarak arka planları erase, gen_fill, expand, enhance, upscale veya replace_background ile değiştirebilirsiniz.
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 değerini kullanarak Sorgu durumu endpoint’i üzerinden sonuçları sorgulayın.sync parametresi bu arayüzde sabittir — belirtmeniz gerekmez.| İşlem | Açıklama | Dokümantasyon |
|---|---|---|
erase | Görüntülerden nesneleri kaldırır | Bria Erase Docs |
gen_fill | Maskelenmiş alanlar için üretken doldurma | Bria Gen Fill Docs |
expand | Görüntü tuvalini genişletir | Bria Expand Docs |
enhance | Görüntü kalitesini iyileştirir | Bria Enhance Docs |
increase_resolution | Görüntü çözünürlüğünü yükseltir | Bria Upscale Docs |
replace_background | Görüntü arka planını değiştirir | 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"
}
'{}