A digital image is a rectangular grid of pixels. Each pixel stores one or more numbers describing its color. In a typical color image, every pixel carries three values, one each for red, green, and blue, and each value sits on a fixed scale, commonly 0 to 255. A small image might be 512 pixels wide and 512 tall, which means 512 × 512 = 262,144 pixels and roughly 786,432 individual color numbers.
This matters because it tells us what an image model actually produces. It is not drawing shapes or placing objects the way a person would in a paint program. It is producing a large block of numbers, and when those numbers are arranged in the grid and displayed, we perceive a picture. The model has no separate representation of "cat" or "sky" that it pastes in; the picture is entirely carried by the values in the grid.
The practical consequence is scale. A single image contains hundreds of thousands of numbers that must all be mutually consistent for the result to look like anything. That is why image generation is computationally heavier than producing a paragraph of text, and why the process is organized as many small refinement steps rather than one large jump.