zoukankan      html  css  js  c++  java
  • (八)模式(就像是给元素添加背景图片)

    createPattern()【2个参数,1页面上的img元素,2字符串、同background-repeat的值一样,设置是否平铺】
    【图像是从画布的(0,0)点开始绘制的】

    var canvas = document.getElementById("canvas");
        var img = document.images[0];
        img.onload = function(){
            if(canvas.getContext){
                var ctx = canvas.getContext("2d");
    
                //设置模式,
                var pattern = ctx.createPattern(img,"repeat");
    
                ctx.beginPath();
    
                ctx.fillStyle = pattern;//使用模式
                ctx.fillRect(10,10,380,200);//矩形的开始点只是觉得从图像的哪里开始显示图像
    
                ctx.stroke();
                ctx.closePath();
            }
        }
  • 相关阅读:
    php面向对象开发的学习
    我的php感悟
    说说面向对象
    session,上传文件
    PHP构造函数的用法分析
    生成图片
    上传文件
    fetch
    ajax2
    ajax1
  • 原文地址:https://www.cnblogs.com/chefweb/p/6046486.html
Copyright © 2011-2022 走看看