Aspose.pdf pdf文件转换word时内容的上下标内容显示不对 是需要什么转换参数吗

Aspose.pdf pdf文件转换word时内容的上下标内容显示不对 是需要什么转换参数吗

@My6

请您提供更多关于您使用的转换参数和代码的信息,以便我们更好地帮助您。

// 加载PDF文件
Aspose.Pdf.Document pdfDocument = new Aspose.Pdf.Document(pdfFilePath);

// Save using save options
// Create DocSaveOptions object
DocSaveOptions saveOptions = new DocSaveOptions();

// Set the recognition mode as Flow
saveOptions.Mode = DocSaveOptions.RecognitionMode.Textbox;

// Set the Horizontal proximity as 2.5
// saveOptions.RelativeHorizontalProximity = 2.5f;

// Enable the value to recognize bullets during conversion process
saveOptions.RecognizeBullets = true;
saveOptions.Format = DocSaveOptions.DocFormat.DocX;

// 将PDF转换为Word文档
pdfDocument.Save(wordFilePath, saveOptions);

@My6

您能确保使用24.9版本的API吗?如果问题持续发生,请分享您的示例 PDF 和问题的屏幕截图,以便我们尝试在我们的环境中复制该场景并相应地解决它。