Can the HTML 5 Canvas element be implemented in Flash to provide support for that element in older browsers?

ExplorerCanvas can be included on a web page to allow emulation of Canvas in IE using VML. Since this is an IE-only solution, I would like to know if a similar replacement could be done using Flash, giving support for Canvas to all browsers.

link|improve this question

80% accept rate
What browser? If you're talking Internet Explorer then use excanvas.sourceforge.net. – Caleb Nov 26 '09 at 5:44
Any older browser that didnt support canvas but does support flash, such as Firefox 2.0 or IE. – Liam Nov 26 '09 at 10:52
feedback

3 Answers

up vote 1 down vote accepted

http://www.azarask.in/blog/post/flash-canvas/

An implementation of the canvas tag using Flash.

link|improve this answer
feedback

For older browsers (namely IE), you can use ExplorerCanvas: http://code.google.com/p/explorercanvas/, which simulates canvas in IE using SVG I think.

link|improve this answer
ExplorerCanvas uses VML and so it only offers support for IE. Thus there is no support for non-IE browsers made before the canvas element was introduced. – Liam Dec 8 '09 at 10:14
feedback

There are 3 projects I know of that implemented canvas in flash, 2 are mentioned above.

  1. http://code.google.com/p/fxcanvas/ - implements some things via a special "invoke" method so your code will have to be adjusted slightly if you use things like getImageData, the implementation of the special methods is a bit odd, it runs in a separate thread seemingly, so some things i can do with a real canvas don't seem possible right now if you depend on it.

  2. flash-canvas - very basic, only a few simple operations supported

  3. explorer-canvas - i.e. only, does not support any of the ImageData methods, otherwise quite good.

Sadly there does not seem to be a perfect flash implementation out there.

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.