Spire.Doc for Java
使用Spire.Doc for Java转换PDF后,PDF出现格式上的问题。
源文件与转换后的PDF文件都上传了。
期待你的回复
Herman.Yan wrote:您好,
感谢你的留言。
我使用Spire.Doc(11.3.0) for Java转换了你的word文档,但是并没有重现你的错误。生成的pdf文件没有格式问题,这可能是项目环境的问题。为了能更好的解决你的原因,请提供以下信息给我们做进一步调查。
1.完整测试代码。
2.系统信息(例如Win10、64位)和区域设置(例如中国)。
3.jdk版本和使用的Spire.Doc版本
Best Regards,
Herman
E-iceblue support team
Section tempSection = document.addSection();
DocPicture docPicture = tempSection.addParagraph().appendPicture("EwmPath");//生成的二维码图片地址
docPicture.setTextWrappingStyle(TextWrappingStyle.In_Front_Of_Text);
ParagraphBase replacementFirstItem = (ParagraphBase) tempSection.getParagraphs().get(0).getItems().getFirstItem();
ParagraphBase replacementLastItem = (ParagraphBase)tempSection.getParagraphs().get(tempSection.getParagraphs().getCount()- 1).getItems().getLastItem();
TextBodySelection selection = new TextBodySelection(replacementFirstItem, replacementLastItem);
TextBodyPart part = new TextBodyPart(selection);
BookmarksNavigator bookmarkNavigator = new BookmarksNavigator(document);
bookmarkNavigator.moveToBookmark("gao", true, false);
bookmarkNavigator.replaceBookmarkContent(part);
document.getSections().remove(tempSection);