Realistic Poster Redesign With Character Transformation

This ComfyUI workflow, titled 'Realistic Poster Redesign With Character Transformation,' is designed to transform your uploaded images into stunning, realistic poster designs. Utilizing the Nano Banana Pro model, this workflow allows for intricate changes to character poses, faces, and clothing while preserving the artistic style and color scheme of the original image. The workflow is structured around a series of nodes, including LoadImage, SaveImage, and GeminiImage2Node, which collectively facilitate the transformation process. Additionally, the ComfySwitchNode and StringConcatenate nodes allow users to toggle between poster remake mode and regular image edit mode, offering flexibility in the type of transformation applied.

The workflow is particularly useful for artists and designers looking to create visually impactful posters with artistic typography. By leveraging the capabilities of the Nano Banana Pro model, users can achieve high-quality results that are both aesthetically pleasing and technically impressive. The integration of MarkdownNote and PrimitiveStringMultiline nodes further enhances the workflow by allowing users to add custom text and notes, making it a versatile tool for creative projects.

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_doc_workbox_poster_recreator.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 "Realistic Poster Redesign With Character Transformation" (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_doc_workbox_poster_recreator_api.json");

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

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

Frequently Asked Questions

View all workflows
Showing 30 of 30 templates