I am trying to use the HTML5 canvas element to draw some arcs and circles - this works perfectly in FF but IE8 does not seem to support it.

Now, there exist Javascript libraries which seem to make IE8 work well with Canvas. An example can be found here:

I have read their entire source but I cannot understand how they are making Canvas work with IE8. Can somebody please throw some light on the method used?

link|improve this question

1  
Why would you expect Canvas to work with anything? HTML5 is not an approved standard of any type. Until such time as CSS3, HTML5, etc are final standards, brossers can implement anything or not and they're not violating any standards. – Mystere Man Aug 26 '09 at 5:30
6  
@Mystere Man: CSS2.1 was only finalized a couple years ago. Would you have avoided it until then? Standards are based on current implementations and not created by standards committees. Modern browsers have already implemented canvas. You should not let IE hold you back from using it like IE does with most everything. – Rob Oct 15 '09 at 12:59
1  
“no browser vendor is required to support a draft standard, so you can't really depend on it” — No browser vendor is required to support a finished standard either. I think the best you can do is rely on whatever support exists, and hope that support doesn’t go away. <blink> and <marquee> are still with us, so hopefully <canvas> will be for the foreseeable future, at least outside of IE. – Paul D. Waite Mar 4 '10 at 9:51
1  
“Isn't funny how Marquee or Blink are considered bad, but canvas good, considering all three started as non-standard extensions?” — Not really, unless we accept that “good” and “in a standard” are the same thing. XMLHttpRequest and innerHTML started as a non-standard extensions too. Features are judged on how useful they are, and how well they work in practice, and you can’t really figure that out until you’ve got an implementation to try. – Paul D. Waite Mar 4 '10 at 9:53
3  
its funny that third-parties try to implement canvas in IE , but the company that makes IE doesnt seems to have any interest . monoply arrogance whatever – Rohit Chauhan Sep 11 '10 at 2:22
show 4 more comments
feedback

6 Answers

up vote 31 down vote accepted

The page is using excanvas - a JS library that simulates the canvas element using IE's VML renderer.

Note that in Internet Explorer 9, the canvas tag is supported natively! See MSDN docs for details...

link|improve this answer
Ok got it, thanks :) – Crimson Aug 26 '09 at 5:31
9  
+1 for Google's implementation of canvas for IE. Sad to see 3rd parties fixing limitations in your browser :) – Anderson Imes Aug 26 '09 at 5:36
feedback

You can try fxCanvas: http://burzak.com/proj/fxcanvas/

It implements almost all Canvas API within flash shim.

link|improve this answer
This gets my vote due to the abominable performance of excanvas. The library does have a few issues, but in my real-world tests it came out ahead of flashcanvas in terms of both performance and stability. – Aaronaught Jan 16 at 18:11
feedback

You could use the newly released Chrome Frame plugin for IE, but it requires that the HTML 5 website includes the special meta tag that enables the plugin.

http://code.google.com/chrome/chromeframe/

link|improve this answer
feedback

Just for info.:

I've tried excanvas on IE8, but IE8's performance through excanvas is miserable. + lot's of anomalies with drawing.

My .js with canvas-drawing-routines works perfectly on every other browser (Opera, Safari, Firefox, Chrome).

link|improve this answer
I have also experienced slow render rates in IE8 with excanvas while attempting animations (redrawing the entire canvas - I know this was not supposed to be optimal in the first place) However, in FF this works very well. – Crimson Oct 20 '09 at 8:48
feedback

Currently, ExplorerCanvas is the only option to emulate HTML5 canvas for IE6, 7, and 8. You're also right about its performance, which is pretty poor.

I found a particle simulatior that benchmarks the difference between true HTML5 canvas handling in Google Chrome, Safari, and Firefox, vs ExplorerCanvas in IE. The results show that the major browsers that do support the canvas tag run about 20 to 30 times faster than the emulated HTML5 in IE with ExplorerCanvas.

I doubt that anyone will go through the effort of creating an alternative because 1) excanvas.js is about as cleanly coded as it gets and 2) when IE9 is released all of the major browsers will finally support the canvas object. Hopefully, We'll get IE9 within a year

Eric @ www.webkrunk.com

link|improve this answer
feedback

I do recommend programming to a higher level of abstraction than "whatever JS and DOM feature happens to be natively supported on this random browser"!-) My favorite framework for this "browser independence" task in general is dojo -- so, for graphics in particular, I'd recommend dojo.gfx -- if you're rather a fan of jQuery or whatever, I imagine those other frameworks offer similarly powerful and smooth facilities (or else, why hasn't everybody else switched to Dojo already?-).

link|improve this answer
1  
Good for you. What if the OP is trying to learn the lower levels of JS and DOM, or maybe implement framework functionality? I recommend programming at whatever level of abstraction is needed to meet your goals. – ecounysis Dec 24 '10 at 21:36
feedback

Your Answer

 
or
required, but never shown

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