Canvas 图片平铺设置

Posted 就只是小茗

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Canvas 图片平铺设置相关的知识,希望对你有一定的参考价值。

/**
 * 图片平铺
 */
function initDemo7(){
    var canvas = document.getElementById("demo7");
    if (!canvas) return;
    var context = canvas.getContext("2d");
    var type = [
        "no-repeat", // 不平铺
        "repeat-x", // 横向平铺
        "repeat-y", // 纵向平铺
        "repeat" // 全画布平铺
    ];
    var index = 3;
    var img = new Image();
    img.src = "images/timg3.jpg";
    img.onload = function () {
        // 平铺方式
        context.fillStyle = context.createPattern(img, type[index]);
        context.fillRect(0, 0, canvas.width, canvas.height);
    }
}

 

以上是关于Canvas 图片平铺设置的主要内容,如果未能解决你的问题,请参考以下文章

canvas画布上平铺图片&&绘制文本

win2d图片平铺无法在UWP Scrollviewer中运行

canvas使用图像(绘制图、图像平铺、图像剪裁、像素处理、绘制文字)

css中 背景图片全面平铺 的代码是啥

CSS布局:背景图片设置不平铺,结果平铺了;啥情况?只有在火狐下正常,其他浏览器平铺。 字幕D家居这个

css 背景平铺