Graphics Bitmap Vector

Slides:



Advertisements
Similar presentations
Web Design Vocab 3 PNG, JPG, GIF, MP3, MPEG.
Advertisements

Multimedia for the Web: Creating Digital Excitement Multimedia Element -- Graphics.
Introduction to Computer Graphics
Guilford County SciVis V106.01
V Obtained from a Guildford County workshop-Summer, 2014.
Welcome to a New Quarter Class Rules and Responsibilities What will be learning? 106-Static and Dynamic Visualization 105-Synthesize Data for SciVis Video-Real.
Part A Multimedia Production Rico Yu. Part A Multimedia Production Ch.1 Text Ch.2 Graphics Ch.3 Sound Ch.4 Animations Ch.5 Video.
Data starts with width and height of image Then an array of pixel values (colors) The number of elements in this array is width times height Colors can.
Zinnia Bell. RAWimages are image files that have not yet processed, they contain minimally processed data from the image sensor of either a image scanner,
Chapter 3 Adding Images in HTML. Agenda Understanding Web Page Images Prepare Your Images for the Web Insert an Image Specify an Image Size Add Alternative.
Prepared by George Holt Digital Photography BITMAP GRAPHIC ESSENTIALS.
1 Bitmap Graphics It is represented by a dot pattern in which each dot is called a pixel. Each pixel can be in any one of the colors available and the.
Module Code: CU0001NI Technical Information on Digital Images Week -2.
Simple Graphics. Graphics Used in PowerPoint, Web pages and others Basic Knowledge drawing change of colour, shape and others acquiring, video camera,
Image Storage Bitmapped Graphics – in which an image is represented as a collection of dots Vector Graphics – in which an image is represented as a set.
Presentation Design: Graphics. More About Color “Bit depth” of colors -- This is based on the smallest unit of information that a computer understands.
XHTML Images. Images are important Purpose: to enhance your web site. Add only when they complement or add additional impact to your message.
1 Perception, Illusion and VR HNRS 299, Spring 2008 Lecture 14 Introduction to Computer Graphics.
Common file formats  Lesson Objective: Understanding common file formats and their differences.  Learning Outcome:  Describe the type of files which.
Multimedia Elements II Graphics, Digital Video. UIT - Multimedia Production2 Multimedia Elements Multimedia elements include: Text Graphics Animation.
Graphics and Images Communicating Information : Documents and Publications.
Image Representation. Objectives  Bitmaps: resolution, colour depth and simple bitmap file calculations.  Vector graphics: drawing list – objects and.
Digital Image Formats: An Explanation Guilford County SciVis V
Information Processes and Technology Multimedia: Graphics.
Addressing Image Compression Techniques on current Internet Technologies By: Eduardo J. Moreira & Onyeka Ezenwoye CIS-6931 Term Paper.
GRAPHICS. Topic Outline What is graphic. Resolution. Types of graphics. Using graphic in multimedia applications.
Computer Images Can store color info about each pixel, but makes file BIG Compression for Web 15.
44212: Web-site Development Optimising Images for Web-pages Ian Perry Room:C49 Extension:7287
2D Graphics Theory & Principles. Single Point Smallest addressable area on screen or digital image.
Graphics An image is made up of tiny dots called pixels (“picture elements”) The resolution determines the.
Digital Images are represented by manipulating this…
Graphics. … Can be immersive and capture imaginations. Largest Photographs In The World.
Image File Formats. What is an Image File Format? Image file formats are standard way of organizing and storing of image files. Image files are composed.
Graphics Concepts Presentation
POWERPOINT PLUS 11/17/07 Class Notes. WHAT IS A PIXEL A pixel is a number that represents the intensity of light at a square spot in the picture. Pixels.
Introduction to Images & Graphics JMA260. Objectives Images introduction Photoshop.
Digital Graphics for Computer Games Pixels Types of Digital Graphics (Raster and Vector) Compression.
1 Perception and VR MONT 104S, Fall 2008 Lecture 20 Computer Graphics and VR.
Image File Formats By Dr. Rajeev Srivastava 1. Image File Formats Header and Image data. A typical image file format contains two fields namely Dr. Rajeev.
GIF vs. JPEG GIF and JPEG (JPG) image formats are different. You should know which to use when. Here are some examples.
Image File Formats Harrow Computer Club – Wed, 1 Dec 2010 Bob Watson MA CMath MIMA MBCS.
Digital Image Formats: An Explanation Guilford County SciVis V
Graphics and Image Data Representations 1. Q1 How images are represented in a computer system? 2.
Computer Graphics Lesson 2 July 12, 2005 Image Formats What are some formats you are familiar with? There are 4 basic image format types: Uncompressed.
Digital Imaging 101 Ann Ware.
Web Graphics By Chris Harding.
Lesson 22 Graphics Software.
Binary Representation in Audio and Images
Computer Science Higher
Introduction to raster graphics
Raster Images CPSC 1030.
Chapter 3 Image Files © 2017 Cengage Learning®. May not be scanned, copied or duplicated, or posted to a publicly accessible website, in whole or in part.
A computer display is made up of small squares, called pixels.
Digital Images.
Chapter 3:- Graphics Eyad Alshareef Eyad Alshareef.
Graphics.
Digital Image Formats: An Explanation
3.01F Publishing Animated Videos
Introduction to Computer Graphics
An Introduction to Scanning and Storing Photographs and Graphics
Graphics Basic Concepts.
Web Design and Development
Topic 3: Data Compression.
COMS 161 Introduction to Computing
Final Study Guide Arts & Communications.
Color and Images.
Multimedia System Image
Lesson 22 Graphics Software.
Lecture 4 - Introduction to Computer Graphics
Introduction to Image Analysis and Processing
Presentation transcript:

Graphics Bitmap Vector Graphics file types fall into two main categories: Bitmap Graphics and Vector Graphics. Bitmap Vector Referred to as paint graphics Can show color or black and white photographs/clipart Non-scalable without loss of quality Every pixel in the image adds to the overall file size Referred to as draw graphics Can show color or black and white solid fill/gradient image. Scalable without loss of quality File size is calculated by storing the positional points of the image and a generic fill color/pattern

Calculating File Size -Black and White Bitmap

Cont’d… Width 11 Pixels GIF and JPG GIF and JPG Higher in Quality = Higher in File Size Its all about pixel potential Height 11 Pixels Color: 8 bit (lets you choose from 256 colors that are premixed) Color: 24 bits (essentially mixes custom colors for each pixel on the fly!)

It all about defining the pixels and the pixels are numerous                                                                                                                         

Static GIFS Limited to a range of 256 different colors

GIF Compression In a bitmap image, the image file has to define the exact color of every pixel in the image. For example, imagine a typical (JPEG) bitmap on the web that is 400 by 400 pixels. To define this image, you would need the following formula: 3 bytes per pixel X 160,000 pixels = 480,000 bytes. That would be a huge image file, so both the JPG and GIF formats compress the image in different ways. In a GIF image, the number of colors is reduced to 256 (compared to the millions of a color for a JPEG image) and then "runs" of the same-color pixels are encoded in a color *# Of Pixels format. This process of compression is called run-length encoding or (RLE)

Run-Length Encoding Key BYTE 10001000 00001101 11001110 00010111 ...3,4,5,6,7 00010111 00000000 00011000 10101110 Key BYTE

Animated GIF http://computer.howstuffworks.com/web-animation2.htm An animated GIF is a sequence of GIF files all bonded together and displayed one after the other. With enough panes, you can get very realistic animations. A minimum of 3 frames is necessary to create animation. The total file size of an animated gif is the sum of the GIF files used to create the sequence, and that can add up quickly. The disadvantage is that you have to keep the animation pretty simple to keep the file size down. http://computer.howstuffworks.com/web-animation2.htm

Data Compression Lossless compression: Refers to data compression techniques in which no data is lost. The WinZIP compression technology is an example of lossless compression. For most types of data, lossless compression techniques can reduce the space needed by only about 50%. For greater compression, one must use a lossy compression technique. Note, however, that only certain types of data – graphics, audio, and video -- can tolerate lossy compression. You must use a lossless compression technique when compressing data and programs.

JPEG Compression Most Web sites that publish photographs use the Joint Photographic Experts Group (JPEG) (pronounced "jay-peg") format for their images. JPEG is a popular format for two reasons: It has good compression characteristics on photographic data. It lets you adjust the amount of compression. http://computer.howstuffworks.com/question289.htm

MPEG Compression An MPEG file tries to eliminate repetition between frames to significantly compress video information. In addition it allows a soundtrack (which animated GIFs do not). Because a typical sequence has hundreds or thousands of frames, file sizes can still get quite large.

Vector examples Bezier curve needs only four points! [position: 3.123; 48.52] [position: 10.03; 52.6] [position: 2.95; 86.52] [position: 11.04; 102.6]

Vector-based animation (Shockwave) Shockwave/Flash provides a vector-based animation capability. Instead of specifying the color of every pixel, a Shockwave file specifies the coordinates of shapes (things like lines, rectangles, circles, etc.) as well as the color of each shape. Shockwave/Flash files can be extremely small. They allow animation and sound. The images are also scalable -- because they are vector-based, you can enlarge the image and it will still look like a fluid animation. http://computer.howstuffworks.com/web-animation1.htm