图片高清放大
Action
GenerateEnlargeImage
简介
⚠️
该接口已过时,不再维护。
此接口用于图片高清放大
请求
参数名 | 类型 | 描述信息 | 必填 |
---|---|---|---|
Action | String | 对应的 API 指令名称,当前 API 为 GenerateEnlargeImage | ✓ |
PublicKey | String | 用户公钥,可从 用户中心 (opens in a new tab) 获取 | ✓ |
Signature | String | 根据公钥及 API 指令生成的用户签名,参见 签名算法 | ✓ |
request_uuid | String | 请求uuid,采用uuid生成方式随机生成 | |
UpScaler | String | 放大算法,参考值: R-ESRGAN 4x+ 、R-ESRGAN 4x+ Anime6B | ✓ |
UpScaleSize | String | 放大倍数,想要放大到多少倍,1倍默认大小不变 | ✓ |
Image | String | 需要脸部修复的图片Base64 | ✓ |
请求示例
{
"Action": "GenerateEnlargeImage",
"PublicKey": "your PublicKey",
"request_uuid":"b91fcfbe-bb35-47ce-a168-bd6252c75270",
"UpScaler": "R-ESRGAN 4x+",
"UpScaleSize": 2,
"Signature": "d5c03c9a5ad5cd77073010876976fc4ac90e7814",
"Image": "data:image/jpeg;base64,xxx"
}
响应
参数名 | 类型 | 描述信息 | 必填 |
---|---|---|---|
RetCode | Int | 返回状态码,为 0 则为成功返回,非 0 为失败 | ✓ |
Action | String | 操作指令名称 | ✓ |
Message | String | 返回错误消息,当 RetCode 非 0 时提供详细的描述信息 | |
TaskUID | String | 任务UID,用于查询任务详情与获取结果 | ✓ |
响应示例
{
"Action":"",
"RetCode":0,
"Message":"",
"TaskUID":"cjr997tleg738lelk3n0"
}