如何将SVG文件转换为WMF格式?

时间:2015-07-31 14:32:18

标签: c# svg file-conversion wmf

我想将.svg矢量图转换为.wmf。我查看了这个库http://wmf.codeplex.com/,但没有成功。

我找到了这个库http://svg2swf.sourceforge.net/,但我不知道如何在c#项目中使用它。

编辑:此inkscape的使用对我不起作用(无法打开wmf文件)。

operation_dispatcher[operation]

1 个答案:

答案 0 :(得分:3)

使用Inkscape的0.91版本,您可以在命令行中使用特定选项来执行此操作:

private void Demo()
{
    var inkscapePath = @"C:\Program Files\Inkscape\inkscape.exe";
    var inputPath = @"D:\Downloads\Ghostscript_Tiger.svg";
    var outputPath = @"D:\Downloads\Ghostscript_Tiger.wmf";
    Svg2Wmf(inkscapePath, inputPath, outputPath);
}

private void Svg2Wmf(string inkscapePath, string inputPath, string outputPath)
{
    if (inkscapePath == null) throw new ArgumentNullException("inkscapePath");
    if (inputPath == null) throw new ArgumentNullException("inputPath");
    if (outputPath == null) throw new ArgumentNullException("outputPath");
    var arguments = string.Format("--export-wmf=\"{0}\" \"{1}\"", outputPath.Trim('"'), inputPath.Trim('"'));
    Process.Start(inkscapePath, arguments);
}

输入文件:https://upload.wikimedia.org/wikipedia/commons/f/fd/Ghostscript_Tiger.svg

文档:inkscape --help