Hi,
I want to extract text from PDF in C# asp.net. I am using this code as following link ::
Link:: http://www.codeproject.com/KB/cs/PDFToText.aspx
But this code is not working properly. The main problem is that when i get output file they have no that content which are in Inputfile.
Is there any way to resolve this problem ?
Please help me.
Thanks in advance.
Pankaj
Loading
Ben ThompsonPosted Jun 18, 2021, 1:38 PM
The LEADTOOLS SDK can also extract text from PDF files. They have a code snippet available showing how to perform this. This functions for both vector PDFs in which the SVG information is extracted, or raster PDFs in which an Optical Character Recognition is performed.
https://www.leadtools.com/help/sdk/v21/dh/dox/documentpage-gettext().html
The SDK is available for a 60-day evaluation period on the official site.
https://www.leadtools.com/downloads
Varun SetiaPosted Jun 18, 2021, 7:04 AM
Leon DPosted Jul 4, 2018, 8:30 PM
Nova GreenPosted Jul 4, 2018, 7:03 AM
Jony GreenPosted Oct 19, 2015, 3:03 AM
Anna HarrisPosted May 15, 2013, 8:48 AM
Dorothea HANKSPosted May 7, 2013, 2:44 AM
Mike GoldPosted Mar 16, 2010, 1:30 AM
PdfReader reader = new PdfReader("In.PDF");
Then extract the images, not sure about how to do the text, but it should point you in the right direction:http://www.vbforums.com/showthread.php?t=530736
-Mike