Зачем конвертировать WMF в SVG?
WMF is a 16-bit Windows format from 1990 with no browser support and limited cross-platform reach. .SVG is the modern web vector standard - every browser, design tool, and CMS supports it natively. Converting WMF to SVG makes legacy clipart and diagrams usable in Figma, Illustrator, and web pages without quality loss.
Способы конвертации WMF в SVG
Inkscape OPEN-SOURCE
Open the .wmf with File > Open, then save as SVG via File > Save As - choose Plain SVG for best compatibility outside Inkscape.
LibreOffice Draw FREE
Open the .wmf in LibreOffice Draw, go to File > Export, and choose SVG as the output format.
Microsoft Word / PowerPoint BUILT-IN
Select the embedded WMF image, right-click > Save as Picture, and choose SVG - requires Microsoft 365 or Office 2016 or newer.
Command line - ImageMagick CLI
Run magick input.wmf output.svg to convert or batch-process files from the terminal.
Программы, которые конвертируют WMF
Об этих форматах
Файл WMF - это Windows Metafile, устаревший формат векторной графики Microsoft, который хранит команды рисования, а не пиксели. В Windows быстрее всего его можно открыть через IrfanView,…
Открыть детали .WMF →Файл SVG - это масштабируемая векторная графика (Scalable Vector Graphics), открытый стандарт W3C, который хранит 2D-графику в виде текста XML, поэтому она масштабируется до любого размера…
Открыть детали .SVG →Качество и на что обратить внимание
- WMF files can embed raster bitmaps alongside vector commands; those sections appear as embedded images in the SVG, not as editable paths.
- WMF uses 16-bit signed integer coordinates, so very intricate drawings may show minor precision differences after conversion compared to EMF or native SVG originals.
- GDI text in WMF may shift slightly after conversion; in Inkscape, apply Path > Object to Path to lock text as outlines before exporting.
Часто задаваемые вопросы
Is the SVG output lossless?
Will the converted SVG be editable in Figma or Illustrator?
What is the difference between WMF and EMF?
Can I convert a `.wmz` file?
.wmz is a GZIP-compressed WMF. Rename it to .wmf.gz, decompress with 7-Zip or gunzip, then convert the resulting .wmf normally.