Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Drupal 7 Media

You're reading from   Drupal 7 Media Integrate, implement, and extend rich media resources such as images, videos, and audio on your Drupal 7 website with this book and ebook

Arrow left icon
Product type Paperback
Published in Jul 2013
Publisher Packt
ISBN-13 9781849516082
Length 260 pages
Edition 3rd Edition
Languages
Tools
Concepts
Arrow right icon
Author (1):
Arrow left icon
Liran Tal Liran Tal
Author Profile Icon Liran Tal
Liran Tal
Arrow right icon
View More author details
Toc

HTML5 canvas


Canvas is a 2D bitmap drawing capability (3D canvas context can be used by Web Graphics Library (WebGL)) that browsers provide and expose, JavaScript APIs, to interact with. It's completely integrated into HTML5 documents, controlled using JavaScript, and styled using CSS. As opposed to vector systems like Scalable Vector Graphics (SVG), which is not part of the HTML5 spec, bitmap objects are drawn non-layered, as a flat picture, thus modifying objects, already on the canvas, will affect the entire canvas element.

Uses for canvas technology can vary from providing, in-browser, free-style drawing (think Microsoft Paint in your browser), create games, and create graphs. All of which is natively supported, within the browser, without requiring the use of Flash or other third-party plugins.

Using the canvas feature is possible by simply stating a new element as follows:

<canvas height="800" width="600" id="freestyle_draw">
Your browser does not support HTML5 canvas
</canvas...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime
Banner background image