我使用Fabcy产品设计师和fabric.js来定制T恤,我需要用图案填充png图像,但我没有找到这样做的例子。
我尝试了一些代码片段,但它没有效果:
fabric.util.loadImage(url, function(img) {
element.fill = new fabric.Pattern({
source: img,
repeat: 'repeat'
});
stage.renderAll.bind(stage);
});
你能帮帮我吗?
谢谢!