I'm experiencing a problem with the PdfExtractor.ExtractText method for a pdf document created with RS2005. No error occurs but the table in the document isn't extracted. If I run the same code on the same document created with RS2008 it works successfully. I have attached two simple pdf documents that reproduce the problem for me. Any help would be greatly appreciated. The code I'm using is as follows:
License license = new License();
license.SetLicense("Aspose.Pdf.Kit.lic");
string filePath = @"C:\Test_Report_2005.pdf";
PdfExtractor extractor = new PdfExtractor();
extractor.BindPdf(filePath);
extractor.ExtractText();
string textFile = Path.ChangeExtension(filePath, ".txt");
extractor.GetText(textFile);