Resize Image
Action
ResizeImage
Introduction
This interface is used for keeping details by AI when resizing images.
Request
Parameter Name | Type | Description | Required |
---|---|---|---|
Action | String | The corresponding API instruction name | ✓ |
PublicKey | String | User's public key, which can be obtained from the PICPIK User Center (opens in a new tab) | ✓ |
Signature | String | User's signature generated based on the public key and API instruction, see Signature for details | ✓ |
request_uuid | String | Request UUID, randomly generated by using the UUID generation method. This parameter can be utilized to manage the requests of your business and clients. |
Parameter Name | Type | Description | Required |
---|---|---|---|
Width | Int | Target width(64~4096) | ✓ |
Height | Int | Target height(64~4096) | ✓ |
Image | Base64 | An image encoded in Base64 | ✓ |
Request Example
{
"Action": "ResizeImage",
"request_uuid": "fe6d53f4-b4de-4c64-90bd-8991df85e145",
"PublicKey": "ALLak9M4cNdHXKOJAJJ4k8Hh1hZS2EgJF1D0FlPwfl",
"Signature": "c46eacd2dcde770b43cbceea81d900f34d31d95e",
"Width": 1024,
"Height": 1024,
"Image": "data:image/png;base64,xxx"
}
Response
Field Name | Type | Description | Required |
---|---|---|---|
RetCode | Int | Return status code: 0 indicates a successful return, while non-zero indicates a failure | ✓ |
Action | String | Instruction name | ✓ |
Message | String | The error message is returned when RetCode is non-zero, providing a detailed description | |
request_uuid | String | Returns the UUID that was included in the request |
Parameter Name | Type | Description | Required |
---|---|---|---|
TaskUID | String | Task UID, used to query task details and get results | ✓ |
Response Example
{
"Action": "ResizeImage",
"RetCode": 0,
"Message": "",
"request_uuid": "8482d350-04f9-421b-817b-1d98b3a4dcfa",
"TaskUID": "cktlm6lrh4miq8ng9nf0"
}