This ComfyUI workflow, titled '3x3 Brand Icon Assets Grid', is designed to streamline the process of creating a set of stylized icon assets that align with your brand's identity. By uploading a reference image of an icon and entering specific brand information, this workflow generates nine unique icons that maintain consistency with your brand's style. The workflow utilizes a combination of models and nodes, including the Gemini3 Pro Image Preview and Nano Banana Pro, to ensure high-quality output. Key nodes such as LoadImage, GeminiImage2Node, and SaveImage work together to process the input image and apply the desired stylistic transformations.
Technically, the workflow integrates custom nodes like comfyui-kjnodes and comfyui_essentials to enhance functionality and flexibility. Nodes like PrimitiveInt and PrimitiveStringMultiline allow for precise input adjustments, while RegexReplace ensures that the output aligns with specified brand parameters. The use of Reroute nodes facilitates efficient data flow between processes, ensuring that each icon is generated with the intended characteristics. This workflow is particularly useful for brand designers and marketing teams looking to quickly produce a cohesive set of icon assets without sacrificing creativity or brand integrity.
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.
GET https://comfy.org/workflows/download/aeda3ae212cd.jsonFetching workflow JSON…
Run it from Python or TypeScript with the Comfy SDK. The same code targets Comfy Cloud or a ComfyUI you host yourself — only the base URL changes.
# Install (beta)
pip install comfy-sdk # Python
npm i @comfyorg/sdk # TypeScript
# Run "3x3 Brand Icon Assets Grid" (Python)
from comfy_sdk import Comfy
client = Comfy(api_key="comfyui-...")
# This workflow, exported in API format (see note below)
wf = client.workflows.from_file("templates-3x3_grid_brand_icons_api.json")
asset = client.assets.from_file("input.png")
wf.set_input("1", "image", asset) # LoadImage
job = client.run(wf)
for output in job.get_outputs("25"): # SaveImage
output.to_file(output.name)The SDK takes a workflow in API format: open this workflow in ComfyUI and use File → Export Workflow (API). API access requires a Comfy Cloud plan with an API key. SDK docs · Get an API key
FAQ














