I am using Aspose.PDF to convert a PDF to Word.
I received a “Word was unable to read this document. It may be corrupt.” message when attempting to open the file in Word 2003. Also, the file size appears to be 10 times larger than I would expect the converted word doc to be.
I used .NET 3.5 drivers that I downloaded this morning with the following code:
//Convert to Word
Aspose.Pdf.Document document = new Aspose.Pdf.Document(filePath);
DocSaveOptions saveOptions = new DocSaveOptions();
saveOptions.Mode = DocSaveOptions.RecognitionMode.Flow;
saveOptions.RelativeHorizontalProximity = 2.5f;
saveOptions.RecognizeBullets = true;
document.Save(tbOutFolder.Text + newName + “.doc”, saveOptions);
Is there an option that I’m not setting that is necessary to allow Word 2003 to open the document?