vote up 3 vote down star

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?

flag

5 Answers

vote up 1 vote down check

No, not at this time.

See: http://help.adobe.com/en_US/AIR/1.1/devappshtml/WS5b3ccc516d4fbf351e63e3d118666ade46-7ec1.html

link|flag
vote up 0 vote down

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).

link|flag
vote up 3 vote down

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.

[Embed(source="assets/frog.svg")]
[Bindable]
public var SvgAsset:Class;

More info at Adobe's embedding assets article.

link|flag
vote up 2 vote down

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.

link|flag
vote up 0 vote down

read that HTML page, parse SVG element, render it with Degrapha (a declarative graphics framework (open source)) that supports SVG (example vith source)

link|flag

Your Answer

Get an OpenID
or

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