gpt4 book ai didi

javascript - 如何将 ColorMatrix 与 Canvas Context 一起应用

转载 作者:行者123 更新时间:2023-11-30 19:01:33 29 4
gpt4 key购买 nike

我正在 Canvas 上工作,并使用 EaselJS 库来玩。使用 EaselJS,我可以使用过滤器应用 ColorMatrix

    const myGraphics = new createjs.Shape();
myGraphics.graphics.bf(img, 'no-repeat')
.drawCircle(x, y, cursorSize);

const colorMatrix = [0.3, 0.3, 0.3, 0, 0, 0.3, 0.3, 0.3, 0, 0, 0.3, 0.3, 0.3, 0, 0, 0, 0, 0, 1, 0];
const blurFilter = new createjs.BlurFilter(5, 5, 1);
myGraphics.filters = [new createjs.ColorMatrixFilter(colorMatrix), blurFilter];

myGraphics.cache(0, 0, 500, 500);

是否可以在不使用 EaselJS 的情况下应用同样的方法?我有以下代码

    const patt = ctx.createPattern(img, 'no-repeat');
ctx.filter = 'blur(5px)';
ctx.fillStyle = patt;
ctx.beginPath();
ctx.arc(x, y, r1, 0, Math.PI * 2);
ctx.fill();

如何将 colorMatrix 滤镜应用于上述 Canvas 上下文?

提前致谢

最佳答案

您可以将 svg 过滤器与 css 一起使用 url(#filter_id) context.filter 的符号属性,对于颜色矩阵,使用 <feColorMatrix> svg 元素:

const canvas = document.getElementById( 'canvas' );
const ctx = canvas.getContext( '2d' );
const img = new Image();
img.onload = e => {
ctx.fillStyle = ctx.createPattern(img, 'repeat');
ctx.filter = 'url(#matrix)';
ctx.rect( 20, 20, 460, 460 );
ctx.scale( 0.15, 0.15 );
ctx.fill();
};
img.src = "https://upload.wikimedia.org/wikipedia/commons/4/47/PNG_transparency_demonstration_1.png";
<svg width="0" height="0" style="position:absolute;z-index:-1">
<filter id="matrix">
<feColorMatrix type="matrix" values="0.3, 0.3, 0.3, 0, 0, 0.3, 0.3, 0.3, 0, 0, 0.3, 0.3, 0.3, 0, 0, 0, 0, 0, 1, 0"/>
</filter>
</svg>
<canvas id="canvas"> width="500" height="500"></canvas>

关于javascript - 如何将 ColorMatrix 与 Canvas Context 一起应用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59466926/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com