Merge Portraits API
Request
Image requirements
Field | Requirements |
---|---|
image_target | JPEG JPG BMP PNG |
image_template | JPEG JPG BMP PNG |
Body
Field | Required | Type | Scope | Description |
---|---|---|---|---|
image_target | YES | file | Target image. | |
image_template | YES | file | Template images. | |
source_similarity | NO | float | [0, 1] | Face similarity, where a higher numerical value indicates greater similarity. 0 : Consistent with the original template.1 : Maximum similarity with the target image. |
Response
Response Field Handling Flow
-
Handle
Public Response Fields
Parse and validate the
Public Response Fields
, checking the status code or response message to ensure the request is successful and error-free. -
Handle
Business Response Fields
If the
Public Response Fields
are valid and error-free, proceed with processing the business logic in theBusiness Response Fields
.
Public Response Fields
Viewing Public Response Fields and Error CodesBusiness Response Fields
Field | Type | Description |
---|---|---|
data | object | The content of the result data returned. |
+image | string | The result image, returning the Base64 encoding of the image. |
Response Example
{
"request_id": "",
"log_id": "",
"error_code": 0,
"error_msg": "",
"error_detail": {
"status_code": 200,
"code": "",
"code_message": "",
"message": ""
},
"data": {
"image": ""
}
}