Answers for "how to blur image with context in javascript"

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

Code answers related to "how to blur image with context in javascript"

Browse Popular Code Answers by Language