aspose.pdf转换成word的时候 将表格视为图片转换了 能不能设置不是图片
java以下是我的代码 public static void convertToWord(String filePath) throws Exception {
Document pdfDocument = new Document(filePath);
DocSaveOptions saveOptions = new DocSaveOptions();
saveOptions.setFormat(DocSaveOptions.DocFormat.DocX);
// 1. 识别模式
// Flow:更像Word流式文档,适合大部分文本型PDF
// Textbox:每个元素都用文本框,版面最接近PDF,但不易编辑
saveOptions.setMode(DocSaveOptions.RecognitionMode.Textbox); // 还原度最高
// 2. 保持图像质量
// 3. 保持表格结构
saveOptions.setRecognizeBullets(true); // 识别项目符号
pdfDocument.save("output.docx", saveOptions);
}
我们已在内部问题跟踪系统中打开以下新工单,并将根据 Free Support Policies 中所述的条款提供修复。
问题 ID:PDFNET-60180
如果您需要优先支持,并可以直接联系我们的付费支持管理团队,您可以访问 Paid Support Services。