How to read text from scanned pdf please suggest any freetool which has no has restrictions like only able to extract first three pages from a pdf document?
Is there way to convert scanned pdf to normal pdf c#
How to read text from scanned pdf please suggest any freetool which has no has restrictions like only able to extract first three pages from a pdf document?
Is there way to convert scanned pdf to normal pdf c#
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Sam HobbsPosted Jun 10, 2023, 9:34 PM
I have been using Tesseract in a C# program but it has been a while therefore I do not remember much. Also they apparently have made substantial improvements after I wrote my program.
Tesseract documentation | Tesseract OCR (tesseract-ocr.github.io)
When I posted this I did not see that this question is from half a year ago. I hope this helps someone at least.
Kip HackmanPosted Jun 8, 2023, 7:18 PM
I am unaware of any free API that can do what you are looking for, but you can use the LEADTOOLS Recognition SDK technology in your application.
https://www.leadtools.com/sdk/ocr
You can leverage the IOcrEngine class, to gather the text of any page of the scanned document. LEADTOOLS also offers the ability to use TWAIN to gather the image from the scan job to easily facilitate the scanned image to the IOcrEngine for recognition.
Here is some sample code:
Rajeesh MenothPosted Dec 16, 2022, 6:49 AM
Hi Kavya,
I don't think any free source for this kind of major extraction and the concept is called "Optical Character Recognition".
You can refer to my article: https://www.c-sharpcorner.com/article/cognitive-services-optical-character-recognition-ocr-from-an-image-using-com/
Rajesh LoharPosted Dec 16, 2022, 5:15 AM
Hi,
Use ITextSharp.
Please refer below
https://www.codeproject.com/Questions/243295/Is-this-possible-to-Extract-Text-from-Scanned-PDF
Thanks,