如何更改fabric.js中的填充色角,但我希望在边角处有不同的颜色。我希望得到这样的东西:
答案 0 :(得分:1)
基本上,你需要做的是......
// create a rectangle with a fill and a different color stroke
var rect = new fabric.Rect({
left: 50,
top: 50,
width: 50,
height: 50,
fill: 'rgba(255,127,39,1)',
stroke: 'rgba(34,177,76,1)',
strokeWidth: 5
});
canvas.add(rect);
canvas.renderAll();