canvas - How does Blur Filter work in HTML5 Kinetic.Filters.Blur -


how can use blur filter in html5? find this:

kinetic.filters.blur(imagedata, config )   

and parameters:

imagedata  {object}   config {object}   config.radius {integer}   

explain me example how can this.

var image = new kinetic.image({       x: 10,       y: 10,       image: imageobj,       filter: kinetic.filters.blur,       filterradius: 20   }); 

checkout tutorial: http://www.html5canvastutorials.com/kineticjs/html5-canvas-tween-blur-filter-with-kineticjs/


Comments

Popular posts from this blog

Why does Ruby on Rails generate add a blank line to the end of a file? -

keyboard - Smiles and long press feature in Android -

node.js - Bad Request - node js ajax post -