As per requirement implemented canvas in HTML5 and its work , but its not working in IE8 and lower version .
Any solution for that .
As per requirement implemented canvas in HTML5 and its work , but its not working in IE8 and lower version .
Any solution for that .
I am not an expert of this field but you can start searching a solution with HTML5 canvas polyfill. I found this polyfill for HTML5 after a few searching: https://github.com/eligrey/canvas-toBlob.js
First you will need HTML 5 polyfill for those browsers.
(They dont support HTML5 itself - forget canvas)
https://code.google.com/p/html5shim/
If you have done that...
There are a couple of libraries that get the canvas running on IE
using flash and java fallback.
Some good ones are ...
http://flashcanvas.net/ (proprietary - paid if commercial)
https://code.google.com/p/explorercanvas/ (free)
I don't know how well they support all commands.
There might be bugs (known / unknown)...
I'd recommend you to use Raphael instead of Canvas if you are aiming for cross - browser implementations.
Raphael uses SVG on modern browsers and VML on IE.
I hope you find your solution through this.