TechByteByByte

Text-to-Image

Generating a picture from a written description — the application that made diffusion models famous, named after a surrealist painter and a Pixar robot, and the technology behind AI's first real art-world controversy.

#text-to-image#dall-e#diffusion-model#generative-models-phase

The last several articles covered the underlying machinery — GANs, autoencoders, latent space, diffusion. This article covers the specific, real-world application that made all of it famous outside research circles: text-to-image.

The simple definition

Text-to-image refers to generative models that take a written description as input and produce a corresponding image as output. Recall from the Diffusion Model article’s “cat riding a skateboard on Mars” example — that’s precisely this application, and it’s the specific use case that turned diffusion models, covered in the previous two articles, from an academic research technique into a household-name technology.

How the text actually gets connected to the image

This is worth being concrete about, since it ties together several earlier phases of this glossary. Recall from the Embedding article that text can be converted into a vector capturing its meaning. Text-to-image models use exactly this — a text encoder converts the prompt into an embedding, and that embedding then guides the diffusion process, covered in the Diffusion Model article, at every single noise-removal step, steering the gradually emerging image toward whatever the text description actually specified.

flowchart LR
    A["Text prompt: 'a cat riding a skateboard on Mars'"] --> B[Text Encoder: convert to embedding]
    B --> C[Diffusion process, guided by that embedding at every step]
    C --> D[Final generated image]

The real, slightly playful story behind the most famous name in the field

This is worth knowing, since it’s a genuinely charming piece of naming history. OpenAI’s DALL-E, one of the earliest and most influential text-to-image systems, gets its name from a direct combination of two things: the surrealist painter Salvador Dalí, known for bending and reshaping reality in his paintings, and WALL-E, the Pixar robot — OpenAI’s own researchers described the choice as “a nod to” both.

+First introduced in January 2021, with DALL-E 2 following in 2022, the name captures exactly what the tool does: producing genuinely surreal, imaginative images from nothing but a text description, the way Dalí’s paintings reimagined ordinary reality.

ANALOGY vs. TECHNICAL REALITY

Analogy: Think of describing a scene to a skilled illustrator over the phone, with no visual reference at all — “a lighthouse at sunset, painted in the style of Van Gogh” — and having them produce a genuinely original painting matching that description, drawing on everything they’ve ever studied about lighthouses, sunsets, and Van Gogh’s brushwork, without copying any single specific reference image.

Where this breaks down: A human illustrator draws on genuine visual imagination and artistic training. A text-to-image model’s “imagination” is the mechanical, guided diffusion process covered in the Diffusion Model article — a statistical pattern, however impressively realistic, learned from the enormous number of real image-text pairs it saw during training, not an illustrator’s lived visual experience or deliberate artistic choices.

The real controversy: when AI art won a state fair

This is worth telling in full, because it’s a genuine, widely covered moment that forced the public to confront what this technology actually meant.

+In August 2022, Jason Allen, a game designer from Colorado who didn’t consider himself a professional artist, submitted a piece called “Théâtre D’opéra Spatial” to the Colorado State Fair’s fine arts competition — created using Midjourney, a real, published text-to-image tool, after Allen ran roughly 624 different prompts and revisions before settling on a final result, then touched it up in Photoshop.

+It won first place in the “digital arts / digitally manipulated photography” category, with a $300 prize. The backlash was immediate and intense — thousands of social media comments called the win “unfair,” with one widely shared post declaring “you have never used actual tools, just texts.” Allen didn’t apologize, telling the New York Times “I’m not going to apologize for it…

+I won and I didn’t break any rules.” The fair’s judges stood by the result — one judge said she hadn’t even realized the piece was AI-generated but said it wouldn’t have changed her decision, since Allen “had a concept and a vision he brought to reality.” The controversy was significant enough that the fair changed its rules the following year, and when Allen separately tried to copyright the image, the U.S.

+Copyright Office denied the application.

Why this controversy captured something genuinely unresolved

It’s worth being direct about why this specific incident became such a lasting reference point, rather than a passing news story. It crystallized a real, still-unsettled question: if a person spends real time and judgment crafting hundreds of prompts to guide a tool toward a specific creative vision, is the result “their” art in any meaningful sense — comparable to a photographer’s judgment about framing and light — or is it something categorically different? Reasonable, informed people genuinely disagree, and the field still hasn’t reached consensus.

A concrete example, layered

For a simple beginner example: a small business owner might generate several logo concepts by describing “a minimalist mountain logo in blue and white” to a text-to-image tool, iterating on the wording until one result matches their vision — a genuinely useful, low-cost creative tool for someone without design training.

+For a production example: Adobe’s own Firefly, and Shutterstock’s partnership with OpenAI’s DALL-E (including a “Contributor Fund” compensating photographers whose work helped train the underlying models), represent real, documented industry attempts to build text-to-image capability directly into established creative-software workflows, while also trying to address the exact copyright and compensation concerns raised throughout this article.

It’s worth being honest about the current, unsettled state of this issue rather than presenting it as solved. Getty Images sued Stability AI, both in the UK and in U.S. federal court, alleging Stable Diffusion had been trained on millions of Getty’s copyrighted images without a license.

+In November 2025, Getty largely lost the UK case — the court dismissed the core copyright claims, though it found limited trademark infringement related to Getty’s watermarks appearing in some generated outputs.

+The ruling was, in the judge’s own words, “historic and extremely limited in scope” — a real, current signal about where the law may be heading, but genuinely not a final, comprehensive answer to the broader question of whether training on copyrighted images without permission constitutes infringement.

A second, even bigger controversy: the 2025 “Ghibli-style” trend

This deserves telling in full, since it’s an even larger, more recent flashpoint than the Colorado State Fair story, and it illustrates the exact same underlying tension at a genuinely massive scale. In March 2025, OpenAI upgraded ChatGPT’s image generation with an updated GPT-4o model, and users immediately discovered it could convincingly recreate the distinctive, hand-painted look of Japan’s Studio Ghibli — the animation house behind Spirited Away and My Neighbor Totoro.

+Within days, social media was flooded with “Ghiblified” selfies, memes, and even recreations of historical events in the style; CEO Sam Altman changed his own profile picture to a Ghibli-style self-portrait and posted that demand was so overwhelming “our GPUs are melting.” The backlash was swift: Studio Ghibli’s co-founder Hayao Miyazaki had previously, in a widely circulated clip, called AI-generated animation “an insult to life itself,” and critics noted the irony of a company already facing multiple copyright lawsuits building a viral marketing moment around mimicking one specific, famous, hand-crafted studio’s aesthetic.

+OpenAI’s own stated policy was that it blocks generating images “in the style of individual living artists” but permits “broader studio styles” — a distinction that satisfied almost no one, and OpenAI appeared to quietly begin restricting Ghibli-style requests afterward, without ever confirming whether that was a deliberate policy reversal.

How a prompt becomes an image

1. User writes a prompt

2. Text is tokenized and represented as vectors

3. The model uses those vectors as guidance

4. A visual representation is generated step by step

5. The representation is decoded into pixels

6. The application applies its safety and output rules

For “a red bicycle beside a blue house at sunset,” the model must represent the requested objects, colors, relationship, and lighting. It does not search a folder for one matching finished picture. It generates a new arrangement from learned visual and language patterns.

Current products can use architectures that differ internally, so this flow describes the shared application idea rather than claiming that every provider uses the exact same diffusion pipeline.

Current real applications

OpenAI’s GPT Image 2 accepts text input and produces image output. The same model also accepts image input for editing, which means an application can begin with either a written request or an existing design. The official model page describes flexible sizes and high-fidelity image inputs and exposes image-generation and image-edit endpoints.

Google’s current Gemini image workflow can return both text and images in one response. For example, an education application can ask for a short poem about a starry night and a matching illustration. Gemini 3 image models generate 1K images by default and can be configured for other supported sizes, including 2K and 4K.

“Create a labeled water-cycle poster for a 12-year-old”

text understanding → scene/layout planning → image generation

poster pixels, including requested labels

Sources: official OpenAI documentation for GPT Image 2 and Google’s Gemini image-generation guide.

Common misconception

A frequent beginner assumption: that a text-to-image model works by searching for and stitching together pieces of real, existing photos that match the prompt. As the Diffusion Model article explained, this isn’t how the underlying mechanism works — the model generates genuinely new pixel patterns through the guided noise-removal process, without retrieving or copying specific stored images, even though it learned its visual patterns from a training set that did include real, copyrighted images, which is exactly the tension at the center of the Getty Images lawsuit.

Where this fits in what comes next

You now understand how text-to-image models work and the genuine, unresolved controversies they’ve already produced. The next article, Text-to-Video, covers the natural extension of this same idea into moving images — and a genuinely fun, well-documented “before and after” story showing just how fast this specific technology has improved.

In one sentence

Text-to-image models convert a written description into a generated image by guiding the diffusion process with a text embedding, and the technology’s rapid rise — from DALL-E’s playful, punning name to a state-fair-winning artwork that ignited a still-unresolved debate about art, authorship, and copyright — made it one of the most publicly visible and contested applications in all of generative AI.

Author
TechByteByByte Editorial Team
Reviewed by
TechByteByByte Admin
Published
Last reviewed