3.16 - Bitmapped Graphics

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/13

Last updated 8:52 AM on 4/24/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

14 Terms

1
New cards

What is a bitmap image (raster)?

An image built up of pixels.

2
New cards

What is a pixel?

Smallest identifiable area of an image.

3
New cards

How would you represent resolution?

width in pixels x height in pixels

4
New cards

What is meant by PPI?

Pixels Per Inch, this indicates the density of the pixels, rather than the actual image dimensions.

5
New cards

What is meant by DPI?

Dots Per Inch, a printing term relating to the number of ink dots per inch on a page.

6
New cards

What is meant by colour depth?

Number of bits allocated to represent a colour for a pixel.

7
New cards

If an image only has 2 colours, what’s the minimumn colour depth required?

1 bit

8
New cards

What’s the size of a 7×7 pixel image with a colour depth of 2 bits?

  1. 7×7=49 (total number of pixels)

  2. 49×2 = 98bits

9
New cards

Give examples of metadata for an image.

  • Resolution

  • Colour Depth

  • Date/time taken

  • File format

  • Creator/author

  • Camera/device model

10
New cards

What is mean by metadata?

Data about data.

11
New cards

What are vector images made up of?

Geometric Shapes or objects such as lines, curves arcs and polygons.

12
New cards

How is a vector image different to a bitmapped image?

  • Vector images store geometric properties of each shape (coordinates, dimensions, colour, line thickness) as drawing instructions, which are used to redraw the image on load

  • Bitmapped images store colour information for every individual pixel

  • Vectors can be scaled to any size without losing quality; bitmaps pixelate when enlarged

13
New cards

When is using a bitmapped image preferredover a vector image?

  • A vector image can not easily replicate an image with continuous areas of changing colours

  • Individual pixels can be manipulated, making bitmaps ideal for photo retouching but vector images allow individual objects to be edited, but individual pixels cannot be directly changed

14
New cards

What is a vector drawing list?

A list of objects/shapes stored within a vector file, each with their own set of properties such as coordinates, dimensions, fill colour, line colour, and line thickness.