html5 canvas how to get The canvas stack of drawing states? Each context maintains a stack of drawing states.And the drawing states consist of the current clipping region(which i need) and others. The API only offer save() and restore() method to get current drawing states and maintain the stack. But if I got many drawing state saving in the stack and want change one to another which is not pervious one. What can i do ? how to treat the stack as an array?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
What you need is different arrays to store x and y positions when mouse is down on canvas. Then you can differentiate different drawings by recording the indexes of these arrays at the time of mousedown event. Here is a tutorial for such requirement. This series of mousedown indexes can also be used to undo drawings |
|||
|