Search code examples
linuxgraphic

I have a few EMF files. How I can convert them into ps/pdf/tiff on Linux?


I have few EMF (Enhanced Windows Metafile) files. How I can convert them into ps/pdf/tiff on Linux (CentOS 5.x)? Command line interface is preferred.


Solution

  • unoconv can convert emf to pdf and tiff via command-line:
    For pdf: unoconv filename.emf
    For tiff: unoconv -f tiff filename.emf
    It doesn't seem to support ps file export, though.
    You are still required to install OpenOffice.org/LibreOffice because this tool uses them as the backend.