Генерация текст в изображение Anima Anime

The Anima Anime Text-to-Image Generation workflow in ComfyUI is designed to transform text prompts into captivating anime-style images. This workflow leverages the Anima model, a specialized text-to-image model trained on anime and non-photorealistic art styles, ensuring that the generated images maintain the distinct aesthetics of anime. The workflow involves several key nodes, including CLIPTextEncode for processing the text prompt, and VAEDecode for decoding the latent space into a visual output. By adjusting parameters such as steps and CFG scale within the KSampler node, users can fine-tune the artistic style and detail of the generated image.

Technically, this workflow is structured into three main steps: loading the necessary models, setting the image size, and inputting the prompt. The VAELoader and UNETLoader nodes are crucial for preparing the model components, while the EmptyLatentImage node initializes the latent space for image generation. The SaveImage node ensures that the final output is stored for user access. This workflow is particularly useful for artists and content creators who wish to quickly generate anime-style visuals from textual descriptions, providing a creative tool for concept art, storyboarding, and digital illustration.

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.

image_anima_preview.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 "Генерация текст в изображение Anima Anime" (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("image_anima_preview_api.json");

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