本帖最后由 gaoqiangz 于 2022-9-16 19:50 编辑
这个文件是正常的字体文件,也会出现解析异常。
测试代码:
GrapeCity.Documents.Text.SystemFontCollection.NoSystemFonts = true;
var fc = new GrapeCity.Documents.Text.FontCollection();
var path = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData);
if (!string.IsNullOrEmpty(path)){
path = Path.Combine(path, "Microsoft\\Windows\\Fonts");
fc.RegisterDirectory(path, true);
}
fc.RegisterDirectory("C:\\Windows\\Fonts",true);
PS.
也可以直接用FontCollection::RegisterFont函数加载测试字体文件。 |