4.5.6.4 Bitmapped graphics Flashcards
How is a bitmapped image represented?
The image is divided into pixels, and each possible colour has it’s own bit pattern. Every pixel is then stored in order in memory with metadata about the image also being stored.
What data would be stored about a line in Vector graphics?
The start and end point’s x and y coordinates are stored, the thickness of the line and the colour.
What is colour depth?
The number of bits used to store each colour
What is resolution?
The number of pixels per width and height
What are the advantages of vector graphics over bitmapped graphics?
Less storage space is likely to be needed and the image will load faster and also download faster. The image can be resized without distortion or loss of quality. You can more easily manipulate the objects in the image.
Why does no distortion occur when resizing vector graphics?
Vector graphics store the properties and coordinates of an object, it uses mathematical equations to generate objects. This means that these properties can be re-scaled and the drawing can be re-rendered.
What data would be stored about a circle in Vector graphics?
The coordinates of the midpoint of the circle, the length of the radius.
The line colour, width, fill colour etc.
How do you calculate storage requirements for bitmapped images ?
storage requirements = resolution x colour depth
but bitmap image files may also contain metadata.