How to convert wmf files to svg files

How to convert WMF file to svg file? I have around 550 WMF files to be converted to SVG format.

For one file, I opened the WMF file in VISIO and saved it as SVG format, but to convert around 550 files is a tedious process.

Please help me Actually, these WMF files are the converted files from the PDF document. So, any better way to convert the PDF image to an svg image ? Currently I converted the PDF schematic diagram into wmf and opened it with visio, so that I can select each circuit or connector by ungrouping and later saved it to SVG format. This svg format, I will import into another tool, where i can select each circuit and connector for further work.

Thanks Ramm


I'll just add a link to the Free EMF/WMF to SVG File Convert Tool 2.0 for future reference.

http://visualstudiogallery.msdn.microsoft.com/dc4e0116-a730-45d2-ae9f-03be676817ea

and the WMF2SVG project over at Github:

https://github.com/hidekatsu-izuno/wmf2svg


If you are familiar with C#/.NET you can use WMF library from CodePlex to create a converter to SVG. Since WMF supports only basic shapes (line, rectangle, polygon, arc) and no layers nor element nesting it should be quite easy to convert as SVG supports all those features and more.

Also check out this question: WMF / EMF File Format conversion C#


The WMF2SVG project was moved over to SourceForge http://wmf2svg.sourceforge.jp

It works fabulously on my MacBook OS X 10.10.2

链接地址: http://www.djcxy.com/p/54198.html

上一篇: JUnit将额外的测试添加到测试用例

下一篇: 如何将wmf文件转换为svg文件