how can images in computers be stored
as bitmaps or vectors
difference between bitmaps and vectors
how to calculate size of image in pixels
width in pixels x height in pixels
what is a pixel
every dot of colour in the image
what is resolution
what is colour depth
number of bits stored for each
pixel.
- n bits gives 2^n combinations
How many bits are usually in modern images?
24
how to calculate storage requirement for bitmaps
height in pixels x width in pixels x colour depth
relationship between the quality, colour depth, and file size
as the quality and colour depth of an image increases, its file size increases
what is metadata
data about data
- is stored along with the actual bits which make up the image and increase the overall file size
examples of metadata
examples of information needed to draw a vector image
advantages of vector graphics
disadvantages of vector graphics
advantages of bitmapped graphics
Can represent images with complex textures // lots of variation in colour
disadvantages of bitmapped graphics
describe how a vector graphic is represented
explain why compression is considered necessary for images on the web
transmission of data is faster, and used less data allowance with smaller image files
advantages of vectors over bitmaps
explain why the amount of storage space taken up by vector graphics is significantly less than the space taken up by bitmaps
Explain what is meant by “dot” in “dots per inch” when referring to resolution.
Each dot is a pixel; “dots per inch” refers to how many of these pixels are printed or displayed per inch.
Describe how a bitmap image is represented and stored on a computer
A bitmap image is represented as a grid/array of pixels, where each pixel is a tiny square of color.
Each pixel’s color is stored as a binary number, and the number of bits used for each pixel determines the color depth and thus the number of colors the image can display.