使用 xdocreport,是否可以从 docx 文件中读取图纸?

Using xdocreport, is it possible to read drawings from a docx file?

我需要将 docx 转换为 pdf。以下代码使用库 xdocreport 并且运行良好。

问题出在某些包含图纸的特定 docx 上。它们在最终的 pdf 中不可见。我已经使用 github 提供的实时 demo 测试了转换,我遇到了同样的问题。

所以我想知道,这可能吗,还是我需要使用其他库?哪一个 ? (dox4j 似乎也不起作用)。

final XWPFDocument document = new XWPFDocument(inputStream);
final OutputStream outPdf = new FileOutputStream("myFile.pdf");
PdfConverter.getInstance().convert(document, outPdf, optionsPdf);
outPdf.close();

XDocReport 不支持绘图。它可以支持它,因为 docx->pdf 基于支持绘图的 iText,但这是一项艰巨的任务(欢迎任何贡献!)

您可以看到 here XDocReport docx->pdf 转换器的限制。