Este flujo de trabajo ComfyUI, titulado 'Topaz: Escalado de Paisajes con Topaz Reimagine', está diseñado para mejorar y escalar imágenes de paisajes, resaltando detalles intrincados y mejorando la calidad general de la imagen. El flujo de trabajo utiliza el modelo Topaz Reimagine, reconocido por su capacidad para mejorar paisajes naturales con gran claridad. Los nodos clave incluyen LoadImage, que importa la imagen original de paisaje, y TopazImageEnhance, que aplica algoritmos avanzados para escalar la imagen preservando texturas y detalles naturales. El nodo GetImageSize asegura que la imagen se escale adecuadamente, y ImageScaleBy ajusta las dimensiones a la resolución deseada. Finalmente, el nodo SaveImage genera la imagen mejorada, lista para impresión de alta calidad o exhibición digital. Este flujo de trabajo es especialmente útil para fotógrafos y artistas digitales que necesitan escalar imágenes de paisajes sin perder detalle ni introducir artefactos.
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 "Topaz: Ampliado de paisajes con Topaz Reimagine" (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("utility-topaz_landscape_upscaler_api.json");
const asset = client.assets.fromFile("input.png");
wf.setInput("2", "image", asset); // LoadImage
const job = await client.run(wf);
await job.getOutputs("4")[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.
Preguntas frecuentes
















