제품과 배경 합성 및 재조명 - After
제품과 배경 합성 및 재조명 - Before

이 ComfyUI 워크플로우는 제품 이미지를 배경 장면에 자연스럽게 합성하고, 고급 AI 기술로 사실적인 리라이트를 적용하도록 설계되었습니다. 워크플로우는 LoadImage 노드로 제품 이미지와 배경 이미지를 불러오는 것에서 시작합니다. 이후 RegexReplace 노드를 활용해 합성에 적합하도록 이미지를 준비합니다. 워크플로우의 핵심은 ByteDanceSeedreamNode로, Seedream 4.5 모델을 활용해 합성된 이미지의 조명과 그림자를 일관되고 자연스럽게 맞춥니다. 이 기술은 복잡한 촬영이나 수동 편집 없이 전문가 수준의 제품 이미지를 만드는 데 특히 유용합니다. 합성과 리라이트 과정을 자동화함으로써 시간 절약과 시각적 완성도를 동시에 제공합니다.

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.

templates-product_scene_relight.json
Fetching workflow JSON…

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 "제품과 배경 합성 및 재조명" (TypeScript)
import { Comfy } from "@comfyorg/sdk";

const client = new Comfy({ apiKey: "comfyui-..." });

// This workflow, exported in API format (see note below)
const wf = await client.workflows.fromFile("templates-product_scene_relight_api.json");

const asset = client.assets.fromFile("input.png");
wf.setInput("1", "image", asset); // LoadImage

const job = await client.run(wf);
await job.getOutputs("23")[0].toFile("output.png"); // SaveImage

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

자주 묻는 질문

모든 워크플로우 보기
Character
Cinematic
Image to Video
Lip Sync
Multiple Angles
Portrait
Style Reference
Style Transfer
Text to Video
Video Generation
Video
Showing 30 of 30 templates