9

I am trying to convert an image in EMF format to PNG using Imagemagick on Red Hat Enterprise Linux Server release 5.5 (Tikanga), but I am running into the following error:

convert: no decode delegate for this image format `thumbnail.emf' @ error/constitute.c/ReadImage/550. convert: no images defined `1.png' @ error/convert.c/ConvertImageCommand/3068.

How might I fix this?

4

3 回答 3

15

安装 libreoffice 并在 emf 文件所在的文件夹上运行此命令:

libreoffice --headless --convert-to png *.emf
于 2015-02-26T18:10:21.950 回答
9

另一种方法是使用inkscape:

inkscape -o file.png source.emf

有关inkscape --help更多导出选项(要导出的区域、dpi、图像分辨率、背景颜色等),请参阅。

于 2016-07-26T12:10:02.683 回答
5

根据这个页面:http ://www.imagemagick.org/script/formats.php

EMF R Microsoft 增强型元文件(32 位) 仅在 Microsoft Windows 下可用。

于 2013-02-25T12:39:43.023 回答