在fabric.js中,我们可以绘制自由手路径(例如http://fabricjs.com/freedrawing)。
但是,在HTML canvas 2d-context ctx中,我还可以绘制路径然后调用
ctx.fill()
填充路径并从路径中填充填充的形状。
示例代码:当鼠标上升时,路径就会被填满。
function draw() {
ctx.lineCap = "round";
ctx.globalAlpha = 1;
var x = null;
var y = null;
canvas.onmousedown = function (e) {
// begin a new path
ctx.beginPath();
// move to mouse cursor coordinates
var rect = canvas.getBoundingClientRect();
x = e.clientX - rect.left;
y = e.clientY - rect.top;
ctx.moveTo(x, y);
// draw a dot
ctx.lineTo(x+0.4, y+0.4);
ctx.stroke();
};
canvas.onmouseup = function (e) {
x = null;
y = null;
ctx.fill();
};
canvas.onmousemove = function (e) {
if (x === null || y === null) {
return;
}
var rect = canvas.getBoundingClientRect();
x = e.clientX - rect.left;
y = e.clientY - rect.top;
ctx.lineTo(x, y);
ctx.stroke();
ctx.moveTo(x, y);
}
}
fabricjs也有类似的行为吗?
fabricjs似乎只保存路径,但不保存填充区域。
谢谢, 彼得
答案 0 :(得分:2)
在布料中绘图会生成一堆路径对象,您可以像大多数其他布料对象一样为它们添加填充。下面是一个示例脚本,它将在鼠标向上自动将每个创建的对象设置为蓝色背景:
var canvas = new fabric.Canvas('c', {
isDrawingMode: true
});
canvas.on('mouse:up', function() {
canvas.getObjects().forEach(o => {
o.fill = 'blue'
});
canvas.renderAll();
})
canvas {
border: 1px solid #ccc;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/fabric.js/1.6.3/fabric.js"></script>
<canvas id="c" width="600" height="600"></canvas>