이 ComfyUI 워크플로우는 정적인 로고를 역동적인 텍스처 비디오 에셋으로 변환해 브랜드 존재감을 높일 수 있도록 설계되었습니다. 특화된 노드와 모델을 활용해 사용자가 로고와 원하는 텍스처, 추가 요소를 업로드하면, 이를 하나의 통합된 비디오로 자연스럽게 합성합니다. 'LoadImage' 노드로 로고, 텍스처, 추가 요소를 불러오고, 'GeminiImage2Node'가 이 이미지들을 처리해 로고에 지정한 텍스처와 요소를 적용합니다. 이 노드는 Gemini3 Pro Image Preview 모델을 사용해 고품질 이미지 변환을 보장합니다.

이미지 준비가 끝나면 'ByteDanceImageToVideoNode'가 텍스처가 적용된 로고를 비디오로 변환하며, ByteDance 모델의 고급 기술로 부드러운 전환과 전문적인 품질을 구현합니다. 마지막으로 'SaveVideo' 노드로 완성된 비디오를 출력하며, 필요시 'SaveImage' 노드로 비디오의 스틸 이미지를 저장할 수도 있습니다. 이 워크플로우는 복잡한 영상 편집 기술 없이도 브랜드 디자이너가 매력적인 비주얼 콘텐츠를 제작하는 데 특히 유용합니다.

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-textured_logo_elements.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 "logo에 텍스처·요소 추가" (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-textured_logo_elements_api.json");

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

const job = await client.run(wf);
await job.getOutputs("13")[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