views:

85

answers:

2

Hi,

I need some kick-ass effects for my web site, like gaussian blur, noise, convolution filters, morphological operations etc. All effects must be applied dynamically (no pre-renderend images) and being changed over time.

What is the most powerful image processing library, implemented in JavaScript ?

+1  A: 

Take a look at Pixastic

Pixastic is an experimental library which allows you to perform a variety of operations on images using just a bit of JavaScript. The effects supported out of the box include desaturation/greyscale, invert, flipping, brightness/contrast adjustment, hue/saturation, emboss, blur, and many more.

Demo can be found here

SteD
Thanks. I have also found this library. But thought, that there is some other, that i did't found.
AntonAL
+1  A: 

Pixastic is the only one I know of, but not all its methods are fully cross browser compatible - they rely on features of the HTML5 canvas element which are unavailable in Internet Explorer, even with exCanvas.

A few demos:

http://www.pixastic.com/lib/docs/

Andy E
Thanks, will play with it
AntonAL