0

我使用下面的代码将 Docx 文件转换为 PDF 格式。但是 PDF 文件中的页面没有按预期设置。Docx 文件有 3 页,PDF 以 6 页显示,中间有不必要的空格和空白页。如何格式化 PDF 页面设置,以便不显示不必要的空格和空白页?

InputStream is = new FileInputStream(new File(filepath));
OutputStream out = new FileOutputStream(new File(pdffile));
XWPFDocument document = new XWPFDocument(is);
PdfOptions options = PdfOptions.create();
PdfConverter.getInstance().convert(document, out, options);
4

0 回答 0