Jump to content

clearing canvas lines - beginPath


richengle

Recommended Posts

if you are trying to cleat your canvas, but you have lines, you need to begin path again.   So first try this

context.clearRect(0, 0, context.canvas.width, context.canvas.height);
context.beginPath();

== if that doesnt work, try

 

context.clearRect(0, 0, canvas.width, canvas.height);
context.beginPath();

==  and if you had ROTATED OR SCALED YOUR CANVAS, you need to 

ctx.save();
ctx.beginPath();
// Use the identity matrix while clearing the canvas
ctx.setTransform(1, 0, 0, 1, 0, 0);
ctx.clearRect(0, 0, myCanvas.width, myCanvas.height);

// Restore the transform
ctx.restore();//myCanvas.width=myCanvas.width

 

===  and lastly, if that doenst work, you can hack it by... 

context.width=context.width

 

 

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...