Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Parse pdf in Net Core [closed]

I ve a Asp.Net core projet. This project reference another library in which I should extract informations from a pdf. I was using itextsharp, but it seems not compatible with .net core.

Any idea how I could extract Text from a pdf file ?

like image 611
J4N Avatar asked Oct 30 '22 09:10

J4N


1 Answers

If you want to write your own pdf parser, you will need to read up on all the different versions of the pdf file format. They are all officially documented here.

like image 61
Bobby Avatar answered Nov 15 '22 10:11

Bobby