Magnific: Ampliação Criativa de Imagem - After
Magnific: Ampliação Criativa de Imagem - Before

O fluxo 'Magnific: Upscale Criativo de Imagem' foi criado para aumentar a resolução de imagens preservando qualidade e detalhes. Ele utiliza o modelo Magnific, conhecido por ampliar imagens em até 16 vezes o tamanho original. É especialmente útil para aplicações que exigem imagens em alta resolução, como impressão, arte digital e apresentações visuais detalhadas. O fluxo começa com o nó LoadImage, permitindo ao usuário enviar a imagem desejada. O núcleo do processo é o MagnificImageUpscalerCreativeNode, que aplica algoritmos sofisticados para ampliar a imagem de forma criativa, mantendo a integridade artística. Por fim, o nó SaveImage permite salvar a imagem ampliada, e o ImageCompare oferece comparação lado a lado entre original e ampliada, garantindo avaliação das melhorias.

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: Ampliação Criativa de Imagem" (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

Perguntas Frequentes

Ver todos os workflows
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