Lesson 7: Video, Audio and Image Techniques

Slides:



Advertisements
Similar presentations
Copyright © 2003 Pearson Education, Inc. Slide 4-1 Created by Cheryl M. Hughes The Web Wizards Guide to XML by Cheryl M. Hughes.
Advertisements

Working with Graphics – Lesson 21 Working with Graphics Lesson 2.
CHAPTER 20 CREATING SVG GRAPHICS. LEARNING OBJECTIVES How to embed a graphic stored within a.SVG file in an HTML page How to use the and tag pair to specify.
Copyright © 2004 ProsoftTraining, All Rights Reserved. Lesson 8: Image Techniques ©2007 Prosoft Learning Corporation All rights reserved ITD 110 Web Page.
Iframes & Images Using HTML.
Web Development & Design Foundations with XHTML Chapter 4 Key Concepts.
Chapter 17 Creating Images for the Web. Chapter Lessons Learn about Web features Optimize images for Web use Create a button for a Web page Create slices.
Image Maps and Graphics Internet Basics and Far Beyond! Mrs. Wilson.
Chapter 5 Web Graphics Styling Basics Key Concepts Copyright © 2013 Terry Ann Morris, Ed.D 1.
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.
MIS 208 Fundamentals of Web Publishing Week 6 Performance Editing Graphics Imagemaps.
The Internet 8th Edition Tutorial 9 Creating Effective Web Pages.
Colors, Images, & Image Maps. Working with Color Colors are defined in terms of RGB Triplet –Red, Green, Blue –0 to 255 in intensity –(00, 00, 00) is.
Building the User Interface by Using HTML5: Text, Graphics, and Media Lesson 2.
Copyright © 2004 ProsoftTraining, All Rights Reserved. Lesson 8: Image Techniques.
1 SEG3120 Analysis and Design for User Interfaces Flash Anis Zarrad Parallel Simulations and Distributed Systems (PARADISE) Research Laboratory SITE, University.
CSCE Chapter 5 (Links, Images, & Multimedia) CSCE General Applications Programming Benito Mendoza 1 By Benito Mendoza Department.
Images (1) Three most popular formats – Graphics Interchange Format (GIF) – Joint Photographic Experts Group (JPEG) – Portable Network Graphics (PNG) –
Chapter 5 Web Graphics Styling Basics Key Concepts Copyright © 2013 Terry Ann Morris, Ed.D 1.
Multimedia and The Web.
1 Web Developer & Design Foundations with XHTML Chapter 4 Key Concepts.
Site Development Foundations © 2004 ProsoftTraining All rights reserved.
Working with Graphics – Lesson 21 Working with Graphics Lesson 2.
Adobe Photoshop CS3 Revealed – Chapter 16 FOR THE WEB CREATING IMAGES.
 You can also divide an image into regions that link to different documents depending on where someone clicks.  This is called an imagemap, and any.
A BCDE.
Adobe Dreamweaver CC: The Professional Portfolio Project 3: Photographer’s Web Site Working with static images Controlling backgrounds with CSS Working.
File Types. Terms Multimedia- the integration of text, sound, video and/or animation into a document Letters, brochures, newsletters, web pages or presentations.
1 A Basic Introduction to Flash. Outline What is a flash? Macromedia Flash MX 2004 Flash concepts Flash Demos Conclusion Additional help 2.
Linking Using Image Maps. What is an Image Map? An image map is an image in which several areas of an image are linked to different sites The areas of.
HTML5 and CSS3 Illustrated Unit F: Inserting and Working with Images.
HTML III ECT 270 Robin Burke.
Introducing Macromedia Flash 8
Web Development & Design Foundations with HTML5 8th Edition
Creating a Flash Web Site
Digital Illustration Chapter 6 File format.
ITE 115 Designing a Web Page Patrick Healy, NVCC, ITE115
Chapter 3 Image Files © 2013 Cengage Learning. All Rights Reserved. May not be scanned, copied or duplicated, or posted to a publicly accessible website,
OVERVIEW Objectives Follow a design document to prepare images for inclusion in a Web page Run a batch process to prepare multiple images in one step Use.
CSS Layouts: Grouping Elements
What is SVG?.
Inserting and Working with Images
Scalable vector graphics
Images, Links and Multimedia
Tutorial 3 – Designing a Web Page
DW Tutorial 5 Sessions 5.1 & 5.2 REVIEW
Learn HTML Basics Lesson No : 10
Lecture Week 4 Images.
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.
Chapter 3 Images.
Web Development & Design Foundations with HTML5 7th Edition
Introduction to Computer Graphics
Exercise 63 Use a Flash movie clip symbol to store an animation that you need to use more than once in an application. This is very important for keeping.
Objectives Create a figure box Add a background image
Image Maps.
Basics of Web Design Chapter 5 Graphics & Text Styling Basics Key Concepts Copyright © 2018 Terry Ann Morris, Ed.D.
Graphics (Characteristics 1)
HTML Image Maps Teacher: Ms. Olifer.
Create and edit web pages 2
Chapter 5 Graphics & Text Styling Basics Key Concepts
Creating Images for the Web
Digital Image Creation & Editing
Web Development & Design Foundations with H T M L 5
Final Study Guide Arts & Communications.
Creating an Image Map.
Develop Rich Internet Content and Applications
Lesson 5: Multimedia on the Web
Project 4 Creating an Image Map.
What is SVG?.
Lecture 4 - Introduction to Computer Graphics
Presentation transcript:

Lesson 7: Video, Audio and Image Techniques

Lesson 7 Objectives Use the <video> element to embed video in Web pages Use the <audio> element to embed audio in Web pages Define graphic types Create client-side image maps Define image transparency Define image interlacing Use Web-based technologies to create animation Explore mobile device issues with animation and plug-ins Create and manage images

The <video> Element Video elements and attributes:

The <video> Element (cont’d) HTML5-compliant browser support for HTML5 video formats and codecs:

The <audio> Element The <audio> element allows developers a standard method to embed audio into Web pages The controls attribute identifies the default audio controls: play, pause, volume, etc. Multiple sources can be identified with the <source> element to ensure various audio formats are supported

The <audio> Element (cont’d) HTML5-compliant browser support for HTML5 audio formats: Additional <audio> and <video> attributes:

Graphic Types Vector Graphics that use mathematical coordinates with lines, curves and shapes to create desired images and specify colors Bitmap Graphics that use small dots (usually thousands) to create an image and specify color Also known as raster graphics

Image Maps An image that contains hyperlinked, clickable regions, sometimes called "hot spots" Each hot spot is defined by a set of coordinates (indicating its position on the image) and a URL reference Two types of image maps: Client-side (the most common) Server-side (rarely used)

Defining a Client-Side Image Map Define a map, assign it a name, and provide hot-spot coordinates Refer to the image map by map name: <map name="mapname"> <area shape="shape" coords="coordinates" href="url" alt="description"/> </map> Associate the image file with the map: <img src="imagemap.gif" usemap="#mapname"/>

Defining a Rectangle Hot Spot Any two points can define a rectangle Each point is represented by a horizontal (x) coordinate and a vertical (y) coordinate Rectangles are defined by four coordinates representing the upper-left and bottom-right corners of the rectangle <area shape="rect" coords="x1,y1,x2,y2" href="url" alt="description"/>

Defining a Circle Hot Spot Circles are defined by two coordinates and a radius <area shape="circle" coords="x1,y1,radius" href="url " alt="description"/> The pair of coordinates specifies the circle's center A third number specifies the desired radius, or half-width, of the circle

Defining a Polygon Hot Spot Defines an irregular area (neither a circle nor a rectangle) Specify coordinates for each point that defines the polygon, from three to 100 pairs of coordinates <area shape="poly" coords="x1,y1,x2,y2,...xn,yn" href="url " alt="description"/>

Image Transparency Provides the visual effect of blending in to the background of the Web page Most developers use image transparency to remove the blank image background so it appears to float on the page Web-ready formats that support transparency: GIF 89a PNG

Image with No Transparency

Transparent PNG Image

Image Interlacing Allows an image to progressively display in a browser while downloading The image appears in stages during download (from top to bottom) The top of a non-interlaced image will appear after the browser has read 50 percent of the image

Image Interlacing (cont'd)

Animation Several images in a sequence, rendered in rapid succession to simulate motion Made possible in several ways: Animated GIFs and PNGs The animated image is actually a group of separate, sequenced images Flash Scripts, called macros, that manipulate vector images Popular, but proprietary technology (Adobe) Requires a browser plug-in to view Silverlight – Microsoft's answer to Flash Java applets – requires a Java interpreter to view Scalable Vector Graphics (SVG) – an open standard

Mobile Device Issues with Animation and Plug-Ins As you create animated images, remember the following issues: Animation techniques are often proprietary Plug-ins drain system resources Animation may seem useful and interesting, but it is frequently overused Animated images can limit accessibility

Creating and Managing Images There are several options you can use to obtain and manage images for use on your Web pages: Create original images using image-creation software Scan hard-copy images Use stock photographs Obtain photos from photo-sharing Web sites Use photo management software to organize, edit and share your images Consider search engine optimization (SEO) issues when creating and using images

Lesson 7 Summary Use the <video> element to embed video in Web pages Use the <audio> element to embed audio in Web pages Define graphic types Create client-side image maps Define image transparency Define image interlacing Use Web-based technologies to create animation Explore mobile device issues with animation and plug-ins Create and manage images