DALL-E AI 图像生成
POST
/v1/images/generations您可以在这个接口使用OpenAI 最新的图像生成AI: dall-e-3
以及旧版的 dall-e-2
DALL·E 3对于画面的控制力和表现力非常出色,对于Prompt的要求也是非常低,支持的语言也很广泛,(因为您输入Prompt后OpenAI会对您的Prompt进行重写后再使用模型生成)
接入起来非常简单,可靠性也比Midjourney的更好,推荐开发者使用它来为您的AI产品添加实用性或趣味性。
请求参数
Body 参数application/x-www-form-urlencoded
prompt
string
必需
图像提示词 dall-e-3
最长输入4000字符 dall-e-2
最长1000字符
示例值:
A cute anime girl
model
string
可选
模型名称 默认 dall-e-2
可选 dall-e-3
示例值:
dall-e-3
n
integer
可选
图像生成数目 dall-e-3
只能是1 dall-e-2可以是[1,10]
示例值:
1
quality
string
可选
默认 standard
可选 hd
此选项仅适用于 dall-e-3
示例值:
hd
response_format
string
可选
默认 url
可选 b64_json
返回图像链接还是base64
示例值:
url
size
string
可选
生成图像的大小。 对于 dall-e-2,必须是 256x256、512x512 或 1024x1024 之一。 对于 dall-e-3 型号,必须是 1024x1024、1792x1024 或 1024x1792 之一。
示例值:
1024x1024
style
string
可选
生成图像的风格。 必须是vivid
或natural
的之一。 生动使模型倾向于生成超真实和戏剧性的图像。 自然使模型生成更自然、不太真实的图像。 仅 dall-e-3 支持此参数。
示例值:
vivid
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
object {0}
示例
成功示例(DALL·E3)
{
"created": 1699413579,
"data": [
{
"revised_prompt": "Create an anime-style image of a young female character with serene white hair. She has a classic charm reminiscent of popular manga characters. Her features, while unique and striking, evoke a sense of familiarity and comfort, likely due to their adherence to popular anime aesthetics. Her hair, bright and white, cascades down in loose curls, reflecting her youth and vitality. Her eyes, wide and expressive, are shimmering with life, embodying the vibrant spirit of anime heroines.",
"url": "https://oaidalleapiprodscus.blob.core.windows.net/private/org-kfoU3d52DhdDtaZCzTmS5I7C/user-UedaU9TyNiOob86Re2x21o2m/img-FnzJbqc2K2538Kpt4K8zGLkG.png?st=2023-11-08T02%3A19%3A39Z&se=2023-11-08T04%3A19%3A39Z&sp=r&sv=2021-08-06&sr=b&rscd=inline&rsct=image/png&skoid=6aaadede-4fb3-4698-a8f6-684d7786b067&sktid=a48cca56-e6da-484e-a814-9c849652bcb3&skt=2023-11-08T01%3A22%3A52Z&ske=2023-11-09T01%3A22%3A52Z&sks=b&skv=2021-08-06&sig=q2y01gp7dG7apuLGCdgvsX7e///m6pbeJwOIuWJEmMU%3D"
}
]
}
最后修改时间: 1 年前