SVG in Android browser

I know this is not supported initially, but are there any JS Shims that render into a canvas object or something that will allow me to display SVG in my own Android browser? (Not Opera, etc., since I would like the user to not install another browser)

+7
source share
1 answer

I think you need this library:

http://code.google.com/p/canvg/

Basically, you will find that the browser is capable of displaying svgs, and if it cannot, you must render the SVG on the canvas.

+6
source

All Articles