How to extract text based on coordinates using PDFsharp?

1.7k Views Asked by At

I want to extract text at the bottom right corner of the PDF using PDFsharp. The only way that is possible is by specifying coordinates.

So, how can I extract text from PDF by specifying coordinates using PDFsharp library?

2

There are 2 best solutions below

2
On BEST ANSWER

PDFsharp was not designed for that task. You need third-party code/own code that extracts text along with the co-ordinates.

Maybe you can use PdfTextract to get started:
https://www.nuget.org/packages/PdfTextract/

2
On

I used the pdfbox library for the purpose.It is really cumbersome.But it did get the job done.