vote up 3 vote down
star
1

How would you go about converting XAML to SVG and vice versa?

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.

flag
add comment

4 Answers

vote up 6 vote down
check

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.

Some options:

link|flag
XAML's features may be a superset of SVG's, but the XAML isn't itself a superset of SVG the way C++ or Objective-C is a superset of C or HTML-Framset is a superset of HTML-Strict. – David Leppik Sep 29 at 20:53
add comment
vote up 2 vote down

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.

While I think any SVG graphics can be converted to XAML, not all XAML can be converted to SVG.

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.

Check out www.wpf-graphics.com as a starting point for converters, and don't forget google.

link|flag
add comment
vote up 0 vote down

Here'a a link to XSL's which help you do this: http://members.chello.nl/~a.degreef/XAML.html

There are tools out there as well which do this.

link|flag
add comment
vote up -4 vote down

I'm not sure if you quite understand the differences between XAML and SVG.

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.

Neither of these are interchangeable.

link|flag
XAML is serialized object graphs. You can serialize any .NET object to XAML. Don't forget, WF workflows are serialized to XAML. I find it a whole lot better than using XML to serialize objects. – Will Sep 9 at 20:11
add comment

Your Answer

Get an OpenID
or

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