I have a Sketching app done in all HTML5 and Javascript, and I was wondering how I would create an Undo Button, so you could undo the last thing you drew. Any idea?

link|improve this question

1  
Checkout the command pattern – Anurag Jun 23 '10 at 6:23
1  
why do you have java and objective-c in tags? – Denis Tulskiy Jun 23 '10 at 6:46
feedback

4 Answers

up vote 7 down vote accepted

You have to store all modifications in a datastructure. Then you can delete the latest modification if the user want to undo it. Then you repaint all drawing operations from your datastructure again.

link|improve this answer
Please see whiffdoc.appspot.com/tests/schema/diagram for an example of how to do this -- in this case by storing a JSON data structure representing the canvas information in an invisible DIV element. (follow link on page to source) – Aaron Watters Jun 23 '10 at 13:46
feedback

On http://visiblearea.com/blog/Javascript_Undo_Manager I have a working example of undo with a canvas element. When you make a modification, you feed the undo manager the undo and redo methods. Tracking of the position in the undo stack is done automatically. Source code is at Github.

link|improve this answer
your example looks good! Thanks for sharing – Ajax3.14 May 18 at 12:15
feedback

The other option, if you need to manipulate objects is to convert your canvas to SVG using a library that preserves the Canvas API preventing a rewrite.

At least one such library exists at this time (November 2011): SVGKit

Once you have SVG, it is much easier to remove objects and much more without the need to redraw the entire canvas.

link|improve this answer
1  
Or he can just use canvas abstraction library, like fabric.js to be able to work with objects on canvas programmatically. – kangax Nov 22 '11 at 20:52
Excellent @kangax. I'm curious, how do you think fabric.js would compare to SVGKit in terms of performance when it comes to editing objects in canvas with hundreds of nodes? – Jean Vincent Feb 14 at 17:36
I'm not sure how it compares to SVGKit, but when it comes to large number of objects canvas tends to be more performant than SVG. Take a look at some benchmarks comparing Raphael (SVG-based) and fabric (canvas-based) — fabricjs.com/benchmarks – kangax Feb 15 at 4:59
Thanks for the benchmarks but these compare to Raphaël only for static images which is obviously going to favor Canvas. Do you have any comparison benchmark with animations? – Jean Vincent Feb 21 at 19:29
Nothing at the moment. I'll see if I can cook something up. Or maybe someone else will. – kangax Feb 23 at 0:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.