Top Banner
Bitmapped Images 27 th November 2014 With Mrs Billinghurst @SGS_Computing
20

Bitmapped Images 27 th November 2014 With Mrs Billinghurst @SGS_Computing.

Dec 23, 2015

Download

Documents

Charles Chase
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Bitmapped Images 27 th November 2014 With Mrs Billinghurst @SGS_Computing.

Bitmapped Images

27th November 2014

With Mrs Billinghurst

@SGS_Computing

Page 2: Bitmapped Images 27 th November 2014 With Mrs Billinghurst @SGS_Computing.

Bitmapped Images27th November 2014

Key Terms:PixelBitmapResolutionColour Depth

Page 3: Bitmapped Images 27 th November 2014 With Mrs Billinghurst @SGS_Computing.

Bitmapped Images27th November 2014

PixelThe smallest area of an image.

Each square in this image represents one pixel

Page 4: Bitmapped Images 27 th November 2014 With Mrs Billinghurst @SGS_Computing.

Bitmapped Images27th November 2014

BitmapA grid of pixels which in which the position of coloured pixels are mapped in a grid.

Page 5: Bitmapped Images 27 th November 2014 With Mrs Billinghurst @SGS_Computing.

Bitmapped Images27th November 2014

ResolutionThis is the number of pixels that make up an image or screen.

width x height

Page 6: Bitmapped Images 27 th November 2014 With Mrs Billinghurst @SGS_Computing.

Bitmapped Images27th November 2014

Colour Depth

The number of bits used to represent the colour of a single pixel in a bitmap.

Page 7: Bitmapped Images 27 th November 2014 With Mrs Billinghurst @SGS_Computing.

Bitmapped Images27th November 2014

Colour Depth : 1 Bit (2 colours)

White = 0Black = 1

This image is 32 pixels wide.How many bytes are needed per row? 8 bytes

Page 8: Bitmapped Images 27 th November 2014 With Mrs Billinghurst @SGS_Computing.

Bitmapped Images27th November 2014

Colour Depth : 2 Bit (4 colours)

White = 00Black = 01

Yellow = 10Green = 11

This image is 32 pixels wide.How many bytes are needed per row? 16 bytes

Page 9: Bitmapped Images 27 th November 2014 With Mrs Billinghurst @SGS_Computing.

Bitmapped Images27th November 2014

Colour Depth : 3 Bit (8 colours)

White = 000Black = 001

Yellow = 010Green = 011Brown = 100

Tan = 101Blue = 110

Light Green = 111

Page 10: Bitmapped Images 27 th November 2014 With Mrs Billinghurst @SGS_Computing.

Bitmapped Images27th November 2014

Also known as monochrome.

One bit is allocated to each pixel = black & white

1 Bit Colour

Page 11: Bitmapped Images 27 th November 2014 With Mrs Billinghurst @SGS_Computing.

Bitmapped Images27th November 2014

Each of the RGB components of a colour is given a nibble:

12 Bit Direct Colour

Page 12: Bitmapped Images 27 th November 2014 With Mrs Billinghurst @SGS_Computing.

Bitmapped Images27th November 2014

This simulates the colours that a human eye can see

Holding 16.7 million different colours

24 Bit True Colour

Page 13: Bitmapped Images 27 th November 2014 With Mrs Billinghurst @SGS_Computing.

Bitmapped Images27th November 2014

This is really just 24 bit colour with an extra 8 bits.

32 Bit Colour

Why? Modern computers work in either 32 or 64 bits (or the additional 8 bits provide transparency)

Page 14: Bitmapped Images 27 th November 2014 With Mrs Billinghurst @SGS_Computing.

Bitmapped Images27th November 2014

Page 15: Bitmapped Images 27 th November 2014 With Mrs Billinghurst @SGS_Computing.

Bitmapped Images27th November 2014

Page 16: Bitmapped Images 27 th November 2014 With Mrs Billinghurst @SGS_Computing.

Bitmapped Images27th November 2014

Page 17: Bitmapped Images 27 th November 2014 With Mrs Billinghurst @SGS_Computing.

Bitmapped Images27th November 2014

Each pixel is stored as a binary number.

OR

Each pixel is stored as a bit pattern / RGB bits

Page 18: Bitmapped Images 27 th November 2014 With Mrs Billinghurst @SGS_Computing.

Bitmapped Images27th November 2014

8(or 1 byte)128 64 32 16 8 4 2 1

1 1 1 1 1 1 1 1

Page 19: Bitmapped Images 27 th November 2014 With Mrs Billinghurst @SGS_Computing.

Bitmapped Images27th November 2014

Key Terms:PixelBitmapResolutionColour Depth

Page 20: Bitmapped Images 27 th November 2014 With Mrs Billinghurst @SGS_Computing.

Bitmapped Images

27th November 2014

With Mrs Billinghurst

@SGS_Computing