Working with the canvas markup element to render beautiful graphics in HTML5

Lead-In

This article walks web developers about the basics of the canvas markup element and using it to draw graphics in your HTML5 web pages.

Introduction

To support rich graphics, the HTML5 specification introduces the canvas markup element ( The canvas markup element is intended for use where embedded content is expected. The canvas element supports a resolution-dependent bitmap canvas and can be used to render graphs, art, graphics and images on the fly.

The canvas element supports content which can be used as the element’s fallback content in case the browser does not support rendering canvas elements. The specification recommends that the content represent the same intent as the canvas’ bitmap.

Canvas markup element can be used in both interactive visual media as well as non-interactive (static) visual media. Here is a breakdown of what the canvas element represents in various scenarios.

Type of media / Scripting enabled (Y/N) / What does canvas element represent? (if canvas elements are supported)
Interactive visual media / Yes / Embedded content consisting of a dynamically created image, the element’s bitmap
Non-interactive visual media / Yes / Embedded content with the element’s current bitmap and size
Interactive visual media / No / Fallback content
Non-interactive visual media / No / Fallback content

A simple canvas element can be declared with the following markup.

<canvas id=”mycanvas” width=”200” height=”400” </canvas>

Once you have the canvas element, you can specify a rendering content bound to it.

The canvas context mode ( has a default value of none, and supports other values: “direct-2d”, “direct-webgl”, “indirect” and “proxied”.

JavaScript can be used to get the rendering content of a canvas by calling the getContext(“2d”) api.

Let us create a simple HTML5 page where we will use the canvas markup element to draw a line and to fill a rectangle. The HTML code for this is as under:

<!DOCTYPEhtml

html

<metacharset="utf-8"/>

<titleCanvas sample</title

<body

<article

<header

<h1Canvas sample</h1

<pThe sample using Canvas markup element</p

</header

<canvasid="mycanvas"width="200"height="400" </canvas

<buttonid="buttonDrawLine"type="button"onclick="buttonDrawLine_click()"Draw Line</button

<buttonid="buttonFillRectangle"type="button"onclick="buttonFillRectangle_click()"Fill Rectangle</button

<footer

<h1</h1

<pHTML Goodies</p

</footer

</article

<scripttype="text/javascript"

functionbuttonDrawLine_click()

{

var c=document.getElementById("mycanvas");

var context=c.getContext("2d");

context.moveTo(0,0);

context.lineTo(200,400);

context.stroke();

}

functionbuttonFillRectangle_click()

{

var c=document.getElementById("mycanvas");

var context=c.getContext("2d");

context.fillStyle="#F00000";

context.fillRect(0,0,200,400);

}

</script

</body

</html

As you can see, we have a “mycanvas” element and two buttons. To draw a line, we get the context, set it to center at coordinates (0,0) and call lineTo() and stroke() api on the context to render the line.

To fill the rectangle, we call the fillRect() api on the context.

When you render the page in a compatible browser (latest version of IE, Chrome, Firefox), the page will appear as under.

After we click on the Draw Line button, it will render as under.

And when we click on Fill Rectangle, the page will render as under:

When we click on Draw Line again, we will render a line on top of the rectangle.

If you are having trouble following along, you can download the HTML code from <download link>.

Summary

In this article, we learned about the canvas markup element and how it can be used to render simple graphics. I encourage readers to explore the HTML5 specification on canvas to find out more about the canvas element.

About the author

Vipul Patel is a Program Manager currently working at Amazon Corporation. He has formerly worked at Microsoft in the Lync team and in the .NET team (in the Base Class libraries and the Debugging and Profiling team). He can be reached at