Every image on your screen is composed of tiny dots called pixels (picture elements). A typical 1920×1080 screen contains over 2 million pixels!
Each pixel can display a specific color by mixing Red, Green, and Blue light in different intensities (RGB color model).
The computer's graphics system converts digital image data into electrical signals that control the physical display:
Simulation of CRT electron beam scanning (modern LCDs use different technology)
Computers store the screen image in a special memory area called a frame buffer:
The GPU (Graphics Processing Unit) calculates what each pixel should display and updates the frame buffer. The display reads this buffer 60+ times per second (refresh rate) to create smooth motion.