I’ve been exploring ways to automate parts of my image generation workflow lately, and one tool I came across is img2.ai. It supports a few useful image-related workflows in one place, so I started wondering whether anyone here has tried connecting a tool like this with n8n for content pipelines or creative automation.
What I’m most interested in is building a simple flow like this:
trigger from a form, sheet, or webhook
send prompt or source image into the image tool
get the generated result back
save it to cloud storage or push it into a CMS / social workflow
I’m also curious how people here usually structure this kind of pipeline in n8n. Do you keep image generation as a separate branch, or do you combine it with approval steps, metadata tagging, and publishing in one workflow?
I’m not looking for anything overly complex at first—just a practical setup for faster content production and testing ideas. If anyone has built something similar with AI image tools, I’d love to hear how you approached it and what worked well.
Tool I was looking at: https://img2.ai/
Hi @Yy_Lee , good day ![]()
I’m not aware of a dedicated img2.ai template in the official n8n gallery, there are a few workflow templates that are very close to the pattern you described and should be useful as a starting point. I’d especially point to the templates for image creation with OpenAI, generate/edit image workflows, and the example that generates AI images and uploads them to Google Drive, since they follow the same general structure: trigger > call image API > receive result > store/publish. If img2.ai exposes a standard API, you could usually swap the provider-specific request step for an HTTP Request node and keep the rest of the workflow design almost the same.
Store AI-generated images in AWS S3: OpenAI image creation & cloud storage | n8n workflow template
Generate AI images with APImage and upload to Google Drive | n8n workflow template
Generate and Edit Images with OpenAI’s GPT-Image-1 Model | n8n workflow template
Generate custom AI images with OpenAI GPT-Image-1 model | n8n workflow template
Image creation with OpenAI and Telegram | n8n workflow template
@Yy_Lee nobody else dropped an actual workflow so here you go, webhook trigger into HTTP Request into Google Drive upload:
swap out the api url/body shape once you check img2’s actual api docs, plug in your google drive creds on the last node and you’re set.