I've been tinkering with the html5 canvas element for a while now. It is very useful and all, but I feel very, very limited by the fact that I apparently cannot organize the canvas with objects (not natively).

For instance, if I draw a rectangle, or any other shape, I would really find it useful to be able to access its different properties somewhere else in the script. Instead of that, it seems they just remain, well, drawings, and you have to manually keep track of what is on the canvas, and clear it and rewrite it again when you want to change anything.

My question is: am I missing something ? Is JavaScript providing us with ways to handle objects inside the canvas? If not, are there libraries that do just that already? Which one would you say is the best?

link|improve this question

That's exactly why I built fabric.js library — to give canvas a convenient object model to work with. Take a look at it; I hope it helps. – kangax Oct 29 '11 at 17:28
I will, right away – Cystack Oct 30 '11 at 15:48
feedback

2 Answers

up vote 1 down vote accepted

Canvas aren't really any different from any other drawing-tools. You really do have to keep track of what you're drawing. The trick is how you do it. It's actually a pretty good idea to use objects for it and it's not really that hard. You just need to pass along the context of the canvas to any object, for it to interact with the canvas and draw on it. So if you have an object called Foo you can make the object decide how it wants to be drawn. For instance it could have a method like so:

function Foo() {
  this.draw = function(context) {
    context.restore();
    context.fillStyle = "rgb(200,0,0)";
    context.fillRect (10, 10, 55, 50);
    context.save();
    // And so on...
  }

In your main drawing loop you could have code similar to this:

// ... Various init - remember to set the context and store the Foo object somewhere
foo.draw(context);
// ...

This would allow you to create objects with their own methods of drawing. There are several ways to do it of course, but the advantage of this one is that it's pretty modular. If you want you can have several types of objects that inherit from the same generic type with some nifty tools and so on... Hope that helps!

P.S.: I just remembered a brilliant tutorial on the whole HTML 5/canvas stuff: It's on MDN here.

link|improve this answer
yup that helps a lot, basically you're advising to go from objects to the canvas, and not the other way around, which is sound, but not as powerful as, say, native functions to handle the shapes easily. Anyway, your solution is very modular and I'm giving it a try. PS : this is the tutorial I've been using, and reading this through made me realize the shortcoming that took me here :p – Cystack Oct 29 '11 at 11:11
Heh darn. I hoped the tutorial could help.. But yeah. I must admit I'm no JavaScript expert, but I've seen this method used in a lot of cool projects. The other way around - if I got it right - would require some deep tingling with the canvas object. I'm not really sure that would be beneficial, but then again I haven't looked into the exact implementation. – Jens Egholm Oct 29 '11 at 12:04
feedback

The only alternative you have to get some level of abstraction is to have multiple canvases on top each other and then, draw one object on each canvas. This approach allows you to have layers that are independent from each other that you can manipulate with JavaScript.

Take a look at this tool: http://www.redblizzard.com. After you do an HTML5 Canvas export using this tool, look at the generated code and that will give you a good idea of what I'm talking about.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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