Docx转pdf,转换出来多了一页

版本:
23.5
代码:

Document document = new Document(FILE);
document.save(“C:\Users\Administrator\Desktop\0.pdf”, SaveFormat.PDF);

文件:
zip.zip (58.3 KB)

@humanhuman, Microsoft Word 可以根据默认编辑语言设置和区域设置以不同方式呈现此文档。 要模拟 Microsoft Word 如何为中文用户呈现文档,请将中文指定为默认编辑语言,如下代码示例所示:

LoadOptions loadOptions = new LoadOptions();
loadOptions.getLanguagePreferences().setDefaultEditingLanguage(EditingLanguage.CHINESE_PRC);

Document doc = new Document("0.docx", loadOptions);
doc.save("0.aspose.words.23.5.Chinese.pdf");

0.word2019.Chinese.pdf (57.8 KB)
0.aspose.words.23.5.Chinese.pdf (52.6 KB)