summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/canvas/element/manual/filters/tentative/canvas-filter-object-convolve-matrix-expected.html
blob: 896a93542ec507f1873866f47c77051e7d08a0e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<style type="text/css">
  canvas {
    margin: 5px;
  }
</style>
<body>
  <svg width="0" height="0">
    <filter color-interpolation-filters='sRGB' id="justKernel">
      <feConvolveMatrix
          kernelMatrix="3 0 0 0 0 0 0 0 -3"/>
    </filter>
    <filter color-interpolation-filters='sRGB' id="preserveAlpha">
      <feConvolveMatrix
          kernelMatrix="3 0 0 0 0 0 0 0 -3"
          preserveAlpha="true"/>
    </filter>
    <filter color-interpolation-filters='sRGB' id="target">
      <feConvolveMatrix
          kernelMatrix="3 0 0 0 0 0 0 0 -3"
          targetX="2" targetY="2"/>
    </filter>
    <filter color-interpolation-filters='sRGB' id="divisor">
      <feConvolveMatrix
          kernelMatrix="3 0 0 0 0 0 0 0 -3"
          divisor="3"/>
    </filter>
    <filter color-interpolation-filters='sRGB' id="bias">
      <feConvolveMatrix
          kernelMatrix="3 0 0 0 0 0 0 0 -3"
          bias="0.5"/>
    </filter>
    <filter color-interpolation-filters='sRGB' id="edgeMode">
      <feConvolveMatrix
          kernelMatrix="3 0 0 0 0 0 0 0 -3"
          edgeMode="wrap"/>
    </filter>
  </svg>
</body>
<script type="text/javascript">

const filters = [
  "url('#justKernel')",
  "url('#preserveAlpha')",
  "url('#target')",
  "url('#divisor')",
  "url('#bias')",
  "url('#edgeMode')",
];

function draw(ctx) {
  ctx.fillRect(0, 20, 120, 100);

  ctx.beginPath();
  ctx.arc(150, 70, 50, 0, 2*Math.PI);
  ctx.fill();

  ctx.beginPath();
  ctx.moveTo(220, 20);
  ctx.lineTo(170, 120);
  ctx.lineTo(270, 120);
  ctx.lineTo(220, 20);
  ctx.fill();
}

for (f of filters) {
  const canvas = document.createElement("canvas");
  document.body.prepend(canvas);
  const ctx = canvas.getContext("2d");
  ctx.filter = "blur(0px)";
  ctx.fillStyle = "rgba(0,255,0,0.5)";
  draw(ctx);
  ctx.fillStyle = "rgba(255,0,255,0.5)";
  ctx.filter = f;
  draw(ctx);
}
</script>