Skip to content

Flux Kontext 图像生成

使用 DragonAPI 密钥和本站接口。示例中的 your-media.example 是占位地址,需替换为你自己的可访问素材或回调地址。协议、可用性与价格以当前模型说明和控制台为准。

使用 Flux Kontext 模型进行图片编辑和生成,支持文生图和图片编辑

  • Flux Kontext 图像生成与编辑模型
  • 通过 model 参数选择 flux-kontext-pro(Pro)或 flux-kontext-max(Max,更高质量)
  • 支持文生图、图片编辑两种模式
  • 有参考图时为图片编辑,无参考图时为文生图
  • 价格按请求计算
  • 异步任务模式,返回 task_id 用于查询结果

重要变更 :为了更稳定的调用体验,我们不再支持在 image_urls 中直接传入 base64 图片数据。请先将素材保存到可公开访问的 HTTPS 地址,再调用本接口。

Authorizations

Authorization

string · 必填

所有接口均需要使用 Bearer Token 进行认证

获取 DragonAPI API Key:访问 DragonAPI 密钥管理页面 获取您的 API Key

使用时在请求头中添加:

text
Authorization: Bearer YOUR_DRAGONAPI_KEY

Body

model

string · 必填

图像生成模型名称

可选值:

  • flux-kontext-pro - Pro 版本
  • flux-kontext-max - Max 版本,更高质量

prompt

string · 必填

图像生成的文本描述

size

string · 可选

图像宽高比

默认值:

  • 有参考图时:match_input_image(匹配输入图片)
  • 无参考图时:16:9

支持的宽高比:

说明
match_input_image匹配输入图片比例(仅图片编辑时)
1:1正方形
4:3 / 3:4传统显示器比例
16:9 / 9:16宽屏/竖屏
3:2 / 2:3标准照片
21:9 / 9:21超宽屏/超窄屏

image_urls

string[] · 可选

参考图像 URL 数组,用于图片编辑

⚠️ 仅支持 URL 格式(不支持 base64)

  • 公开可访问的图片 URL(http\😕/ 或 https\😕/)
  • 请先将本地素材保存到可公开访问的 HTTPS 地址

限制:

  • 最多 1 张图片
  • 传入图片时为图片编辑模式,不传时为文生图模式

metadata

object · 可选

元数据参数,用于传递额外的配置选项

支持的 metadata 字段

response_format

string · 可选 · 默认 png

输出图像格式

可选值:pngjpg

safety_tolerance

integer · 可选 · 默认 2

安全过滤容忍度

取值范围:0 - 6,数值越高容忍度越高

prompt_upsampling

boolean · 可选 · 默认 false

是否启用提示词增强

  • true:自动优化/扩展提示词
  • false:使用原始提示词(默认)

Response

id

string · 可选

任务唯一标识符,用于查询任务状态

object

string · 可选

对象类型,固定为 generation.task

model

string · 可选

使用的模型名称

status

string · 可选

任务状态

  • queued - 排队等待处理
  • in_progress - 处理中
  • completed - 成功完成
  • failed - 失败

progress

integer · 可选

任务进度百分比(0-100)

created_at

integer · 可选

任务创建时间戳(Unix 时间戳)

metadata

object · 可选

任务元数据

使用场景

场景一:文生图

json
{
"model": "flux-kontext-pro",
"prompt": "赛博朋克风格的城市夜景,霓虹灯闪烁",
"size": "16:9",
"metadata": {
  "response_format": "png",
  "safety_tolerance": 2
}
}

场景二:图片编辑

json
{
"model": "flux-kontext-max",
"prompt": "将这张照片改为水彩画风格",
"size": "match_input_image",
"image_urls": ["https://your-media.example/photo.jpg"],
"metadata": {
  "response_format": "jpg",
  "prompt_upsampling": true
}
}

场景三:高质量文生图(Max 模型)

json
{
"model": "flux-kontext-max",
"prompt": "一只可爱的橘猫在窗台上晒太阳,写实风格",
"size": "1:1",
"metadata": {
  "response_format": "png",
  "safety_tolerance": 3
}
}

查询任务结果

图像生成为异步任务,提交后会返回任务 ID。使用 统一任务查询接口 接口查询生成进度和结果。

curl --request POST \
  --url https://newapi.dragon3api.com/v1/videos \
  --header 'Authorization: Bearer YOUR_DRAGONAPI_KEY' \
  --header 'Content-Type: application/json' \
  --data '{
    "model": "flux-kontext-pro",
    "prompt": "赛博朋克风格的城市夜景,霓虹灯闪烁",
    "size": "16:9",
    "metadata": {
      "response_format": "png"
    }
  }'
curl --request POST \
  --url https://newapi.dragon3api.com/v1/videos \
  --header 'Authorization: Bearer YOUR_DRAGONAPI_KEY' \
  --header 'Content-Type: application/json' \
  --data '{
    "model": "flux-kontext-max",
    "prompt": "将这张照片改为水彩画风格",
    "size": "match_input_image",
    "image_urls": ["https://your-media.example/photo.jpg"],
    "metadata": {
      "response_format": "jpg"
    }
  }'
import requests

response = requests.post(
    "https://newapi.dragon3api.com/v1/videos",
    headers={
        "Authorization": "Bearer YOUR_DRAGONAPI_KEY",
        "Content-Type": "application/json"
    },
    json={
        "model": "flux-kontext-pro",
        "prompt": "赛博朋克风格的城市夜景,霓虹灯闪烁",
        "size": "16:9",
        "metadata": {
            "response_format": "png"
        }
    }
)

task = response.json()
print(f"任务 ID: {task['id']}")
print(f"状态: {task['status']}")
import requests

response = requests.post(
    "https://newapi.dragon3api.com/v1/videos",
    headers={
        "Authorization": "Bearer YOUR_DRAGONAPI_KEY",
        "Content-Type": "application/json"
    },
    json={
        "model": "flux-kontext-max",
        "prompt": "将这张照片改为水彩画风格",
        "size": "match_input_image",
        "image_urls": ["https://your-media.example/photo.jpg"],
        "metadata": {
            "response_format": "jpg"
        }
    }
)

task = response.json()
print(f"任务 ID: {task['id']}")
print(f"状态: {task['status']}")
const response = await fetch('https://newapi.dragon3api.com/v1/videos', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer YOUR_DRAGONAPI_KEY',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    model: 'flux-kontext-pro',
    prompt: '赛博朋克风格的城市夜景,霓虹灯闪烁',
    size: '16:9',
    metadata: {
      response_format: 'png'
    }
  })
});

const task = await response.json();
console.log(`任务 ID: ${task.id}`);
console.log(`状态: ${task.status}`);
const response = await fetch('https://newapi.dragon3api.com/v1/videos', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer YOUR_DRAGONAPI_KEY',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    model: 'flux-kontext-max',
    prompt: '将这张照片改为水彩画风格',
    size: 'match_input_image',
    image_urls: ['https://your-media.example/photo.jpg'],
    metadata: {
      response_format: 'jpg'
    }
  })
});

const task = await response.json();
console.log(`任务 ID: ${task.id}`);
console.log(`状态: ${task.status}`);
{
  "id": "task_img_abc123def456",
  "object": "generation.task",
  "model": "flux-kontext-pro",
  "status": "queued",
  "progress": 0,
  "created_at": 1703884800,
  "metadata": {}
}

模型、价格与服务规则以当前控制台为准。