Graphics in a computers memory How a picture (i.e. a graphic) is stored in a computers memory A computer screen is made up of little dots, called PICture.

Slides:



Advertisements
Similar presentations
Lecture 2 Concepts, Terms and Definitions. Display Devices They are divided into a lot of small squares called pixels (“PICture ELements”). Each pixel.
Advertisements

Computer Systems Nat 4/5 Data Representation Lesson 4: Storing Graphics.
How Images are Represented Bitmap images (Dots used to draw the image) Monochrome images 8 bit grey scale images 24 bit colour Colour lookup tables Vector.
Lesson Objectives Explain the representation of an image as a series of pixels represented in binary Explain the need for meta data to be included in the.
Bitmapped Images 27 th November 2014 With Mrs
An Introduction to Scanning and Storing Photographs and Graphics Bryn Jones Aug 2002
1 Internet Graphics. 2 Representing Images  Raster Image: Images consist of “dots” of color, not lines  Pixel: Picture element-tiny rectangle  Resolution:
Higher Computing Data Representation.
Computer Systems Nat 4.5 Computing Science Data Representation Lesson 4: Storing Graphics EXTENSION.
COMP Bitmapped and Vector Graphics Pages Using Qwizdom.
Basics of a Computer Graphics System Introduction to Computer Graphics CSE 470/598 Arizona State University Dianne Hansford.
GCSE Computing#BristolMet Session Objectives#9 MUST identify the data needed for a computer to display an image correctly (metadata) SHOULD describe the.
© GCSE Computing Candidates should be able to:  explain the representation of an image as a series of pixels represented in binary  explain the need.
Data Representation S2. This unit covers how the computer represents- Numbers Text Graphics Control.
Digital Terminology. Bitmap A representation consisting of rows and columns of dots of a graphic image stored in computer memory. To display a bitmap.
1 Perception, Illusion and VR HNRS 299, Spring 2008 Lecture 14 Introduction to Computer Graphics.
Higher Computing Computer Systems S. McCrossan 1 Higher Grade Computing Studies 1. Data Representation Data Representation – Why do we use binary? simplicity,
Data Representation Int 2 Computing Unit 1 – Computer Systems St Kentigern’s Academy.
Images Data Representation. Objectives  Understand the terms bitmap & pixel  Understand how bitmap images are stored using binary in a computer system.
Graphics A graphics program allows you to combine pictures and text in many different ways. Features – General Level Draw graphics Enter Text Common Tools.
Slide 1 Wednesday, October 07, 2015 Low Level Machine.
AS LEVEL ICT2 Processing Different Types of Information.
Data Representation The method of data representation in a computer system depends upon the type of data which is being used. Three types of data are considered.
Types of Data. Numbers Text Pictures Sound Video.
File Sizes & Storage Requirements.  An image has a width in pixels and a height in pixels  Start by calculating the number of pixels all up  640 x.
Chapter 4: Representation of data in computer systems: Images OCR Computing for GCSE © Hodder Education 2011.
Marr CollegeHigher ComputingSlide 1 Higher Computing: COMPUTER SYSTEMS Part 1: Data Representation – 6 hours.
Week One Raster & Vector Formats. 2 Computer Graphics Vector Graphics Pictures are produced via a series of ‘draw commands’ These commands will draw short.
Graphics An image is made up of tiny dots called pixels (“picture elements”) The resolution determines the.
CS1033 Pixel and Resolution
Data Representation The storage of Text Numbers Graphics.
Computer Systems Nat 4.5 Computing Science Data Representation Lesson 4: Representing and Storing Graphics EXTENSION.
DATA REPRESENTATION CHAPTER DATA TYPES Different types of data (Fig. 2.1) The computer industry uses the term “MULTIMEDIA” to define information.
Resolution The resolution of an image is determined by the number of individually addressable points that make up the image, whether it is the number.
Sci Vis I Exam Review Most Missed Review Questions.
Representation of Data in Computer Systems
Software Design and Development Storing Data Part 2 Text, sound and video Computing Science.
 Computers are 2-state devices › Pulse – No pulse › On – Off  Represented by › 1 – 0  BINARY.
Storage Requirements Computer Systems.
Text and Images Key Revision Points.
Computer Systems Nat 5 Computing Science Data Representation
Unit 2.6 Data Representation Lesson 3 ‒ Images
Storing Graphics Nat 5 Data Representation Lesson 4a: Storing Graphics
Images Data Representation.
Data Representation Images.
Data Representation.
Representing images.
Computer Systems Nat 4/5 Data Representation Lesson 4:
Computer Science Higher
Binary 4 File Sizes.
GRAPHICS Source:
Computer Systems Nat 4/5 Computing Science Computer Structure:
An Introduction to Scanning and Storing Photographs and Graphics
Images in Binary.
Data Representation.
Representing Images 2.6 – Data Representation.
What do these words mean to you?
Summer Term Year 10 Slides
Programming Graphic LCD
Computer Systems – Unit 1
Programming Graphic LCD
Why use Binary? It is a two state system (on/off) which makes it simple to operate Even if degradation of current occurs (ie a slight drop in voltage)
Programming Graphic LCD
Computer Systems.
Programming Graphic LCD
Programming Graphic LCD
Computer Systems Nat 4.5 Computing Science Data Representation
Computer Systems Nat 4/5 Data Representation Lesson 4:
WJEC GCSE Computer Science
Year 8 Unit 2 Bitmap Graphics
Presentation transcript:

Graphics in a computers memory How a picture (i.e. a graphic) is stored in a computers memory A computer screen is made up of little dots, called PICture ELements. (pixels). If you make each dot on or off, you can build up a monochrome (black and white) picture. Also, off and on can be represented by binary 0 and 1. Here is a diagram that shows a small picture graphic represented by a binary number. Black and white allow ONE bit per pixel. Colour allows 8, 16 or even 24 bits per pixel.

Each pixel has a certain number of bits allocated to it (the bit depth). Each pattern gives a different colour. More than one bit per pixel Here we have 8 bits per pixel

Each pixel has a certain number of bits allocated to it (the bit depth). Each pattern gives a different colour. 4 bits give 2 = 16 colours8 bits give 2 = 256 colours 0000White Blue Pink Red Brown “ “ 0110“ “ Black “ *48*

Line thickness End coordinates Start coordinates Fill Pattern Line colour Etc The program takes the mouse input and create the shape on screen Vector Graphics The software defines the objects

Calculation 1 Calculate the storage requirements for a bit map which is 1200 by 800 pixels with a bit depth of 16 bits. Give the answer in Kb. Solution No of pixels = 1200 X 800= pixels Storage= X 16 bits = X 2 bytes = (960000X 2) / 1024 Kb= 1875 Kb

Calculation 2 Calculate the storage requirements for a bit map which is 8 inches by 4 inches, resolution 400 dpi and with a bit depth of 24 bits. Give the answer in Mb to one decimal place. Solution No pixels = (8X400) X (4X400) Storage = (8X400) X (4X400) X 24 bits = (8X400) X (4X400) X 3 bytes = (8X400) X (4X400) X 3 / 1024 Kb = Kb = / 1024 Mb = 14.6 Mb 8 X X 400