Unit 1 Binary and online graphics

0.0(0)
studied byStudied by 0 people
GameKnowt Play
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/20

flashcard set

Earn XP

Description and Tags

A set of question-and-answer flashcards covering vector vs bitmap graphics, image properties, bandwidth basics, and compression concepts from the lecture notes.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

21 Terms

1
New cards

What is a vector image and how is it created using coordinates?

A vector image is created on a computer by following a sequence of coordinates (x and y) from a starting point to an end point using a simple algorithm: starting point, end point, type of line, curves or angles, and line and fill colours.

2
New cards

List the key benefits of vector graphics.

They can be scaled without losing image quality, have a small file size, are easily edited, and are ideally suited for geometric shapes.

3
New cards

Give real-world applications of vector graphics.

Used in 2D and 3D animation, gaming, and advertising (logos to cartoon characters).

4
New cards

What is a bitmap?

An image file made up of dots or pixels, where each pixel can be a different colour; more pixels mean more detail.

5
New cards

How does a vector differ from a bitmap in terms of scalability?

Vector graphics are scalable without quality loss, whereas bitmaps are resolution-dependent and can become pixelated when enlarged.

6
New cards

Name common bitmap filetypes.

BMP, JPG, GIF, TIFF, PNG, PICT.

7
New cards

What is a pixel?

A tiny coloured square that makes up an image.

8
New cards

What does resolution mean in digital images?

The number of pixels in one square inch of the image; higher resolution means more detail.

9
New cards

What are the four key image properties?

Pixel size, dimension (height and width), resolution, colour depth.

10
New cards

How do you calculate file size in bits?

File size = number of pixels (height × width) × colour depth (in bits).

11
New cards

Calculate the file size for a 7×6 image with 1-bit colour depth.

Pixels = 7×6 = 42; File size = 42 × 1 = 42 bits.

12
New cards

What is colour depth?

The number of bits used to encode the colour information of each pixel.

13
New cards

What is bandwidth?

The amount of data that can be sent in one second, measured in bits per second (bps).

14
New cards

What are base-2 data units used in these notes?

Kibibytes (KiB) and mebibytes (MiB); 1 KiB = 1024 bytes; 1 MiB = 1024 KiB.

15
New cards

Convert KiB to bits in your head.

1 KiB = 1024 bytes = 8192 bits.

16
New cards

Why is bandwidth often measured in Mbps instead of bps?

Because modern connections transfer large amounts of data, using base-10 units (Mbps) is more convenient; notes also reference base-2 units (MiB).

17
New cards

What is lossy compression?

Compression that reduces file size by deleting data, which cannot be fully restored; commonly used for images (JPEG) and audio (MP3).

18
New cards

What is lossless compression?

Compression that allows exact restoration of the original file after decompression; used for text and some image formats (PNG, GIF, TIFF).

19
New cards

Why would you compress files?

To attach to emails (size limits), save storage space, transfer files on devices with limited space, and speed up downloads.

20
New cards

What is meant by image dimension and pixel size?

Dimension is the image's height and width in pixels; pixel size is the total number of pixels (height × width).

21
New cards

What is the relationship between image properties and file size?

File size depends on the number of pixels and colour depth; higher resolution and greater colour depth increase file size.