Why convert EMF to EMZ?
Microsoft introduced .emz to reduce the size of embedded metafile graphics in Office documents and web pages. Some applications that insert Windows metafiles into .docx or .pptx files prefer or require the compressed .emz form over a plain .emf.
How to convert EMF to EMZ
7-Zip FREE
Right-click the .emf file, choose 7-Zip > Add to archive, set format to gzip, and click OK; rename the resulting .emf.gz to .emz. Or run 7z a -tgzip image.emz image.emf from the command line.
gzip FREE
Run gzip -c image.emf > image.emz in a terminal to compress the file and write it with the .emz extension in a single step; works on macOS and Linux.
Programs that convert EMF
About these formats
An EMF file is a Windows vector graphic made by Microsoft's Enhanced Metafile format, storing drawing commands rather than pixels. On Windows, open it in IrfanView (free) or insert it into…
Open .EMF details →An EMZ file is a Windows vector image, an Enhanced Metafile (EMF) compressed with GZIP, used mainly by Microsoft Office and Visio. The easiest way to open it on Windows is to insert it into…
Open .EMZ details →Quality & what to watch
- The conversion is completely lossless - decompressing an
.emzgives back the exact original.emfwith no data loss or quality change. - EMZ is structurally standard GZIP; the first two bytes of every valid
.emzfile are1F 8B. Any GZIP-capable tool works regardless of the.emzextension. - Not all software decompresses
.emzautomatically - older Office builds and some third-party tools handle plain.emfbut not.emz, so keep the original.emfif compatibility is uncertain.
Frequently asked questions
Is EMZ a different format from EMF?
.emz file is a GZIP-compressed .emf. The EMF drawing data inside is completely unchanged; only the file size is smaller.How much smaller will the EMZ be?
Can I open an EMZ directly in Office applications?
.emz automatically when inserting or rendering the file. Older builds may require a plain .emf instead.