Seedream 5.0 Edit

doubao/seedream-5.0-lite/image-to-image

Seedream 5.0 Lite Edit 是一款先进的图片编辑模型,可保留参考图片中的面部特征、光线和色调。支持高保真编辑,具备专业质量、出色的提示词响应能力,并支持最高 4K 分辨率。提供即用型 REST 推理 API,性能卓越,无冷启动,价格实惠。

示例

Seedream 5.0 Edit example 1

参数

名称类型默认约束说明
images *图片image_uploadimage/* · 1–10 items要编辑的图片。最多可上传 10 张参考图片。
prompt *提示词textarea≤ 5000 chars用于生成的正向提示词。
size尺寸text2048x2048≤ 500 chars指定生成图片的宽度和高度像素值。
output_format输出格式selectjpeg | png输出图片的格式。

API

通过统一 REST API 调用本模型;在 API Keys 页获取密钥。

cURL
# 1) Submit — returns { "task_uuid": "..." }
curl -X POST "https://www.namifusion.com/api/v1/marketplace/run/doubao/seedream-5.0-lite/image-to-image" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "input": {
    "images": [
      "https://assets-public.namifusion.com/uploads/images/2026-04-21/fb08b5a532e1.png",
      "https://assets-public.namifusion.com/uploads/images/2026-04-21/47b6ac92ee74.png",
      "https://assets-public.namifusion.com/uploads/images/2026-04-21/b9e854af97c0.png"
    ],
    "prompt": "Generate a high-fidelity edited image retaining the natural lighting and facial features of the reference image while enhancing skin tone and sharpness.",
    "size": "2048x2048",
    "output_format": "png"
  }
}'

# 2) Poll until status is "completed", then read the output URLs
curl "https://www.namifusion.com/api/v1/marketplace/run/tasks/TASK_UUID" \
  -H "Authorization: Bearer YOUR_API_KEY"
Python
import time, requests

API_KEY = "YOUR_API_KEY"
HEADERS = {"Authorization": f"Bearer {API_KEY}"}

# 1) Submit
resp = requests.post(
    "https://www.namifusion.com/api/v1/marketplace/run/doubao/seedream-5.0-lite/image-to-image",
    headers=HEADERS,
    json={
        "input": {
            "images": [
                "https://assets-public.namifusion.com/uploads/images/2026-04-21/fb08b5a532e1.png",
                "https://assets-public.namifusion.com/uploads/images/2026-04-21/47b6ac92ee74.png",
                "https://assets-public.namifusion.com/uploads/images/2026-04-21/b9e854af97c0.png"
            ],
            "prompt": "Generate a high-fidelity edited image retaining the natural lighting and facial features of the reference image while enhancing skin tone and sharpness.",
            "size": "2048x2048",
            "output_format": "png"
        }
    },
)
resp.raise_for_status()  # 401/402/429/5xx stop here instead of polling a bad task
task = resp.json()

# 2) Poll until a terminal state (completed / failed / cancelled).
#    This model is allowed up to 300s server-side.
deadline = time.time() + 360
while task.get("status") not in ("completed", "failed", "cancelled"):
    if time.time() > deadline:
        raise TimeoutError(f"still {task.get('status')} — keep the task_uuid and poll later")
    time.sleep(3)
    poll = requests.get(f"https://www.namifusion.com/api/v1/marketplace/run/tasks/{task['task_uuid']}", headers=HEADERS)
    poll.raise_for_status()
    task = poll.json()

print(task["status"], task.get("output"))
JavaScript
const API_KEY = "YOUR_API_KEY";
const HEADERS = { Authorization: `Bearer ${API_KEY}` };

// 1) Submit
const resp = await fetch("https://www.namifusion.com/api/v1/marketplace/run/doubao/seedream-5.0-lite/image-to-image", {
  method: "POST",
  headers: { ...HEADERS, "Content-Type": "application/json" },
  body: JSON.stringify({
    "input": {
      "images": [
        "https://assets-public.namifusion.com/uploads/images/2026-04-21/fb08b5a532e1.png",
        "https://assets-public.namifusion.com/uploads/images/2026-04-21/47b6ac92ee74.png",
        "https://assets-public.namifusion.com/uploads/images/2026-04-21/b9e854af97c0.png"
      ],
      "prompt": "Generate a high-fidelity edited image retaining the natural lighting and facial features of the reference image while enhancing skin tone and sharpness.",
      "size": "2048x2048",
      "output_format": "png"
    }
  }),
});
if (!resp.ok) throw new Error(`submit failed: ${resp.status} ${await resp.text()}`);
let task = await resp.json();

// 2) Poll until a terminal state (completed / failed / cancelled).
//    This model is allowed up to 300s server-side.
const deadline = Date.now() + 360 * 1000;
while (!["completed", "failed", "cancelled"].includes(task.status)) {
  if (Date.now() > deadline) throw new Error(`still ${task.status} — keep the task_uuid and poll later`);
  await new Promise((r) => setTimeout(r, 3000));
  const poll = await fetch(`https://www.namifusion.com/api/v1/marketplace/run/tasks/${task.task_uuid}`, { headers: HEADERS });
  if (!poll.ok) throw new Error(`poll failed: ${poll.status}`);
  task = await poll.json();
}

console.log(task.status, task.output);

文档

Seedream 5.0 Lite Edit

高保真图像编辑,专业质量,支持最高 4K 分辨率

Seedream 5.0 Lite Edit 是一款先进的文本到图像模型,专为精确图像编辑设计,同时保留参考图片中的面部特征、光线和色调。该模型具有卓越的提示词响应能力、灵活的输出尺寸选择以及实惠的价格。作为轻量化模型,它优化了速度和质量,并通过即用型 REST 推理 API 实现无冷启动的无缝集成。


🚀 核心功能

  • 支持多张参考图片:最多可使用 10 张参考图片进行复杂的合成和转换。
  • 自然语言编辑:使用简单的文字描述编辑内容,实现直观且精准的控制。
  • 风格迁移:将主体转换为各种美学风格,例如赛博朋克、动漫、幻想等。
  • 灵活的输出尺寸:可指定自定义尺寸,或默认使用参考图片的宽高比。
  • 提示词增强器:自动优化您的编辑描述以获得更好的结果。
  • 轻量化与快速响应:优化快速迭代,同时保持高质量输出。

🛠️ 技术规格

规格详情
模型架构Bytedance Seedream V5.0 Lite Edit 专有模型
任务类型文本到图像编辑
输入格式参考图片(数组,最多 10 张),提示词(字符串)
输出格式JPEG, PNG
分辨率可自定义(512 x 512 至 8192 x 8192 像素)
价格每张图片 $0.035
API 集成REST API,无冷启动

示例提示词

  1. "将 Figure 1 转换为赛博朋克风格,使用霓虹灯光。"
  2. "为 Figure 2 应用幻想风格,同时保留原始色调。"
  3. "将 Figure 1 和 Figure 3 合并为超现实合成图像。"

💰 价格

输出费用
每张图片$0.035

💡 最佳应用场景

  • 风格迁移:将肖像转换为赛博朋克、动漫或幻想等艺术风格。
  • 角色重塑:将主体放置在新的环境或场景中。
  • 创意合成:结合多张参考图片中的元素进行独特编辑。
  • 概念艺术:为创意项目生成现有图片的风格化版本。
  • 社交媒体内容:为帖子和个人资料创建视觉吸引力强的编辑内容。

🔗 相关模型

  • Seedream V5.0 Lite 文本到图像:直接从文本提示生成图像。
  • Seedream V4 文本到图像:上一代文本到图像任务模型。

相关模型

xAI Grok Imagine Image v2.0 图片编辑
Image to ImageX Ai

xAI Grok Imagine Image v2.0 图片编辑

xAI Grok Imagine Image V2.0 Edit 可根据文本提示词对输入图片进行编辑,并支持可配置的分辨率和质量,适用于精细图片编辑、视觉优化、创意变体、社交内容、营销素材和生产工作流。提供开箱即用的 REST 推理 API,性能出色,无冷启动,价格实惠。

$0.090 / 每次
Qwen Image 3.0 Pro Edit|快速图片编辑
Image to ImageQwen Image 3.0 Pro

Qwen Image 3.0 Pro Edit|快速图片编辑

Qwen Image 3.0 Pro Edit 是一款专业级图片编辑模型,具备出色的画质和高级指令理解能力。最高支持 2k。提供开箱即用的 REST inference API,性能优异,无冷启动,价格实惠。

$0.080 / 每次
Image to Image
Image to ImageNamiFusion

图片换头

将照片中的人物头部替换为参考图中的头部。先上传目标照片,再上传头部参考图。

$0.220 / 每次
Nami Qwen I2I Spicy
Image to Image

Nami Qwen I2I Spicy

使用自然语言指令编辑参考图片,并尽量保留未要求修改的内容。

$0.040 / 每次
Nano Banana 图像编辑
Image to ImageGoogle

Nano Banana 图像编辑

高性价比智能修图。 无需蒙版即可实现物体替换与风格迁移,极速响应,成本低廉。

$0.040 / 每次
Nano Banana Pro 图像编辑
Image to ImageGoogle

Nano Banana Pro 图像编辑

4K 语义级修图。基于自然语言修改现有图像,支持智能光影融合与图像内多语言文字编辑。

$0.140 / 每次
Nano Banana 2 图像编辑
Image to ImageGoogle

Nano Banana 2 图像编辑

4K 语义级修图。基于自然语言修改现有图像,支持智能光影融合与图像内多语言文字编辑。

$0.070 / 每次
Seedream V5.0 Pro Edit 图片编辑与生成 API
Image to ImageDoubao

Seedream V5.0 Pro Edit 图片编辑与生成 API

ByteDance 推出的 Seedream V5.0 Pro Edit 可基于单张图片或多参考图进行图片编辑与生成,最多支持 10 张参考图片,支持宽高比选择以及 1K / 2K 输出档位。开箱即用的 REST 推理 API,性能出色,无冷启动,价格实惠。

$0.050 / 每次