我正在剪切画布区域,最后我想将剪辑设置为null,然后将背景设置为图像,但它不起作用,
canvas.clipTo = null;
var backgrounimage="images/tee.png";
canvas.setBackgroundImage(backgrounimage, function() {
canvas.renderAll();
});
设置背景图片后,有没有办法限制用户在特定区域绘图?
答案 0 :(得分:1)
这种方式有效 - 第一个剪辑设置为null,然后设置背景:
var backgrounimage = "images/tee.png";
canvas.setBackgroundImage(backgrounimage, function() {
canvas.clipTo = null;
canvas.renderAll();
});