我想存储由不同按钮应用的所有过滤器,然后按顺序应用于图像。例如,如果用户点击Brigthness,Noise,Contrast。我想存储这些过滤器,一旦用户点击“应用过滤器”。我想全部应用它们。我尝试了以下方法:
Caman('#canvas', img, function () {
//this.brightness(10).render();
var filters = ["brightness(10)", "noise(20)"];
filters.forEach(function (item, index) {
this.filters(item);
});
this.render();
});
但这给了我错误this.filters is not a function
。我可以使用注释掉的行,但这只会应用预定的过滤器。我想根据用户选择应用过滤器,我想在用户点击应用过滤器时立即应用它们。
以下是图书馆的链接:http://camanjs.com/examples/
任何人都可以指导我如何实现我的目标?如果我没有在低估之前明确解释这个问题,请告诉我。
答案 0 :(得分:0)
该错误正在显示,因为当您在this
内使用foreach
时,this
的值指向过滤器数组而不是caman对象请尝试此
Caman('#canvas', img, function () {
//this.brightness(10).render();
var that = this;
var filters = ["brightness(10)", "noise(20)"];
filters.forEach(function (item, index) {
eval('that.'+item);
});
this.render();
});
在上面的代码中,制作了this
的副本,然后将其传递到名为that
的循环内部
答案 1 :(得分:0)
this.filters
无效,因为“this”指的是function(item, index) {...}
我会做这样的事情:
Caman('#canvas', img, function () {
// make 'this' available in the scope through 'self' variable
var self = this;
// Filters must hold the function and not a string of the function.
// so something like:
var filters = [
function() { self.brightness(10); },
function() { self.noise(20); }
];
filters.forEach(function (fn) {
fn(); // this will execute the anonymous functions in the filters array
});
this.render();
});
答案 2 :(得分:0)
您可以使用forEach()
定义数组中的对象并循环使用效果:
Caman('#canvas', img, function () {
var filters = [
{ name: "brightness", val:10 },
{ name: "noise", val:20 }
];
var that = this;
filters.forEach(function(effect) {
that[effect.name](effect.val);
});
this.render();
});