I'm doing some research for a JavaScript project where the performance of drawing simple primitives (i.e. lines) is by far the top priority.

The answers to this question provide a great list of JS graphics libraries. While I realize that the choice of browser has a greater impact than the library, I'd like to know whether there are any differences between them, before choosing one.

Has anyone done a performance comparison between any of these?

link|improve this question

feedback

8 Answers

up vote 3 down vote accepted

If you're not doing 3d, just use raw canvas with excanvas as an explorer fall-back. Your bottleneck will be javascript execution speed, not line rendering speed. Except for IE, which will bog down when the scene gets too complex because VML actually builds a dom.

If you're really worried about performance though, definitely go with flash and write the whole thing in actionscript. You'll get an order of magnitude better performance, and with the flex sdk you don't even need to buy anything. There are several decent libraries for 3d in flash/flex available.

link|improve this answer
Yeah, this seems to be the consensus. Regarding Flash; that's what I usually use, but in this case I specifically want to do this in JS, for the sake of doing it in JS (inspired by Chrome Experiments). – DNS Mar 25 '09 at 21:33
feedback

Raphael JavaScript Library

http://raphaeljs.com

link|improve this answer
feedback

None of them have good performance. It is 2009 and the state of programmable graphics rendering in web browsers is truly depressing. I could do faster interactivity on a vt125 terminal 25 years ago. If you are doing anything interactive, think about using Flash... Else I'd go for some server-side heavy solution depending on your needs

link|improve this answer
I know that none of them have good performance; I'm looking for which has the least terrible performance. And, although I've used Flash for a ton of other projects, I specifically want to do this in JS. – DNS Mar 23 '09 at 23:29
yeah i understand. i do. I've spent loads of years doing graphics and I really couldn't imagine doing anything interesting graphics-wise using pure JS. Maybe you are just doing flow-diagrams and it won't be so bad :/ – Scott Evernden Mar 23 '09 at 23:33
+1 for humour and honesty – Jarret Hardie Mar 23 '09 at 23:51
1  
-1: He didn't ask if they had good performance overall. – Josh Stodola Mar 24 '09 at 0:44
1  
c'mon -- "javascript graphics" and "performance" really don't belong in the same sentence – Scott Evernden Mar 24 '09 at 1:19
show 1 more comment
feedback

Up to now - is used processing.js (javascript canvas implementation of "Processing" language) and/or raphael.js (tiny and handy VML/SVG javascript library).

The performance recomendations depends on task:

  • highly dynamic, complex primitives (or huge amount of it) - canvas (pixels, low-level API)

  • lower amount of primitives, highly scalable, integrated in DOM - SVG/VML (vector, high-level API)

link|improve this answer
feedback

I know you said browser had more influence, so why not stick with using optimized SVG calls? Then, it "could" work in all browsers but...

Chrome is robust enough to do render 3D modeling efficiently:

http://www.chromeexperiments.com/detail/monster/

link|improve this answer
1  
I was looking to trial WebGL on both Chrome and Firefox 5 today. It appears that because my PC is still "XP" ... the hardware driver isn't suitable. – will Aug 3 '11 at 13:26
feedback

How about http://www.jsgl.org? It uses SVG/VML.

link|improve this answer
feedback

I'm going to give this one a try: http://jsdraw2d.jsfiction.com/
I'll try to make a simple tic-tac-toe with this lib and see if it can hanlde that,
hope it can handle that without any delay.

The reason for not going for the html5 canvas is that I want it to be compatible with the current IE as well. Since MS still havn't added canvas support in IE8

link|improve this answer
feedback

For basic drawing (such as lines, circles, and polygons), I would recommend Walter Zorn's Graphics Library. It was built with performance in mind and works in a ton of browsers.

link|improve this answer
1  
it draws pixels using .... divs . oye – Scott Evernden Mar 24 '09 at 1:19
Check the performance benchmarks of this library and compare them with other popular ones. Then re-focus on the question, Captain ignorance. – Josh Stodola Mar 24 '09 at 1:54
1  
one more time cause you are kinda dense .. it draws pixels using .... divs – Scott Evernden Mar 24 '09 at 2:03
The url for this library doesn't seem to work any more. – Alex Black Nov 23 '10 at 21:08
feedback

Your Answer

 
or
required, but never shown

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