I\'d like to know if there\'s some PDF library in Microsoft .NET being able of extracting text by giving coordinates.
For example (in pseudo-code):
<
Well, thank you for your effort anyone.
I got it using Apache's PDFBox on top of IKVM compilation, and this is the final code:
PDDocument doc = PDDocument.load(@"c:\invoice.pdf");
PDFTextStripperByArea stripper = new PDFTextStripperByArea();
stripper.addRegion("testRegion", new java.awt.Rectangle(0, 10, 100, 100));
stripper.extractRegions((PDPage)doc.getDocumentCatalog().getAllPages().get(0));
string text = stripper.getTextForRegion("testRegion");
And it works like a charm.
Thank you anyway and I hope my own answer will help others. If you need further details, just comment out here and I'll update this answer.