I see that Adobe AIR uses WebKit as its render and I see that WebKit (at least the most current build) has some SVG support. Does this mean (and has anyone specifically tried) that an Adobe AIR application could render SVG on an HTML page?
|
|
No, not at this time. See: http://help.adobe.com/en_US/AIR/1.1/devappshtml/WS5b3ccc516d4fbf351e63e3d118666ade46-7ec1.html |
||
|
|
|
|
Adobe AIR can only support SVG once Adobe updates their version of WebKit (AIR's HTML rendering engine) and enables the SVG support within their version of WebKit. Might be a business decision not to (ie Flash). |
||
|
|
|
|
On the offchance that it's helpful (and that you don't already know), Flex can embed SVG at runtime, which effectively converts it to SWF format and embeds it as a resource.
More info at Adobe's embedding assets article. |
||
|
|
|
|
If ActionScript 2: use the com.itechnica.svg (PathToArray) library to load SVGs at SWF runtime and display them (uses XML for SVG parsing): Using SVG Path Data in Flash, Download button on the right pane. If ActionScript 3: use the com.zavoo.svg (SvgPath) library to load SVGs at SWF runtime and display them (uses RegExp for SVG parsing): Source code for SvgLoad and SvgDraw, Download button on the bottom-left. |
||
|
|
|
|
read that HTML page, parse SVG element, render it with Degrapha (a declarative graphics framework (open source)) that supports SVG (example vith source) |
||
|
|
