I am using CamanJS plugin to apply effects to images, I want to know how do I apply preset effects like lomo, sin city, cross process, etc found here. The documentation of CamanJS does not elaborate on this properly.
I tried the below code to apply vignette effect , but was not successful.
Caman("#effects", function () {
this.resize({width: 650,height: 400
});
this.vignette();
this.render();
});