Aspose.Pdf For NET转换为Word 文字乱码

out.zip (44.1 KB)

如题,转换完毕后文字有乱码,请查看附件,以下是我的代码

using (Aspose.Pdf.Document document = new Aspose.Pdf.Document(fileName))
{
    Console.WriteLine(“页数:” +document.Pages.Count());
    string fileDir = Path.GetDirectoryName(fileName);
    Aspose.Pdf.DocSaveOptions options = new Aspose.Pdf.DocSaveOptions();
    options.RecognizeBullets = true;
    options.AddReturnToLineEnd = true;
    [//options.TryMergeAdjacentSameBackgroundImages](https://options.trymergeadjacentsamebackgroundimages/) = false;
    options.Mode = Aspose.Pdf.DocSaveOptions.RecognitionMode.Textbox;
    options.Format = Aspose.Pdf.DocSaveOptions.DocFormat.DocX;
    options.CustomProgressHandler = new Aspose.Pdf.UnifiedSaveOptions.ConversionProgressEventHandler(ShowProgressOnConsole);
    document.Save(fileDir + “/out.docx”, options);
    document.FreeMemory();
    document.Dispose();
}

@icejd

感谢您与支持人员联系。

我们已经能够复制问题并将其记录在我们的问题管理系统中,如 PDFNET-47309 。 一旦有可用更新,我们将通知您。