通过FontSettings指定字体库目录后,把word转换成pdf出现乱码

使用aspose word for Java 24.2 服务器没有安装aspose指定的字体,通过FontSettings指定字体库目录后,把word转换成pdf出现乱码,请问怎么解决
240419.zip (39.1 KB)

@SalesDhorde 请添加此行并检查结果:

nodes.setFontSettings(fontSettings);

@SalesDhorde 此外,您可以简化代码,如下所示:

FolderFontSource folderFontSource = new FolderFontSource(getFontsDir(), true);

Document doc = new Document("input.docx");
doc.setFontSettings(FontSettings.getDefaultInstance());
doc.getFontSettings().setFontsSources(new FontSourceBase[]{folderFontSource});
doc.save("output.pdf");