Built-in C # PDF Reader

I need to extract text from a PDF file. I found iTextSharp and PDFBox, but both of them are only Java ports, and to get them working, I need to use large additional DLLs.

So my question is: is there some kind of native C # library for extracting text from PDF files? If not, is it difficult to write?

+6
source share
2 answers

The Docotic.Pdf library can be used to extract text from a PDF .

The library has no external dependencies and is written in C #. Docotic.Pdf is available in four versions .

Disclaimer: I am working on Bit Miracle.

+3
source

There pdfsharp

+3
source

Source: https://habr.com/ru/post/886070/


All Articles