HLJ 发布于
2018-08-20 10:45:23

HTML5 Canvas创建背景图像

要使用HTML5 Canvas创建图像,我们可以使用canvas上下文的createPattern()方法返回图像对象,将fillStyle属性设置为图像对象,然后使用fill()填充形状。 createPattern()方法需要一个图像对象和一个重复选项,可以是repeat,repeat-x,repeat-y或no-repeat。 除非另有说明,否则重复选项默认重复。
html代码:
<!DOCTYPE HTML>
<html>
  <head>
    <style>
      body {
        margin: 0px;
        padding: 0px;
      }
    </style>
  </head>
  <body>
    <canvas id="myCanvas" width="578" height="200"></canvas>
    <script>
      var canvas = document.getElementById('myCanvas');
      var context = canvas.getContext('2d');

      var imageObj = new Image();
      imageObj.onload = function() {
        var pattern = context.createPattern(imageObj, 'repeat');

        context.rect(0, 0, canvas.width, canvas.height);
        context.fillStyle = pattern;
        context.fill();
      };
      imageObj.src = 'https://www.html5canvastutorials.com/demos/assets/wood-pattern.png';
    </script>
  </body>
</html>
当前文章内容为原创转载请注明出处:http://www.good1230.com/detail/2018-08-20/147.html
最后生成于 2023-06-18 18:37:49
此内容有帮助 ?
0