Intermediate

Image Representation: Pixels and Colour Depth

AicademyAicademy
·GCSE Computer Science·AQA 8525·7 slides
3.3.6 Representing images

Pixels and Bitmap Images

A pixel (picture element) is a single point in a digital image. Every digital image stored on a computer is made up of a rectangular grid of pixels — this type of image is called a bitmap.

Each pixel stores a single colour value as a binary number. When the pixels are small enough and packed tightly enough, the human eye perceives a continuous image rather than a grid of discrete dots.

PropertyWhat it means
PixelOne point in the image, storing one colour value
BitmapAn image stored as a grid of pixel colour values
Image dimensionsThe width and height of the grid, measured in pixels
Colour depthThe number of bits used to represent each pixel's colour

A black-and-white image uses 1 bit per pixel (0 = white, 1 = black). A full-colour image typically uses 24 bits per pixel — 8 bits each for red, green, and blue channels.

A pixel has no fixed physical size. The same 800 × 600 pixel image printed on a postcard looks sharp; stretched across a billboard it looks blocky. The number of pixels does not change — only the physical size of each one does.

Image Dimensions

An image's dimensions are expressed as width × height in pixels. Multiplying width by height gives the total pixel count — the number of individual colour values that must be stored.

Examples:

ImageWidth (px)Height (px)Total pixels
Thumbnail10010010,000
Standard HD1280720921,600
Full HD192010802,073,600
4K UHD384021608,294,400

A higher total pixel count captures more spatial detail. A 1920 × 1080 image contains roughly 200 times more pixels than a 100 × 100 thumbnail. However, resolution alone does not determine file size — colour depth also plays a critical role.

Colour Depth

Colour depth is the number of bits used to represent each pixel. More bits per pixel means more possible colour values, producing a more detailed and realistic image.

The number of possible colours is :

Colour depth (bits)Possible coloursExample use
12Black and white
416Early computer graphics
8256Simple web graphics
1665,536High colour
2416,777,216True colour (typical photographs)

Worked example — how many colours can a 4-bit image represent?

A 4-bit image can only assign one of 16 colours to each pixel. Switching to 8-bit doubles the number of bits but squares the number of available colours from 16 to 256.

4 more slides

Continue this lesson

Create a free account to unlock all 7 slides, track your progress, and ask the AI tutor for help.

Related lessons

7 Slides

Lesson

ASCII and Unicode: Character Encoding

GCSE Computer Science · AQA 8525

1 day ago

7 Slides

Lesson

Hexadecimal Representation

GCSE Computer Science · AQA 8525

1 day ago

Image Representation: Pixels and Colour Depth: GCSE... · Aicademy