How to convert svg to eps using Imagemagick?

倖福魔咒の 提交于 2019-12-05 10:19:06

I was just wondering this too. However, it appears that Imagemagick might not be the best tool to do this.

Imagemagick is a "raster image processor," but SVG and EPS are vector formats. So using Imagemagick will cause those images to lose information as it has to convert from a vector format, to a raster format, and then back to vector. This probably explains why the contents of your image aren't correctly displayed.

Maybe consider using Inkscape to do this conversion using the following

inkscape ing.svg -E out.eps --export-ignore-filters --export-ps-level=3

Source:

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!