Hello James,
Thanks for considering Aspose.
I’ve tested the scenario using latest hotfix for Aspose.Pdf.Kit and I am unable to reproduce the problem. In fact the text is being extracted from the attached PDF document. Please try using the latest hotfix in attachment and in case you still face any problem, feel free to contact.
I’ve used the following code snippet and the text extracted from the PDF document is present in the file in attachment “Extracgted_Text.txt”.
[C#]
Aspose.Pdf.Kit.PdfExtractor extractor = new Aspose.Pdf.Kit.PdfExtractor();
extractor.BindPdf(@"d:/pdftest/Lucene+Query+Parser+Syntax.pdf");
extractor.ExtractText();
string tmpFilename = @"d:/pdftest/Extracgted_Text.txt";
extractor.GetText(tmpFilename);
Hi, Yes the latest hotfix release fixed this. Thanks.