我有以下代码,当点击图像时YourArrayModel
应该清除绘制的元素,但它不会改变任何东西。我已经尝试使用clearRect()
作为解决方案,但这不适用于我的情况。
Plunker:Testing the Code below
context.beginPath()
答案 0 :(得分:1)
您只落后一步 - 实际上,您的clearRect
有效,但您仍然需要将this.image
更新为新的数据网址:
clearImage()
{
this.context.clearRect(0, 0, this.canvas.width, this.canvas.height);
this.image = this.canvas.toDataURL();
}