
This ComfyUI workflow is designed to assist users in creating professional magazine cover designs and exploring packaging options. It leverages the power of the Nano Banana Pro model to generate high-quality images and layouts, ensuring that your magazine cover stands out with a polished and appealing look. The workflow begins with the LoadImage node, which allows users to import their base image or photo. This image is then processed using the GeminiImage2Node, which applies advanced text layout techniques to seamlessly integrate titles, headlines, and other text elements onto the cover. Finally, the SaveImage node ensures that the finished design is saved in the desired format for easy sharing or printing.
Technically, this workflow is efficient and user-friendly, making it an excellent choice for both beginners and experienced designers. The use of the Google model in conjunction with Nano Banana Pro enhances the workflow's ability to handle complex design tasks, such as balancing text and image elements for optimal visual appeal. This workflow is particularly useful for those in the publishing industry or anyone looking to create eye-catching magazine covers and packaging designs with minimal effort.
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/330550d83e6c.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 "Magazine Cover & Package Design" (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("template-multistyle-magazine-cover-nanobananapro_api.json")
asset = client.assets.from_file("input.png")
wf.set_input("2", "image", asset) # LoadImage
job = client.run(wf)
for output in job.get_outputs("5"): # 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














