Answers for "html2canvas blur image"

0

turn of blur html canvas

const canvas = document.getElementById('canvas');
const ctx = canvas.getContext('2d');

ctx.filter = 'blur(4px)';
ctx.font = '48px serif';
ctx.fillText('Hello world', 50, 100);
Posted by: Guest on October-19-2020
1

js filter blur Property

document.getElementById("AllBlurANT").style.filter = "blur(5px)";
Posted by: Guest on December-10-2020

Browse Popular Code Answers by Language