Seedream 5.0 Pro: 이미지 편집은 원본의 조명, 깊이, 질감을 유지하면서 원하는 부분만 바꿀 수 있는 정밀 이미지-투-이미지 및 인페인팅 워크플로입니다. LoadImage로 소스 사진을 불러오고, 필요에 따라 Painter로 타겟 영역을 마스킹합니다. 핵심 변환은 ByteDanceSeedreamNodeV2에서 이루어지며, 입력 이미지(및 마스크가 있을 경우)를 조건으로 프롬프트 기반 변환을 구조를 해치지 않고 적용합니다. 마지막으로 SaveImageAdvanced가 파일명과 폴더를 지정해 결과물을 저장합니다.
Painter의 마스크는 편집을 특정 영역으로 제한하고, 입력 이미지 조건화는 Seedream이(가) 장면의 기하와 소재를 보존하도록 돕습니다. 출력은 두 가지: ByteDanceSeedreamNodeV2의 메인 편집 이미지와 Painter로 가이드된 미리보기(빠른 QA 및 전후 비교에 유용). 프롬프트/네거티브 프롬프트, 디노이즈 강도(변경/보존 정도), 스텝, 가이던스(CFG), 시드 등 주요 파라미터를 조정해 제품 사진 미세 보정, 시리즈 내 인물 일관성 유지, 구조적 다국어 텍스트 배치 등에 활용할 수 있습니다.
API
Use this workflow from code
Every Comfy workflow is a JSON graph. The payload below is this workflow, exactly as ComfyUI runs it — fetch it from the URL, keep it in version control, or load it in ComfyUI and run it node by node.
Run it from TypeScript or Python with the Comfy SDK. The same code targets Comfy Cloud or a ComfyUI you host yourself — only the base URL changes.
// Install (beta)
npm i @comfyorg/sdk
// Run this workflow (TypeScript)
import { Comfy } from "@comfyorg/sdk";
const client = new Comfy({ apiKey: "comfyui-..." });
const wf = await client.workflows.fromFile("workflow_api.json");
const job = await client.run(wf);
await job.getOutputs("<output-node-id>")[0].toFile("output.png");The SDK takes a workflow in API format: open this workflow in ComfyUI and use File → Export Workflow (API).
Comfy Cloud API access requires a plan with an API key.
FAQ
















