Library for using SVG in Windows Forms / WPF? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T09:38:47Z http://stackoverflow.com/feeds/question/468259 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/468259/library-for-using-svg-in-windows-forms-wpf 3 Library for using SVG in Windows Forms / WPF? Peter 2009-01-22T06:58:43Z 2009-09-23T19:49:49Z <p>Are there any libraries which</p> <ol> <li>Allow to draw svg direct to a Windows Forms application</li> <li>to a WPF application</li> </ol> <p>I draw graphics and design everything with <a href="http://www.inkscape.org" rel="nofollow">Inkscape</a>, because I love that program. Then I have those stunning svgs and have to either export them to png (WinForm) to use them or convert them to xaml-code (WPF) (<a href="http://www.kaxaml.com/" rel="nofollow">Kaxaml</a> helps me).</p> <p>Is there a way to directly use my svgs?</p> http://stackoverflow.com/questions/468259/library-for-using-svg-in-windows-forms-wpf/468298#468298 0 Answer by Peter for Library for using SVG in Windows Forms / WPF? Peter 2009-01-22T07:16:46Z 2009-01-22T08:29:04Z <p><strong>Wow</strong>, I <a href="http://weblogs.asp.net/jgalloway/archive/2008/01/10/inkscape-to-support-xaml-export.aspx" rel="nofollow">just read</a> that Inkscape supports saving as XAML. I didn't realize that up to now <em>shame</em>. </p> <p>But that still doesn't solve my problems with WinForms...</p> http://stackoverflow.com/questions/468259/library-for-using-svg-in-windows-forms-wpf/585092#585092 1 Answer by Andy Dent for Library for using SVG in Windows Forms / WPF? Andy Dent 2009-02-25T07:58:16Z 2009-02-25T07:58:16Z <p>Yes, you can use <a href="http://www.wpf-graphics.com/ReaderSvg.aspx" rel="nofollow">ReaderSVG</a> to get WPF directly from XAML.</p> <p>Kent Boogaart has a <a href="http://kentb.blogspot.com/2008/01/xaml.html" rel="nofollow">nice example</a> of using a little WPF inside WinForms which would help you solve the WinForms aspect.</p> http://stackoverflow.com/questions/468259/library-for-using-svg-in-windows-forms-wpf/1468196#1468196 0 Answer by Hannson for Library for using SVG in Windows Forms / WPF? Hannson 2009-09-23T19:49:49Z 2009-09-23T19:49:49Z <p>I personally hate how there's no native support for SVG in Microsoft's products/development tools. I've found two fairly complete but still immature SVG libraries that seem to be active as of this writing, definitely in need of contributors though.</p> <ul> <li><strong>WPF</strong> : <a href="http://svg2xaml.codeplex.com/" rel="nofollow">Svg2Xaml (open source)</a></li> <li><strong>WinForms</strong> : <a href="http://svg.codeplex.com" rel="nofollow">SVG rendering engine (open source)</a></li> </ul> <p>IIRC both libraries output a Drawing object which can be used directly through the Image class; You'll figure it out, they're both pretty straightforward to use.</p>