Docx转html后,排版错乱

版本:23.8
编程语言:java

源文件:
福来品牌授权书.docx (260.8 KB)

转换后的html:
errorLayout.zip (78.7 KB)

使用的代码:

ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
			Word2HtmlOptions word2HtmlOptions = new Word2HtmlOptions();
			HtmlSaveOptions saveOptions = new HtmlSaveOptions();
			saveOptions.setExportImagesAsBase64(true);
			saveOptions.setResolveFontNames(true);
			word2HtmlOptions.setSaveOptions(saveOptions);
			LoadOptions loadOptions =new LoadOptions();
			Document doc = new Document(new ByteArrayInputStream(fileBytes), loadOptions);

			doc.save(outputStream, saveOptions);

@ZhonghaoSun 不幸的是,帧无法保存到HTML中。您所能做的就是使用HtmlFixed格式,或者将框架替换为形状。请检查更新的模板:

layout.docx (263.2 KB)