I would like to convert .svg vector graphic to .wmf. I looked into this library http://wmf.codeplex.com/, but with no success.
I have found this library http://svg2swf.sourceforge.net/, but I do not know how to use it in c# project.
Edit: Also this usage of inkscape not works for me (wmf file could not be opened).
public static string Result = @"Polygon-6666.wmf";
public static string Source = @"Polygon-6.svg";
public void CreatePng(string filename)
{
var inkscapeArgs = string.Format(@"-f ""{0}"" -e ""{1}""", Source, Result);
var inkscape = Process.Start(new ProcessStartInfo("inkscape.exe", inkscapeArgs));
}