外部绘画
POST
https://stablediffusionapi.com/api/v5/outpaint该端点有助于通过扩展给定图像来进行覆盖
POST
向 https://stablediffusionapi.com/api/v5/outpaint 接口发出请求,并将所需参数作为请求正文传递到端点。
请求参数
Body 参数application/json
key
string
必需
您用于请求授权的 API Key
prompt
string
必需
文本提示,包含您想要在图像中生成的内容的描述
negative_prompt
string
必需
图像中您不想要的项目
image
string
初始图像网址
steps
integer
必需
去噪步骤数(最小:1;最大:50)
guidance_scale
integer
必需
无分类器指导的量表(最小值:1;最大值:20)
samples
integer
必需
作为响应返回的图像数量。最大值为 4。
webhook
null
必需
设置 URL 以在图像生成完成后获取 POST API 调用。
track_id
null
必需
此 ID 在 Webhook API 调用的响应中返回。这将用于识别 Webhook 请求。
示例
{
"key": "",
"prompt": "A girl sitting at a bank of river full of flowers, blue sky",
"guidance_scale": 15,
"negative_prompt": "low quality",
"steps": 20,
"image": "https://camo.githubusercontent.com/5591434c42714807553e83644a191816cdf39100648f8d94b28a149dc0bc5cc7/68747470733a2f2f68756767696e67666163652e636f2f64617461736574732f6b616469726e61722f6469666675736572735f726561646d655f696d616765732f7265736f6c76652f6d61696e2f696e7075745f696d6167652e706e67",
"samples": 1,
"webhook": null,
"track_id": null
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
status
string
必需
generationTime
number
必需
id
integer
必需
output
array[string]
必需
meta
object
必需
H
integer
必需
W
integer
必需
file_prefix
string
必需
image
string
必需
kmax
number
必需
kmin
number
必需
mix_factor
number
必需
n_samples
integer
必需
negative_prompt
string
必需
outdir
string
必需
prompt
string
必需
seed
integer
必需
steps
integer
必需
示例
{
"status": "success",
"generationTime": 5.969582796096802,
"id": 510,
"output": [
"https://pub-3626123a908346a7a8be8d9295f44e26.r2.dev/generations/6599095d-5af6-4881-b180-e8b73cbe1849.png"
],
"meta": {
"H": 768,
"W": 768,
"file_prefix": "6599095d-5af6-4881-b180-e8b73cbe1849",
"image": "https://user-images.githubusercontent.com/59410571/209578593-141467c7-d831-4792-8b9a-b17dc5e47816.jpg",
"kmax": 0.5,
"kmin": 0.3,
"mix_factor": 0.5,
"n_samples": 1,
"negative_prompt": "low quality",
"outdir": "out",
"prompt": "Bed",
"seed": 1829183163,
"steps": 20
}
}
最后修改时间: 1 年前