'Topaz: 일러스트 업스케일' 워크플로우는 Topaz 모델을 활용하여 일러스트의 해상도를 높이고 색상 정확도와 스타일 요소를 유지하도록 설계되었습니다. 이 워크플로우는 디지털 일러스트를 원본의 퀄리티를 잃지 않고 업스케일해야 하는 아티스트와 디자이너에게 특히 유용합니다. LoadImage 노드로 이미지를 불러온 후, TopazImageEnhance 노드에서 업스케일 알고리즘을 적용합니다. ImageScaleBy 노드로 원하는 크기로 이미지를 조정하고, GetImageSize 노드로 출력 크기를 확인합니다. 마지막으로 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 "Topaz: 일러스트 업스케일" (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_illustration_upscale_api.json");
const asset = client.assets.fromFile("input.png");
wf.setInput("5", "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.
FAQ
















