Windows 10 home 64bit.
我在 c# 中有一个非常小的应用程序,应该转换.eps
为.svg
.
Using Magic.Net-Q16-AnyCPU
作为一个nuget
也安装在 windows GhostScript 上gs952w32.exe
。
转换功能:
using (MagickImage image = new MagickImage(@"C:\folder1\1.eps"))
{
image.Format = MagickFormat.Svg;
image.Write(@"C:\folder2\1.svg");
}
图像被转换,我也可以通过一些可以读取 svg 的浏览器网站打开它。但是当我尝试用 illustrator 打开它时,它会显示一个错误
"Could not find the linked file ''. Choose replace to select another file or Ignore to leave the link unchanged."
并且打开后图像是空的。