Seedream 4.5 Edit
doubao/seedream-4.5/image-to-image
Seedream 4.5 Edit は、参照画像の顔の特徴、光、色調を保持し、最大 4K の高解像度でプロフェッショナルな高忠実度編集を提供します。プロンプトへの高い応答性を備えています。すぐに使用可能な REST 推論 API、最高のパフォーマンス、コールドスタートなし、手頃な価格。
サンプル
パラメータ
| 名前 | 型 | 既定 | 制約 | 説明 |
|---|---|---|---|---|
| images *画像 | image_upload | — | image/* · 1–10 items | 編集する画像。最大 10 枚の参照画像をアップロードできます。 |
| prompt *プロンプト | textarea | — | ≤ 5000 chars | 生成用のポジティブプロンプト。 |
| sizeサイズ | select | 2K | 2K | 4K | 出力解像度。選択したアスペクト比を MaaS 用のピクセル寸法に変換します。 |
| aspect_ratioアスペクト比 | select | 1:1 | 1: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 |
💡 主な利用ケース
- ポートレート修正:顔の特徴や照明を強化し、美容やファッション写真に最適。
- 衣装とアクセサリーの変更:さまざまな衣装スタイルやアクセサリーを試す。
- 背景置換:マーケティングやクリエイティブプロジェクトのシーンをアップグレード。
- 製品ビジュアルの更新:Eコマース向けにカラーバリエーションやデザイン変更を探る。
- インテリアと建築の調整:不動産やデザインポートフォリオのビジュアルを改善。
🔗 関連モデル
- Seedream 4.5 Edit Sequential:バッチ編集で一貫したスタイルを維持、ポートレートや製品写真シリーズに最適。
- Flux 2 Flex/Edit:クリエイティブな再スタイリングや雰囲気の変更に対応、アート指向のプロジェクトに適合。
- Flux 2 Pro/Edit:複数参照とコンテキスト認識制御を備えたプロダクション向け編集、複雑な合成に対応。
関連モデル
xAI Grok Imagine Image v2.0 画像編集
xAI Grok Imagine Image V2.0 Edit は、テキストによるプロンプトを使って入力画像を編集できるモデルです。解像度と品質を設定でき、精密な画像編集、ビジュアル調整、クリエイティブなバリエーション、SNS コンテンツ、マーケティング素材、制作ワークフローに適しています。すぐに使える REST 推論 API を提供し、高性能・コールドスタートなし・手頃な価格で利用できます。
Qwen Image 3.0 Pro Edit|高速画像編集
Qwen Image 3.0 Pro Edit は、優れた画質と高度な指示理解を備えたプロ向けの画像編集モデルです。最大 2k に対応。すぐに使える REST inference API を提供し、高性能、コールドスタートなし、手頃な価格で利用できます。
ヘッドスワップ(画像)
Swap the head in a photo with the head from a reference image. Upload the target photo first, then the head reference.
Nami Qwen I2I Spicy
自然言語の指示で参照画像を編集し、変更を指定していない部分をできるだけ保持します。
Nano Banana 画像編集
高速・低価格な編集。 マスキング不要で、直感的なオブジェクト置換やスタイル変換が可能。
Nano Banana Pro 画像編集
4K セマンティック編集。自然言語で画像を修正。文脈認識と画像内多言語テキスト編集に対応。
Nano Banana 2 画像編集
4K セマンティック編集。自然言語で画像を修正。文脈認識と画像内多言語テキスト編集に対応。
Seedream V5.0 Pro Edit 画像編集・生成 API
ByteDance の Seedream V5.0 Pro Edit は、単一画像または複数の参照画像をもとに画像の編集・生成を行えます。最大 10 枚の参照画像に対応し、アスペクト比の選択と 1K / 2K の出力階層をサポートしています。すぐに使える REST 推論 API で、高性能、コールドスタートなし、手頃な価格です。