새소식

Front

canvas clearrect not working

  • -
728x90

Try this!

 

1
2
3
4
5
6
7
8
9
10
function canvasCleaner(){
    var canvas = document.getElementById('myCanvas');
    var ctx = canvas.getContext('2d', { alpha: false });
    var img = document.getElementById("img");
 
    //Canvas Clear
    //ctx.clearRect(0, 0, 3000, 3000); //not working :(
    ctx.canvas.width = ctx.canvas.width; //**canvas clear :)
    ctx.beginPath(); //canvas line clear
}
cs

 

 
반응형
Contents

포스팅 주소를 복사했습니다

이 글이 도움이 되었다면 공감 부탁드립니다.