CamanJS
CamanJS copied to clipboard
Using crop() with preset filters that use copyParent produces artifacts in the image
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());
});
});
});
Have a look at my PR, it should solve this issue https://github.com/meltingice/CamanJS/pull/163