Binary to Decimal Conversion
Decimal to Binary Conversion
Hexadecimal Conversions
ASCII - Character sets
Unicode - Character sets
Compression & Internet File Formats
Image Size
Good notes will help you organise and process data and information
The system described so far is fine for black and white images, but most images need to use colours as well. Instead of using just 0 and 1, using four possible numbers will allow an image to use four colours. In binary this can be represented using two bits per pixel:
While this is still not a very large range of colours, adding another binary digit will double the number of colours that are available:
Colour depth describes the number of bits of memory that are used to store the colour information about each pixel in a bitmap image.
With 1 bit colour depth the number of bits used to store the information about each pixel is 1. This allows 2 colours, represented by 0 or 1.
With 3 bit colour depth the number of bits used to store the information about each pixel is 3. This allows 8 colours, represented by the binary codes 000, 001, 010, 011, 100, 101, 110 or 111.
Metadata is needed in a bitmap image file because the software that displays an image needs to know:
Below you can see the effect of colour depth on both the quality of the image and the file size.
Resolution is a measure of how much detail there is in an image. In a bitmap image the resolution depends on the pixel density, the number of pixels per unit (not the total number of pixels in the image). The resolution depth of a screen image is usually measured in pixels per inch (PPI). The resolution depth of a printed image is usually measured in dots per inch (DPI). The effect of zooming in on a high and a low resolution bitmap image
A high resolution image can be magnified and still stay sharp. A low resolution image will appear pixelated (the individual pixels will be clearly visible) if it is magnified to the same size as a high resolution image.
Because vector images are only stored as a set of mathematical instructions, halving the size of a vector image would effectively make no difference to the file size. However, halving the dimensions of a bitmap image would effectively make the file size ¼ of the original.
Characters used to be designed on an 8 x 8 grid, and created using eight numbers from 0-255. Each number was converted to binaryand the resulting pattern of 0s and 1s was used to make a pattern of black and white dots on a single row.
Design a character by entering numbers from 0-255 in the boxes to the left of the grid. Each number is converted to binary and used to create the pattern of dots.
Lets look at the learning outcomes and decide which one best describes our current level of understanding :
Tick the one you feel is closest to your level
AQA Computer Science Tutor
Bitmap Images