summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/canvas/element/manual/filters/tentative/canvas-filter-object-convolve-matrix.html
blob: 1dfd602d13348b778a2c34d1fe719bcd52fea0d4 (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
<!DOCTYPE html>
<head>
    <link rel="match" href="canvas-filter-object-convolve-matrix-expected.html">
    <style type="text/css">
      canvas {
        margin: 5px;
      }
    </style>
</head>
<body>
</body>
<script>
function makeConvolveFilter(options) {
  const KERNEL_MATRIX = [
    [3, 0, 0],
    [0, 0, 0],
    [0, 0, -3],
  ];

  options = Object.assign(options, {
    kernelMatrix: KERNEL_MATRIX, name: "convolveMatrix"});
  return new CanvasFilter(options);
}

const test_cases = [
  {},
  {preserveAlpha: true},
  {targetX: 2, targetY: 2},
  {divisor: 3},
  {bias: 0.5},
  {edgeMode: "wrap"}
];

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 (tc of test_cases) {
  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 = makeConvolveFilter(tc);
  draw(ctx);
}
</script>