Seedream 4.5 Edit

doubao/seedream-4.5/image-to-image

Seedream 4.5 Edit 保留参考图片中的面部特征、光影和色调,提供专业的高保真编辑,支持最高 4K 分辨率,并对提示词有很强的响应能力。即开即用的 REST 推理 API,性能最佳,无冷启动,价格实惠。

示例

Seedream 4.5 Edit example 1

参数

名称类型默认约束说明
images *图片image_uploadimage/* · 1–10 items需要编辑的图片。最多可上传 10 张参考图片。
prompt *提示词textarea≤ 5000 chars用于生成的正向提示词。
size尺寸select2K2K | 4K输出分辨率档位;系统会结合宽高比转换为 MaaS 所需的像素尺寸。
aspect_ratio宽高比select1:11:1 | 3:2 | 2:3 | 3:4 | 4:3 | 9:16 | 16:9 | 21:9生成图片的宽高比。

API

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

cURL
# 1) Submit — returns { "task_uuid": "..." }
curl -X POST "https://www.namifusion.com/api/v1/marketplace/run/doubao/seedream-4.5/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/76c1186af77d.png",
      "https://assets-public.namifusion.com/uploads/images/2026-04-21/149467630166.png"
    ],
    "prompt": "Enhance the facial features while preserving natural skin tone and texture. Add soft lighting and a cinematic color grade.",
    "size": "4K",
    "aspect_ratio": "16:9"
  }
}'

# 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-4.5/image-to-image",
    headers=HEADERS,
    json={
        "input": {
            "images": [
                "https://assets-public.namifusion.com/uploads/images/2026-04-21/76c1186af77d.png",
                "https://assets-public.namifusion.com/uploads/images/2026-04-21/149467630166.png"
            ],
            "prompt": "Enhance the facial features while preserving natural skin tone and texture. Add soft lighting and a cinematic color grade.",
            "size": "4K",
            "aspect_ratio": "16:9"
        }
    },
)
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-4.5/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/76c1186af77d.png",
        "https://assets-public.namifusion.com/uploads/images/2026-04-21/149467630166.png"
      ],
      "prompt": "Enhance the facial features while preserving natural skin tone and texture. Add soft lighting and a cinematic color grade.",
      "size": "4K",
      "aspect_ratio": "16:9"
    }
  }),
});
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 4.5 Edit

专业级高保真图像编辑,精准保留参考图像特征

Seedream 4.5 Edit 是一款高端图像到图像编辑模型,专为提供专业级别的编辑效果而设计。它能够保留参考图片中的面部特征、光照和色调,同时应用精准的提示词驱动编辑。支持最高 4K 分辨率、强提示词理解能力以及批量处理功能,非常适合需要高质量视觉变换的创意专业人士和企业使用。


🚀 核心功能

  • 参考图像忠实编辑:保留原图中的身份特征、姿势、光照和色彩。
  • 多图支持:同时编辑最多 10 张图片,确保批量编辑结果一致。
  • 高保真细节:即使在复杂编辑中也能呈现清晰纹理、干净边缘和最小化伪影。
  • 强提示词理解能力:精准解析服装、背景、氛围和风格变化的细微指令。
  • 支持 4K 输出:最高支持 8192 × 8192 像素分辨率,呈现超高清细节。
  • 无冷启动:即时性能,低延迟响应。

🛠️ 技术规格

规格详情
模型架构专有图像到图像编辑模型
输入格式图片数组(1–10 张图片)
输出格式编辑后的图片(PNG、JPEG)
分辨率512 × 512 至 8192 × 8192 像素
提示词用于指定编辑的正向提示词
延迟低延迟,优化批量处理
最大批量大小10 张图片

示例提示词

  • 服装更改:"将夹克更改为红色皮革,保持姿势和背景,电影光效。"
  • 背景替换:"将背景替换为日落海滩场景,匹配原始光线方向。"
  • 风格调整:"应用复古电影色彩分级,保持主体身份和构图。"

💰 价格

分辨率每张图片价格
最高 4K(8192 × 8192)$0.04

💡 最佳使用场景

  • 肖像修饰:增强面部特征和光照效果,用于美妆或时尚摄影。
  • 服装和配饰更换:尝试不同的服装风格和配饰。
  • 背景替换:为营销或创意项目升级场景。
  • 产品视觉更新:探索电商产品的配色和设计变化。
  • 室内和建筑调整:优化房地产或设计作品集的视觉效果。

🔗 相关模型

  • Seedream 4.5 Edit Sequential:确保批量编辑风格一致,适用于肖像或产品系列照片。
  • Flux 2 Flex/Edit:提供创意重塑和氛围转换,适合艺术指导项目。
  • Flux 2 Pro/Edit:生产级编辑,支持多参考和上下文感知控制,用于复杂合成。

相关模型

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 / 每次