提交人像照片转动漫任务(AI玩图)
POST
/engine/img2acg接口能力
直接用预置的风格
和人像照片 URL
生成对应的动漫风格图片,而不需要指定 prompt
本接口为异步接口,需要把返回结果中的 uid
做为参数,通过 「查询接口-查询任务结果」(/engine/status
)接口轮询获取结果
积分扣除规则
一次调用消耗 3 积分(对于 512×704 及以下分辨率)
- 由于敏感图等问题提交任务成功但生成失败的,将退还积分
- 标准分辨率下图片尺寸是 512×704,面积低于该尺寸维持原价,面积大于该尺寸按比例增加消耗的积分
如,(1024×1024)/(512×704)=2.9,则生成 1024×1024 的图片会需要 3×2.9=8.7 积分- 人像照片转动漫接口支持积分模式按次调用;包月用户每 4 颗 GPU 配额 50000 次调用,超过配额则需使用等值积分按次调用;部署用户调用需消耗等值积分
请求参数
此值可以在 开放平台(https://open.creator.nolibox.com) - 应用列表 - 操作中的"TOKEN"中获取。计算方式:"Basic " + Base64.encode(App Key:App Secret)
国风 - "Chinese_style"
美漫 - "American_style"
可爱 - "Cute_style"
华丽 - "Gorgeous_style"
恐怖漫画 - "Horrible_style"
精灵 - "Avatar_style"
热血 - "Fighting_style"
机械复古 - "Machine_style"
赛伯未来 - "Cyberfuture_style"
JOJO - "JOJO_style"
兔耳 - "Bunny_style"
猫耳 - "CatEar_style"
单位:px
单位:px
取值范围:-1~2^32-1
-1 代指不指定 seed,此时我们算法内部会随机生成一个 seed
目前支持的采样器有:ddim, plms, klms, solver, k_euler, k_euler_a
取值范围:5~100
空字符串意味着不使用负面词
回调请求方式为 POST
,Content-Type
为 application/json
,数据结构可参考 查询接口
- 查询任务结果
接口返回值。
{
"style": "Gorgeous_style",
"image_url": "https://ailab-huawei-cdn.nolibox.com/upload/images/cf5a2778094945209b594c15f5da3924.png",
"use_seed": true,
"keep_alpha": true,
"w": 512,
"h": 512,
"fidelity": 0.3,
"use_circular": false,
"is_anime": true,
"seed": 2180138447,
"version": "v1.5",
"promptInfo": {
"lang": "zh",
"original": "a cute European young lady and a handsome European young man, big eyes, beautiful detailed eyes, smile, ((style reference J.C. Leyendecker)), portrait, illustration, masterpiece, best quality, CG, HD, 8k, 4k, highly detailed, wallpaper",
"originalNegative": "cropped, blurred, mutated, error, lowres, blurry, low quality, username, signature, watermark, text, nsfw, missing limb, fused hand, missing hand, extra limbs, malformed limbs, bad hands, extra fingers, fused fingers, missing fingers, bad breasts, deformed, mutilated, morbid, bad anatomy"
},
"timestamp": 1670569311577,
"localModels": {},
"negative_prompt": "cropped, blurred, mutated, error, lowres, blurry, low quality, username, signature, watermark, text, nsfw, missing limb, fused hand, missing hand, extra limbs, malformed limbs, bad hands, extra fingers, fused fingers, missing fingers, bad breasts, deformed, mutilated, morbid, bad anatomy",
"sampler": "k_euler",
"num_steps": 25,
"guidance_scale": 7.5
}
示例代码
返回响应
在 /engine/status
接口中查询任务结果
{
"uid": "23c0a69d"
}