Is there a SVG to MXML Converter? - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T03:48:29Zhttp://stackoverflow.com/feeds/question/702557http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/702557/is-there-a-svg-to-mxml-converter1Is there a SVG to MXML Converter?Karthik2009-03-31T18:58:54Z2009-04-06T13:29:49Z
<p>Hi,</p>
<p>I'm trying to use an SVG file in my Flex app - but it seems the best way to do that is to convert it to MXML. However, I cannot find an SVG to MXML converter. There seem to be a number of SVG to XAML converters (for Silverlight/C#), but I can't find anything analogous for Flash/Flex.</p>
<p>Any help would be appreciated.</p>
<p>Thanks,
Karthik</p>
http://stackoverflow.com/questions/702557/is-there-a-svg-to-mxml-converter/702589#7025892Answer by Osman for Is there a SVG to MXML Converter?Osman2009-03-31T19:08:59Z2009-03-31T19:08:59Z<p>You should be able to <a href="http://www.adobe.com/devnet/flex/quickstart/embedding%5Fassets/#EmbeddingSvgFiles" rel="nofollow">Embed the SVG directly</a>, without a converter.</p>
http://stackoverflow.com/questions/702557/is-there-a-svg-to-mxml-converter/703295#7032951Answer by evilpenguin for Is there a SVG to MXML Converter?evilpenguin2009-03-31T22:15:35Z2009-03-31T22:15:35Z<p>Well, the SVG is an XML file, basically. So if you want to import it at runtime, you could read it as an XML file and then use the AS3 drawing API to render it. Check out <a href="http://code.google.com/p/as3svgrendererlib/" rel="nofollow">this ActionScript 3 SVG renderer on Google Code</a>!</p>
http://stackoverflow.com/questions/702557/is-there-a-svg-to-mxml-converter/721442#7214421Answer by Harit K for Is there a SVG to MXML Converter?Harit K2009-04-06T13:29:49Z2009-04-06T13:29:49Z<p>yes, there are few libraries but i haven't come across any mature one-
- <a href="http://code.google.com/p/as3svgrendererlib/" rel="nofollow">http://code.google.com/p/as3svgrendererlib/</a>
- <a href="http://www.degrafa.org/" rel="nofollow">http://www.degrafa.org/</a>
- <a href="http://code.google.com/p/svg-viewer/" rel="nofollow">http://code.google.com/p/svg-viewer/</a>
- <a href="http://labs.zavoo.com/?p=65" rel="nofollow">http://labs.zavoo.com/?p=65</a></p>