I need to do some interactive image processing on a webpage. I found pixastic and it seemed good for the job.
On this page I'm trying do blur an image, but I can only get "blurfast" to work. "blur" doesn't work for me.
I've been looking around and reading the documentation and can't see why it fails. Has anyone any idea?
I use this js:
$(function(){
    var img = document.getElementById("imageone");
    $("#blurfastbutton").click(function() {
        Pixastic.process(img, "blurfast", {amount:0.2});
    });
    $("#blurbutton").click(function() {
        Pixastic.process(img, "blur");
    });
});