91-9990449935 0120-4256464 |
HTML Canvas TagThe HTML canvas element provides HTML a bitmapped surface to work with. It is used to draw graphics on the web page. The HTML 5 <canvas> tag is used to draw graphics using scripting language like JavaScript. The <canvas> element is only a container for graphics, you must need a scripting language to draw the graphics. The <canvas> element allows for dynamic and scriptable rendering of 2D shapes and bitmap images. It is a low level, procedural model that updates a bitmap and does not have a built-in scene. There are several methods in canvas to draw paths, boxes, circles, text and add images. How to create a HTML canvas?A canvas is a rectangle like area on an HTML page. It is specified with canvas element. By default, the <canvas> element has no border and no content, it is like a container. HTML 5 Canvas Tag ExampleTest it NowOutput: Note: It is always necessary to specify the id attribute and the height & width attribute to define the size of the canvas. You can have multiple canvas elements on one HTML page.Supporting Browsers
HTML Canvas Tag with JavaScriptA canvas is a two dimensional grid. Coordinates (0,0) defines the upper left corner of the canvas. The parameters (0,0,200,100) is used for fillRect() method. This parameter will fill the rectangle start with the upper-left corner (0,0) and draw a 200 * 100 rectangle. Output: Drawing Line on CanvasIf you want to draw a straight line on the canvas, you can use the following two methods. moveTo(x,y): It is used to define the starting point of the line. lineTo(x,y): It is used to define the ending point of the line. If you draw a line which starting point is (0,0) and the end point is (200,100), use the stroke method to draw the line. Output: Drawing Circle on CanvasIf you want to draw a circle on the canvas, you can use the arc() method: To sketch circle on HTML canvas, use one of the ink() methods, like stroke() or fill(). Output: Drawing text on canvasThere are property and methods used for drawing text on the canvas. font property: It is used to define the font property for the text. fillText(text,x,y) method: It is used to draw filled text on the canvas. It looks like bold font. strokeText(text,x,y) method: It is also used to draw text on the canvas, but the text is unfilled. Let's see fillText() method example. Output: Let's see strokeText() method example. Output:
Next TopicHTML SVG Tag
|