SVG过滤器,使半透明的像素不透明? [英] svg filter to make translucent pixels opaque?

查看:80
本文介绍了SVG过滤器,使半透明的像素不透明?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我将如何创建svg过滤器以将所有半透明像素映射到不透明像素?所有透明像素应保持透明.

How would I create a svg filter to map all translucent pixels to opaque pixels? All transparent pixels should remain transparent.

我正在尝试创建形状遮罩,但是需要遮罩的边缘完全不透明.否则,使用口罩时会留下光环.这是我尝试使用此SVG过滤器删除的光环的示例: https://codepen.io/jedierikb/pen/yGYqKK

I am trying to create a shape mask but need the edges of the masks to be fully opaque. Otherwise I am left with a halo when I use the mask. Here is an example of the halo I am trying to remove with this SVG filter: https://codepen.io/jedierikb/pen/yGYqKK

此处的答案做类似的事情-使用feComponentTransfer将所有半透明像素设置为透明像素.

This answer here does something similar - setting all translucent pixels to transparent pixels using a feComponentTransfer.

建议?

推荐答案

这是一种方法.除0以外的所有A值都设置为1(不透明).

Here's one way. All values of A except for 0 are set to 1 (opaque).

var ctx = canvas.getContext('2d');
ctx.fillStyle = '#ABEDBE';
ctx.fillRect(0,0,canvas.width,canvas.height);
ctx.fillStyle = 'black';
ctx.font = '14px sans-serif';
ctx.textAlign = 'center';

// first without filter
ctx.fillText('no filter', 60, 20);
drawArc();
drawTriangle();
// then with filter
ctx.setTransform(1, 0, 0, 1, 120, 0);
ctx.filter = 'url(#remove-alpha)';
// and do the same ops
ctx.fillText('no alpha', 60, 20);
drawArc();
drawTriangle();

// to remove the filter
ctx.filter = 'none';


function drawArc() {
  ctx.beginPath();
  ctx.arc(60, 80, 50, 0, Math.PI * 2);
  ctx.stroke();
}

function drawTriangle() {
  ctx.beginPath();
  ctx.moveTo(60, 150);
  ctx.lineTo(110, 230);
  ctx.lineTo(10, 230);
  ctx.closePath();
  ctx.stroke();
}
// unrelated
// simply to show a zoomed-in version
var zCtx = zoomed.getContext('2d');
zCtx.imageSmoothingEnabled = false;
canvas.onmousemove = function drawToZoommed(e) {
  var x = e.pageX - this.offsetLeft,
    y = e.pageY - this.offsetTop,
    w = this.width,
    h = this.height;
    
  zCtx.clearRect(0,0,w,h);
  zCtx.drawImage(this, x-w/6,y-h/6,w, h, 0,0,w*3, h*3);
}

<svg width="0" height="0" style="position:absolute;z-index:-1;">
  <defs>
    <filter id="remove-alpha" x="0" y="0" width="100%" height="100%">
      <feComponentTransfer>
        <feFuncA type="discrete" tableValues="0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
                                              1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
                                              1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
                                              1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
                                              1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
                                              1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
                                              1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
                                              1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
                                              1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
                                              1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
                                              1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
                                              1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
                                              1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
                                              1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
                                              1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
                                              1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1"></feFuncA>
      </feComponentTransfer>
      </filter>
  </defs>
</svg>

<canvas id="canvas" width="250" height="250" ></canvas>
<canvas id="zoomed" width="250" height="250" ></canvas>

这篇关于SVG过滤器,使半透明的像素不透明?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆