Create a pattern with HTML5 Canvas using the following method: createPattern(image, repetition)− This method will use an image to create a pattern. The second parameter can be a string with one of the following values: repeat, repeat-x, repeat-y, and no-repeat. If an empty string or null is specified, a duplicate will be assumed.
You can try running the following code to see how to create a pattern -
<!DOCTYPE HTML> <html> <head> <style> #test { width:100px; height:100px; margin: 0px auto; } </style> <script> function drawShape(){ // get the canvas element using the DOM var canvas = document.getElementById('mycanvas'); // Make sure we don't execute when canvas isn't supported if (canvas.getContext){ // use getContext to use the canvas for drawing var ctx = canvas.getContext('2d'); // create new image object to use as pattern var img = new Image(); img.src = 'images/pattern.jpg'; img.onload = function(){ // create pattern var ptrn = ctx.createPattern(img,'repeat'); ctx.fillStyle = ptrn; ctx.fillRect(0,0,150,150); } } else { alert('You need Safari or Firefox 1.5+ to see this demo.'); } } </script> </head> <body id = "test" onload = "drawShape();"> <canvas id = "mycanvas"></canvas> </body> </html>
The above is the detailed content of Create a pattern using HTML5 Canvas. For more information, please follow other related articles on the PHP Chinese website!