Ideogram 4 Skill

Prompting patterns for Ideogram 4 text-to-image — best-in-class in-image text rendering and exact color/layout control via structured JSON captions.

Ideogram 4 Skill — Super Bowl-style launch ad (from the digitalsamba/claude-code-video-toolkit README)

From the digitalsamba/claude-code-video-toolkit README — shows the whole collection, not only this skill. · view on GitHub

How to use it

Claude Code
  1. Run the line below. It pulls the whole folder into ~/.claude/skills/ideogram4, including the files SKILL.md points to.
  2. Describe your job in plain words. Claude Code follows the skill from there.
Claude Code — installs the whole folder, not just SKILL.md
npx degit digitalsamba/claude-code-video-toolkit/.claude/skills/ideogram4#main ~/.claude/skills/ideogram4

For one project only, change the path to .claude/skills/ideogram4. This skill also uses prompting.md, examples.md, caption.json — copying SKILL.md alone won't be enough. See the folder on GitHub.

Claude (web or desktop app)
  1. On this page open ⋯ → Download .md.
  2. Save it as SKILL.md in a folder, zip the folder, then Customize → Skills → + → Create skill → Upload a skill.
  3. Pick the file and Save. Claude shows the name and description and runs a security scan.
  4. Check the skill is switched on.
  5. Start a new chat and describe your job in plain words. The AI follows the skill from there.
ChatGPT or another app
  1. ChatGPT: make a Project and paste it into Instructions.
  2. Neither? Paste it at the top of a new chat — it works for that chat.
Not working?
  • Check which app you pasted it into — the steps above name the right one.
  • Some skills need the paid tier of Claude or ChatGPT.
Step-by-step guide with screenshots · Ask in the forum

Paste into Claude, ChatGPT or Cursor.

Source of Ideogram 4 Skill

Show the full text94 lines
namedescription
ideogram4Prompting patterns for Ideogram 4 text-to-image — best-in-class in-image text rendering and exact color/layout control via structured JSON captions. Use when generating images that need legible on-image text (title cards, thumbnails, logos, signage, CTAs), precise brand colors, or controlled spatial layout. Triggers include title slide image, thumbnail with text, on-image text, legible text in image, brand color palette image, bounding-box layout, Ideogram.

Ideogram 4 Skill

Text-to-image generation with Ideogram 4 (9.3B, open-weight, released June 2026). Its superpower is best-in-class in-image text rendering — it beats much larger models (FLUX.2 dev 32B, Qwen-Image 20B, Hunyuan 80B) at rendering legible signage, logos, captions, and multi-line text — plus exact color-palette and bounding-box control.

That advantage is locked behind a structured JSON caption format. A plain-text prompt gets you FLUX-level results and misses the entire point of using this model. This skill teaches Claude to act as the "magic prompt" expander — turning a user's casual request into the JSON caption Ideogram 4 was trained on.

Backend: The toolkit uses Ideogram's hosted v4 API (not self-hosted weights). The API accepts a structured json_prompt, so everything this skill teaches applies directly — Claude builds the caption, the tool posts it as json_prompt. Paid API plans include a commercial license, which the self-hostable weights (non-commercial) do not — that's why we use the API. Cost is ~$0.03/image (turbo) to ~$0.09/image (quality).

When to Use This Skill

Reach for Ideogram 4 (over FLUX.2) when the image needs:

  • Legible on-image text — title cards, thumbnails, lower-thirds backgrounds, signage, logos, quote cards, CTAs with a headline baked in
  • Exact brand colors — hex color-palette conditioning, per-element
  • Controlled layout — bounding boxes place text/objects in specific regions
  • Multilingual text in the image

Use FLUX.2 instead when: the image has no critical text, you need commercial-licensed output, or you just want a fast atmospheric background. FLUX takes plain natural-language prompts; Ideogram wants JSON. See tools/flux2.py.

The One Thing to Get Right

Always emit a structured JSON caption, not a plain sentence. The model is trained exclusively on JSON captions that name every element explicitly. Claude is a better expander than Ideogram's free hosted magic-prompt (their own docs note the shipped one "is not the same used in production"), so build the caption yourself using this skill rather than passing raw text.

Minimal valid caption:

{"high_level_description":"A sailboat at sunset on calm water.","style_description":{"aesthetics":"serene, warm, golden hour","lighting":"golden hour backlighting","photo":"wide angle, f/8","medium":"photograph","color_palette":["#FF6B35","#F7C59F","#004E89"]},"compositional_deconstruction":{"background":"Calm ocean at low horizon with orange-pink sky.","elements":[{"type":"obj","desc":"White triangular sail silhouetted against the setting sun."}]}}

Full schema, strict key-ordering rules, and the bbox coordinate system are in prompting.md. Worked title-card / thumbnail / quote-card examples are in examples.md.

Quick Reference — tools/ideogram4.py

Thin wrapper over Ideogram's hosted v4 API. Needs IDEOGRAM_API_KEY in .env (key from developer.ideogram.ai). --json posts the caption as the API's json_prompt field (no server-side magic prompt — Claude is the expander); --prompt posts text_prompt.

# Hand-authored JSON caption (the recommended path for text/layout) — Claude writes caption.json
uv run tools/ideogram4.py --json caption.json --output title.png

# Caption from stdin (Claude can pipe it directly)
cat caption.json | uv run tools/ideogram4.py --json - --output title.png

# Plain prompt — Ideogram's server-side magic prompt expands it (weaker; prefer --json)
uv run tools/ideogram4.py --prompt "Title card: 'AI ENGINEERING REVIEW' bold white on dark" --output title.png

# Inject brand hex colors into the caption's palette (JSON mode)
uv run tools/ideogram4.py --json caption.json --brand digital-samba --output cta.png

# Quality tier + resolution
uv run tools/ideogram4.py --json caption.json --speed QUALITY --resolution 2048x2048 --output slide.png

Key Files

  • prompting.md — full JSON schema, strict key ordering, bbox coordinate system, palette rules
  • examples.md — worked captions for title cards, thumbnails, quote cards, brand CTAs

Video Production Fit

Ideogram 4's niche in the toolkit is slides and thumbnails with baked-in text, where FLUX and LTX-2 fail (both render garbled text). Natural pairings:

Use case Why Ideogram 4
Title-card / CTA background with headline text Legible text + exact brand hex colors in one pass
YouTube/social thumbnail with a punchy phrase Big readable text is its strongest suit
Quote card / stat card Multi-line text + layout control via bboxes
Signage/logos inside a product-demo scene In-image text other models can't render

Then feed the still into Remotion (<OffthreadVideo>/Img) or animate it with tools/ltx2.py --input.

1---
2name: ideogram4
3description: Prompting patterns for Ideogram 4 text-to-image — best-in-class in-image text rendering and exact color/layout control via structured JSON captions. Use when generating images that need legible on-image text (title cards, thumbnails, logos, signage, CTAs), precise brand colors, or controlled spatial layout. Triggers include title slide image, thumbnail with text, on-image text, legible text in image, brand color palette image, bounding-box layout, Ideogram.
4---
5 
6# Ideogram 4 Skill
7 
8Text-to-image generation with **Ideogram 4** (9.3B, open-weight, released June 2026). Its
9superpower is **best-in-class in-image text rendering** — it beats much larger models
10(FLUX.2 dev 32B, Qwen-Image 20B, Hunyuan 80B) at rendering legible signage, logos, captions,
11and multi-line text — plus **exact color-palette and bounding-box control**.
12 
13That advantage is **locked behind a structured JSON caption format**. A plain-text prompt gets
14you FLUX-level results and misses the entire point of using this model. This skill teaches
15Claude to act as the "magic prompt" expander — turning a user's casual request into the JSON
16caption Ideogram 4 was trained on.
17 
18> **Backend:** The toolkit uses Ideogram's **hosted v4 API** (not self-hosted weights). The API
19> accepts a structured `json_prompt`, so everything this skill teaches applies directly — Claude
20> builds the caption, the tool posts it as `json_prompt`. Paid API plans include a **commercial
21> license**, which the self-hostable weights (non-commercial) do not — that's why we use the API.
22> Cost is ~$0.03/image (turbo) to ~$0.09/image (quality).
23 
24## When to Use This Skill
25 
26Reach for Ideogram 4 (over FLUX.2) when the image needs:
27- **Legible on-image text** — title cards, thumbnails, lower-thirds backgrounds, signage, logos,
28 quote cards, CTAs with a headline baked in
29- **Exact brand colors** — hex color-palette conditioning, per-element
30- **Controlled layout** — bounding boxes place text/objects in specific regions
31- **Multilingual text** in the image
32 
33Use **FLUX.2** instead when: the image has no critical text, you need commercial-licensed output,
34or you just want a fast atmospheric background. FLUX takes plain natural-language prompts; Ideogram
35wants JSON. See `tools/flux2.py`.
36 
37## The One Thing to Get Right
38 
39**Always emit a structured JSON caption, not a plain sentence.** The model is trained
40*exclusively* on JSON captions that name every element explicitly. Claude is a better expander
41than Ideogram's free hosted magic-prompt (their own docs note the shipped one "is not the same
42used in production"), so build the caption yourself using this skill rather than passing raw text.
43 
44Minimal valid caption:
45 
46```json
47{"high_level_description":"A sailboat at sunset on calm water.","style_description":{"aesthetics":"serene, warm, golden hour","lighting":"golden hour backlighting","photo":"wide angle, f/8","medium":"photograph","color_palette":["#FF6B35","#F7C59F","#004E89"]},"compositional_deconstruction":{"background":"Calm ocean at low horizon with orange-pink sky.","elements":[{"type":"obj","desc":"White triangular sail silhouetted against the setting sun."}]}}
48```
49 
50Full schema, strict key-ordering rules, and the bbox coordinate system are in **`prompting.md`**.
51Worked title-card / thumbnail / quote-card examples are in **`examples.md`**.
52 
53## Quick Reference — `tools/ideogram4.py`
54 
55> Thin wrapper over Ideogram's hosted v4 API. Needs `IDEOGRAM_API_KEY` in `.env`
56> (key from developer.ideogram.ai). `--json` posts the caption as the API's `json_prompt`
57> field (no server-side magic prompt — Claude is the expander); `--prompt` posts `text_prompt`.
58 
59```bash
60# Hand-authored JSON caption (the recommended path for text/layout) — Claude writes caption.json
61uv run tools/ideogram4.py --json caption.json --output title.png
62 
63# Caption from stdin (Claude can pipe it directly)
64cat caption.json | uv run tools/ideogram4.py --json - --output title.png
65 
66# Plain prompt — Ideogram's server-side magic prompt expands it (weaker; prefer --json)
67uv run tools/ideogram4.py --prompt "Title card: 'AI ENGINEERING REVIEW' bold white on dark" --output title.png
68 
69# Inject brand hex colors into the caption's palette (JSON mode)
70uv run tools/ideogram4.py --json caption.json --brand digital-samba --output cta.png
71 
72# Quality tier + resolution
73uv run tools/ideogram4.py --json caption.json --speed QUALITY --resolution 2048x2048 --output slide.png
74```
75 
76## Key Files
77 
78- `prompting.md` — full JSON schema, strict key ordering, bbox coordinate system, palette rules
79- `examples.md` — worked captions for title cards, thumbnails, quote cards, brand CTAs
80 
81## Video Production Fit
82 
83Ideogram 4's niche in the toolkit is **slides and thumbnails with baked-in text**, where FLUX and
84LTX-2 fail (both render garbled text). Natural pairings:
85 
86| Use case | Why Ideogram 4 |
87|----------|----------------|
88| Title-card / CTA background **with headline text** | Legible text + exact brand hex colors in one pass |
89| YouTube/social **thumbnail with a punchy phrase** | Big readable text is its strongest suit |
90| Quote card / stat card | Multi-line text + layout control via bboxes |
91| Signage/logos inside a product-demo scene | In-image text other models can't render |
92 
93Then feed the still into Remotion (`<OffthreadVideo>`/`Img`) or animate it with `tools/ltx2.py --input`.
94 

Discussion

Alternatives

Also in Illustration & artSee all 320 in Content creator →