Ideogram-V2 - AI Image Models Tool

Overview

Ideogram‑V2 is Ideogram AI’s high-quality image model optimized for mask-based inpainting, accurate prompt comprehension, and legible on-image text (logos, posters, signage). It is available on Replicate as ideogram-ai/ideogram-v2 (with a faster turbo variant) and is commonly used for repairing photos, removing or replacing elements, generating design assets, and creating images that include readable typography. ([replicate.com](https://replicate.com/ideogram-ai/ideogram-v2)) The model supports both generation from text and targeted image edits via an image+mask workflow; Replicate’s model page and version docs list prompt, image, mask, aspect_ratio, resolution, style_type, and seed among the API inputs. Users and Replicate examples highlight Ideogram‑V2’s strengths in preserving scene composition while producing crisp text in images, making it a popular choice for posters, packaging mockups, and UI/brand assets. The Ideogram product team has continued to iterate (Ideogram 3.0 was released later), and Ideogram‑V2 remains available on Replicate for programmatic use alongside Ideogram’s hosted product and API. ([replicate.com](https://replicate.com/ideogram-ai/ideogram-v2/versions/6677bad7d67f0a1918c1e800ee473a83ebf68f2d5c8f7e7140d9a7e5d9d2d02d/api?utm_source=openai))

Key Features

  • High-quality mask-based inpainting for targeted image edits and object replacement.
  • Accurate on-image text rendering suitable for logos, posters, and signage.
  • Strong prompt comprehension and Magic Prompt support for richer, context-aware outputs.
  • Two variants: standard (best quality) and turbo (faster inference).
  • Accessible via Replicate API with image+mask inputs for programmatic workflows.

Example Usage

Example (python):

import replicate
from pathlib import Path

# Replace REPLICATE_API_TOKEN in your environment
# Example: inpaint an image with a mask
output = replicate.run(
    "ideogram-ai/ideogram-v2",
    input={
        "prompt": "A vintage travel poster of Iceland with clear bold text reading 'EXPLORE ICELAND'",
        "image": Path("source.png"),
        "mask": Path("mask.png"),
        # optional fields:
        # "aspect_ratio": "16:9",
        # "resolution": "1024x1024",
        # "style_type": "design",
        # "seed": 42
    }
)
print(output)

Benchmarks

Total runs on Replicate: 2.6M runs (model page runs counter) (Source: https://replicate.com/ideogram-ai/ideogram-v2)

Model variants available: ideogram-ai/ideogram-v2 and ideogram-ai/ideogram-v2-turbo (quality vs. speed) (Source: https://replicate.com/blog/ideogram-v2-inpainting)

API input fields (selected): prompt, image, mask, aspect_ratio, resolution, style_type, seed (Source: https://replicate.com/ideogram-ai/ideogram-v2/versions/6677bad7d67f0a1918c1e800ee473a83ebf68f2d5c8f7e7140d9a7e5d9d2d02d/api)

Last Refreshed: 2026-01-08

Key Information

  • Category: Image Models
  • Type: AI Image Models Tool