This for example seems to have weird results for any effect that uses copyParent internally, until I comment the crop().
By the way, this is in node.
Caman(buf, function() {
this.crop(290, 290, 25, 25);
this[filter]();
this.render(function() {
resolve(this.canvas.toBuffer());
});
});
update:
Here's a workaround:
Caman(buf, function() {
this.crop(290, 290, 25, 25);
this.render(function() {
this[filter]();
this.render(function() {
resolve(this.canvas.toBuffer());
});
});
});