Hi Aspose team,
We found the words under stamps are lost when converted from pdf to doc. We tested it using Foxit, it works well. Please see the screenshot below.
image.png (123.3 KB)
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:
stamp.pdf (308.1 KB)