Magnific:クリエイティブ画像アップスケール - After
Magnific:クリエイティブ画像アップスケール - Before

「Magnific: Creative Image Upscale」ワークフローは、画像の品質やディテールを保ちながら解像度を向上させるために設計されています。Magnificモデルを活用し、最大16倍までの拡大が可能です。印刷やデジタルアート、高精細なビジュアルプレゼンテーションなど、高解像度画像が必要な用途に特に有用です。LoadImageノードで画像をアップロードし、MagnificImageUpscalerCreativeNodeで高度なアルゴリズムによるクリエイティブなアップスケールを実行します。このノードはアート性を維持しつつ解像度を向上させます。最後にSaveImageノードで拡大画像を保存し、ImageCompareノードで元画像と拡大画像を並べて比較できます。

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.

api_magnific_image_upscale_creative.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 "Magnific:クリエイティブ画像アップスケール" (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("api_magnific_image_upscale_creative_api.json");

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

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

よくある質問

すべてのワークフローを見る
Character
Cinematic
Image to Video
Lip Sync
Multiple Angles
Portrait
Style Reference
Style Transfer
Text to Video
Video Generation
Video
Showing 30 of 30 templates