Ideogram 3.0 on Replicate

📰 Replicate Blog

Ideogram 3.0 is a major update to the text-to-image model with improvements in realism, style control, and layout generation

intermediate Published 7 May 2025
Action Steps
  1. Explore the three varieties of Ideogram 3.0: Turbo, Balanced, and Quality
  2. Use Replicate's JS client to run each model and generate images
  3. Experiment with different prompts and aspect ratios to achieve desired results
  4. Apply custom styles to images using reference images with style transfer
Who Needs to Know This

Designers, marketers, and AI engineers on a team can benefit from Ideogram 3.0's features, such as generating layouts and applying custom styles, to create high-quality images and designs

Key Insight

💡 Ideogram 3.0 offers more control and better text rendering, making it suitable for graphic design and marketing work

Share This
💡 Ideogram 3.0 is here! Major update to text-to-image model with improved realism, style control, and layout generation #AI #Design

Key Takeaways

Ideogram 3.0 is a major update to the text-to-image model with improvements in realism, style control, and layout generation

Full Article

# Ideogram 3.0 on Replicate – Replicate blog

[Replicate has joined Cloudflare](https://replicate.com/blog/replicate-cloudflare)

[](https://replicate.com/)

cmd+k

[Explore](https://replicate.com/explore)[Pricing](https://replicate.com/pricing)[Enterprise](https://replicate.com/enterprise)[Docs](https://replicate.com/docs)[Blog](https://replicate.com/blog)[Sign in](https://replicate.com/signin)[Try for free](https://replicate.com/signin)

Menu

[Explore](https://replicate.com/explore)[Pricing](https://replicate.com/pricing)[Enterprise](https://replicate.com/enterprise)[Docs](https://replicate.com/docs)[Blog](https://replicate.com/blog)[Sign in](https://replicate.com/signin)[Try for free](https://replicate.com/signin)

* * *

[Compare models in the Playground](https://replicate.com/playground)

* Replicate
* [Blog](https://replicate.com/blog)

# Ideogram 3.0 on Replicate

Posted May 7, 2025 by
* [shridharathi](https://replicate.com/shridharathi)

> TL;DR: [Ideogram 3.0](https://replicate.com/ideogram-ai/ideogram-v3-quality) is a major update to the text-to-image model, with big improvements in realism, style control, and layout generation. It comes in three varieties, all of which are live on Replicate.

* [Ideogram 3.0 Turbo](https://replicate.com/ideogram-ai/ideogram-v3-turbo)
* [Ideogram 3.0 Balanced](https://replicate.com/ideogram-ai/ideogram-v3-balanced)
* [Ideogram 3.0 Quality](https://replicate.com/ideogram-ai/ideogram-v3-quality)

![Image 1: Ideogram 3.0 thumbnail](https://replicate.com/_content/assets/ideogram-thumbnail.BC8jLZ5L_Z1rWU2V.webp)
## [](https://replicate.com/blog/ideogram-v3#about-30)About 3.0

Ideogram just launched version 3.0 of its text-to-image model, and it’s packed with features. The model comes in three varieties: “Turbo,” “Balanced,” and “Quality.”

The “Turbo” model is perfect for rapid iterations, while the “Quality” model delivers the highest fidelity results when precision matters most. The “Balanced” option sits comfortably in between, offering a good compromise for most use cases.

With all of the models, you get rich image results with more control, better text rendering, and a serious boost in realism.

Here’s how you can run each of these models with Replicate’s JS client:

Copy

```
import { writeFile } from "fs/promises";
import Replicate from "replicate";
const replicate = new Replicate();
```

Copy

```
const input = {
prompt: "The text \"V3 Turbo\" in the center middle.",
aspect_ratio: "3:2",
};
const turbo_output = await replicate.run("ideogram-ai/ideogram-v3-turbo", { input });
await writeFile("turbo_output.png", output);
```

Copy

```
const input = {
prompt: "The text \"V3 Balanced\" in the center middle.",
aspect_ratio: "3:2",
};
const balanced_output = await replicate.run("ideogram-ai/ideogram-v3-balanced", { input });
await writeFile("balanced_output.png", output);
```

Copy

```
const input = {
prompt: "The text \"V3 Quality\" in the center middle.",
aspect_ratio: "3:2",
};
const quality_output = await replicate.run("ideogram-ai/ideogram-v3-quality", { input });
await writeFile("quality_output.png", quality_output);
```

## [](https://replicate.com/blog/ideogram-v3#design)Design

Ideogram 3.0 handles long or stylized phrases with precision, which is a big deal for graphic design and marketing work.

You can generate layouts that look more like they came from a design tool than an AI model: posters, product shots with branding, ads with copy in the right place. The results are useful, not just impressive.

We tried our hand at this by reimagining Replicate branding, taking our fast inference times into consideration:

![Image 2: Replicate advertisement showing 'Run AI with an API' with a sleek design](https://replicate.com/_content/assets/replicate-ad.Dw2d5IrS_Z23HvqK.webp)
## [](https://replicate.com/blog/ideogram-v3#style-transfer)Style Transfer

Ideogram 3.0 makes it easy to apply custom styles to your images using reference images. You
Read full article → ← Back to Reads