如何将 ColorMatrix 与 Canvas Context 一起应用

Posted

技术标签:

【中文标题】如何将 ColorMatrix 与 Canvas Context 一起应用【英文标题】:How to apply ColorMatrix along with Canvas Context 【发布时间】:2020-04-15 10:15:30 【问题描述】:

我正在画布上工作并使用 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 过滤器应用于上述画布上下文?

提前致谢

【问题讨论】:

【参考方案1】:

对于context.filter 属性,您可以使用带有css url(#filter_id) 表示法的svg 过滤器,对于颜色矩阵,使用<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   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">  ></canvas>

【讨论】:

以上是关于如何将 ColorMatrix 与 Canvas Context 一起应用的主要内容,如果未能解决你的问题,请参考以下文章

如何在 .NET 中使用 ColorMatrix 更改亮度、颜色、饱和度、色调

了解使用 ColorMatrix 和 ColorMatrixColorFilter 修改 Drawable 的色调

Android图片色彩处理ColorMatrix

如何使用 GPUImageLibrary“减去”滤色器?

怎样才能得到ffmpeg的colorchannelmixer的colormatrix

如何将 JButton 与扩展 Canvas 的类一起使用?