이 ComfyUI 워크플로우 '3x3 브랜드 아이콘 에셋 그리드'는 브랜드 아이덴티티에 맞는 스타일리시한 아이콘 에셋 세트를 빠르게 제작할 수 있도록 설계되었습니다. 아이콘 참조 이미지를 업로드하고, 브랜드 정보를 입력하면, 일관된 스타일의 9개 고유 아이콘이 생성됩니다. Gemini3 Pro Image Preview와 Nano Banana Pro 등 다양한 모델과 노드를 조합해 고품질 결과를 보장합니다. LoadImage, GeminiImage2Node, SaveImage 등 주요 노드가 입력 이미지를 처리하고 스타일 변환을 적용합니다.
기술적으로, comfyui-kjnodes, comfyui_essentials 등 커스텀 노드로 기능과 유연성을 강화했습니다. PrimitiveInt, PrimitiveStringMultiline 등으로 입력값을 세밀하게 조정할 수 있고, RegexReplace로 브랜드 파라미터에 맞는 결과를 보장합니다. Reroute 노드로 데이터 흐름을 최적화해, 각 아이콘이 의도한 특성을 갖도록 합니다. 브랜드 디자이너나 마케팅팀이 창의성과 브랜드 일관성을 모두 확보한 아이콘 세트를 빠르게 제작할 때 특히 유용합니다.
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 "3x3 브랜드 아이콘 자산 그리드" (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-3x3_grid_brand_icons_api.json");
const asset = client.assets.fromFile("input.png");
wf.setInput("1", "image", asset); // LoadImage
const job = await client.run(wf);
await job.getOutputs("25")[0].toFile("output.png"); // SaveImageThe 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














