Hi Aspose team,
We found the words become pictures when converted from pdf to doc. We tested it using Adobe, it works well.
We are using v19.12. Here’s our code
using (Document pdf = new Document(“sample.pdf”))
{
// Save using save options
// Create DocSaveOptions object
DocSaveOptions docSaveOptions = new DocSaveOptions();
// Set the recognition mode as Flow
docSaveOptions.Mode = DocSaveOptions.RecognitionMode.Flow;
pdf.Save(“sample.doc”, docSaveOptions);
}
Here’s the test file:
https://drive.google.com/file/d/13w7i6Holdf00JPFxSnZhYnegkFtfkeMM/view?usp=sharing