XAML to SVG? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-08T20:37:21Z http://stackoverflow.com/feeds/question/52764 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/52764/xaml-to-svg 4 XAML to SVG? Oded 2008-09-09T19:59:10Z 2009-11-05T16:42:09Z <p>How would you go about converting XAML to SVG and vice versa?</p> <p>My initial approach it to use xslt to map the different elements and attributes, but I don't know enough about both syntaxes to even guess about the plausibility of such an approach.</p> http://stackoverflow.com/questions/52764/xaml-to-svg/52774#52774 -4 Answer by GateKiller for XAML to SVG? GateKiller 2008-09-09T20:03:22Z 2008-09-09T20:03:22Z <p>I'm not sure if you quite understand the differences between XAML and SVG.</p> <p>XAML is a language used to describe how a GUI will look under WinFX. SVG is a language used to describe how a vector image will look.</p> <p>Neither of these are interchangeable.</p> http://stackoverflow.com/questions/52764/xaml-to-svg/52789#52789 0 Answer by Vaibhav for XAML to SVG? Vaibhav 2008-09-09T20:09:11Z 2008-09-09T20:09:11Z <p>Here'a a link to XSL's which help you do this: <a href="http://members.chello.nl/~a.degreef/XAML.html" rel="nofollow">http://members.chello.nl/~a.degreef/XAML.html</a></p> <p>There are tools out there as well which do this.</p> http://stackoverflow.com/questions/52764/xaml-to-svg/52790#52790 2 Answer by Will for XAML to SVG? Will 2008-09-09T20:09:40Z 2008-09-09T20:09:40Z <p>You can convert SVG to XAML, as WPF has plenty of vector graphics goodness. There are plenty of tools and plugins you can use to convert one to another. </p> <p>While I think any SVG graphics can be converted to XAML, not all XAML can be converted to SVG. </p> <p>Really, any object graph can (with some small limitations) be serialized to XAML, so it only makes sense that that "all" XAML can't be converted back.</p> <p>Check out <a href="http://www.wpf-graphics.com/Home.aspx" rel="nofollow">www.wpf-graphics.com</a> as a starting point for converters, and don't forget google.</p> http://stackoverflow.com/questions/52764/xaml-to-svg/52796#52796 6 Answer by Jon Galloway for XAML to SVG? Jon Galloway 2008-09-09T20:12:17Z 2008-09-09T20:12:17Z <p>XAML is a superset of SVG, since it's an entire application description language. While SVG has some basic programmability functions (enough to build a Tetris game, for example), it's really a vector graphic format.</p> <p>Some options:</p> <ul> <li><a href="http://www.codeplex.com/XamlTune" rel="nofollow">XamlTune</a> is (open source, codeplex)</li> <li><a href="http://www.wpf-graphics.com/ViewerSvg.aspx" rel="nofollow">WPF Graphics</a> has an SVG viewer</li> <li><a href="http://intertwingly.net/blog/2007/09/11/SVG-on-IE-via-Silverlight-Revisited" rel="nofollow">Sam Ruby has worked with displaying SVG via Silverlight</a>, using Javascript</li> </ul> http://stackoverflow.com/questions/52764/xaml-to-svg/1681893#1681893 0 Answer by Ciper for XAML to SVG? Ciper 2009-11-05T16:42:09Z 2009-11-05T16:42:09Z <p>As none of the above could fulfill my needs, I developed a set of conversion tools on <a href="http://www.sixpairs.com" rel="nofollow">my site</a></p> <p>I have put some info about them on my site in the form of a library, <strong>online tool</strong>, usercontrol and batch app; an svgviewer for wpf will follow shortly.</p> <p>Some of the points I tried to address (that I found <em>more</em> or <em>less</em> lacking in <em>some</em> of the existing tools):</p> <ul> <li><strong>Text</strong> as <strong>TextBlocks</strong> instead of Paths</li> <li><em>Callability</em> from <strong>free-threaded</strong> (or non-STA) code (web apps, web services, parallel batch conversions, etc...) (cf. w3c's basic tutorials/examples)</li> <li>Correct measurement for stuff like width="100%" (for the top-level canvas, for instance)</li> <li><em>Consideration</em> for <strong>GraphViz</strong> generated svg files</li> </ul> <p>You can try this version online; I am happy to implement any feature requests as long as they fit my priorities and schedule.</p> <p>ps: Working on the Silverlight versions</p>