Hi Aspose,
We found the background picture in PDF will be changed to dark color when converted to Doc. This will affect the visibility of the words.
image.jpg (409.1 KB)
I also tested Foxit, it doesn’t have such problem.
We are using Aspoe.pdf 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 our test file
background2.pdf (257.0 KB)