QuinStreet



Working with the canvas markup element to render beautiful graphics in HTML5Lead-InThis article walks web developers about the basics of the canvas markup element and using it to draw graphics in your HTML5 web pages.IntroductionTo 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 mediaScripting enabled (Y/N)What does canvas element represent? (if canvas elements are supported)Interactive visual mediaYesEmbedded content consisting of a dynamically created image, the element’s bitmapNon-interactive visual mediaYesEmbedded content with the element’s current bitmap and sizeInteractive visual mediaNoFallback contentNon-interactive visual mediaNoFallback 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:<!DOCTYPE html><html> <meta charset="utf-8"/> <title>Canvas sample</title> <body> <article> <header> <h1>Canvas sample</h1> <p>The sample using Canvas markup element</p> </header> <canvas id="mycanvas" width="200" height="400" ></canvas> <button id="buttonDrawLine" type="button" onclick="buttonDrawLine_click()">Draw Line</button> <button id="buttonFillRectangle" type="button" onclick="buttonFillRectangle_click()">Fill Rectangle</button> <footer> <h1></h1> <p>HTML Goodies</p> </footer> </article> <script type="text/javascript"> function buttonDrawLine_click() { var c=document.getElementById("mycanvas"); var context=c.getContext("2d"); context.moveTo(0,0); context.lineTo(200,400); context.stroke(); } function buttonFillRectangle_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>.SummaryIn 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 authorVipul 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 vipul.patel@ ................
................

In order to avoid copyright disputes, this page is only a partial summary.

Google Online Preview   Download