Aspose.Words for Java word转html word转换后样式变形,内容被隐藏

word转换后样式变形内容被隐藏.zip (110.5 KB)
代码:
cument = new Document(sourceFileName);
HtmlFixedSaveOptions options = new HtmlFixedSaveOptions();
options.setUseTargetMachineFonts(false);
options.setUseHighQualityRendering(true);
options.setEncoding(Charset.forName(“UTF-8”));
options.setExportEmbeddedFonts(true);
options.setShowPageBorder(true);
document.acceptAllRevisions();
document.save(targetFileName, options);

@xiangma

我们已经使用最新版本的 Aspose.Words for Java 21.7 测试了该场景,但没有发现共享问题。 请检查附加的输出 HTML。
21.7.java.zip (50.3 KB)