使用来自CamanJS API的预设过滤器

时间:2013-04-04 18:16:02

标签: javascript html api web camanjs

我正在使用CamanJS插件将效果应用于图像,我想知道如何应用预设效果,如lomo,sin city,cross process等here。 CamanJS的文档没有详细说明。

我尝试使用下面的代码来应用晕影效果,但没有成功。

Caman("#effects", function () {

        this.resize({width: 650,height: 400
         });
         this.vignette();
        this.render();

            });

1 个答案:

答案 0 :(得分:8)

晕影过滤器需要大小才能工作。它可以是绝对数字或百分比。

this.vignette(400);
this.vignette("10%");

它还需要一个可选的强度参数,其范围为0-100。

this.vignette("10%", 40);

你是对的,所有的过滤器应该更好地记录下来。