ComfyUI 워크플로우 '로고에 텍스처 적용'은 브랜드 디자이너와 마케터가 로고에 브랜드 아이덴티티에 맞는 텍스처와 요소를 더해 역동적인 에셋을 만들 수 있도록 설계되었습니다. LoadImage로 로고를 불러오고, GeminiImageNode와 GeminiImage2Node로 텍스처를 적용하며, ByteDanceFirstLastFrameNode로 자연스러운 영상 루프를 생성합니다. Gemini3 Pro Image Preview, Nano Banana Pro 등 모델을 활용해 고품질 텍스처 적용과 영상 렌더링을 지원합니다. 이 워크플로우를 통해 다양한 디지털 마케팅 캠페인에 활용할 수 있는 시각적으로 매력적인 브랜드 에셋을 제작할 수 있습니다.
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 "로고에 텍스처 적용" (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_logotype-v2.1_api.json");
const asset = client.assets.fromFile("input.png");
wf.setInput("4", "image", asset); // LoadImage
const job = await client.run(wf);
await job.getOutputs("11")[0].toFile("output.png"); // SaveVideoThe 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














