Wat ik mij afvroeg is het mogelijk om een SVG filter in een canvas code te gebruiken?
<canvas id="canvas"></canvas>
<script>
var canvas = document.getElementById("canvas");
var ctx = canvas.getContext("2d");
ctx.font = "48px arial";
ctx.strokeText("Hello world", 50, 100);
</script>