将doc / docx文件转换为包含图像,表格和链接的pdf后,pdf无法显示正确的格式

时间:2019-09-10 03:59:12

标签: java pdf apache-poi pdf-generation open-source

我正在尝试使用Apache POI(XWPF)将Word文档转换为pdf,以便使用-

XWPFDocument document = new XWPFDocument(inputStream);
PdfOptions options = PdfOptions.create();
PdfConverter.getInstance().convert(document, outputStream, options);

用于将doc文件转换为pdf,我正在将XDocReport与itext一起使用。

但是,转换为pdf链接后,表格和图像无法正确显示。

我还尝试了其他库,例如docx4j,但它要求将MSOffice安装在主机系统上,而我使用的是Linux,因此很难使用docx。

任何人都可以建议任何开放源代码库来处理doc / docx文件以转换为pdf。

0 个答案:

没有答案