C# Aspose.Words转换为PDF的时候字体丢失的问题解决

主要是IDAutomationHC39M字体不显示的问题,字体都有安装,查找了很久终于解决。

1.原因是Windows\Fonts下的文件,有些只是虚拟的路径,真正的字体文件是在C:\Users\用户名AppData\Local\Microsoft\Windows\Fonts\ 这个目录下,从而导致出现这个问题。

需要将用户的字体目录添加进去,代码如下:

             string userfontsfoloder = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData) + "\\Microsoft\\Windows\\Fonts\\";

            ArrayList fontSources = new ArrayList(FontSettings.DefaultInstance.GetFontsSources());
            //将用户目录字体添加到字体源中
            Aspose.Words.Fonts.FolderFontSource folderFontSource = new Aspose.Words.Fonts.FolderFontSource(userfontsfoloder, true);
            fontSources.Add(folderFontSource);
            Aspose.Words.Fonts.FontSourceBase[] updatedFontSources = (Aspose.Words.Fonts.FontSourceBase[])fontSources.ToArray(typeof(Aspose.Words.Fonts.FontSourceBase));
            FontSettings.DefaultInstance.SetFontsSources(updatedFontSources);

2.做了第一步之后本地运行是没有问题了,在服务器上运行还是有问题。最后发现是服务器上有多个用户名,没有定位到是哪个用户名下,所有最终解决是:安装字体的时候点:为所有用户安装。

你可能感兴趣的:(C#)