
「ワンクリック複数視点生成」ワークフローは、1枚の画像からシーンの多様な視点を簡単に生成するために設計されています。Qwen-Image-Editモデルを活用し、入力画像を解析して様々なアングルを生成し、視覚的なバリエーションを提供します。建築、ゲームデザイン、VRなど、シーンを多角的に把握する必要がある分野で特に有用です。
技術的には、LoadImageノードでユーザーのシーン画像を読み込み、ノードID 0f47377a-2933-4dba-9791-a9c54b078226のQwen-Image-Editモデルが画像を処理して新たな視点を生成します。結果はSaveImageノードで保存されます。最小限の操作で複雑な画像編集が可能となり、プロ・趣味問わず役立つツールです。
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 "ワンクリック多角度シーン" (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














