
The '1 click Multiple Scene Angles' workflow is designed to simplify the process of generating multiple perspectives of a given scene from a single image input. By leveraging the Qwen-Image-Edit model, this workflow efficiently analyzes the input image and produces various angles, enriching the visual narrative with diverse viewpoints. This is particularly useful in fields such as architecture, game design, and virtual reality, where a comprehensive understanding of a scene from multiple angles is crucial.
Technically, the workflow begins with the LoadImage node, which imports the user's scene image into the system. The Qwen-Image-Edit model, identified by the node ID 0f47377a-2933-4dba-9791-a9c54b078226, processes the image to generate new perspectives. The results are then saved using the SaveImage node. This streamlined process allows users to achieve complex image edits with minimal input, making it an invaluable tool for professionals and hobbyists alike.
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 "1 click Multiple Scene Angles" (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-1_click_multiple_scene_angles-v1.0_api.json");
const asset = client.assets.fromFile("input.png");
wf.setInput("25", "image", asset); // LoadImage
const job = await client.run(wf);
await job.getOutputs("43")[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














