Click here to Skip to main content
15,893,487 members
Articles / Programming Languages / C#
Article

Extract Text from PDF in C# (100% .NET)

Rate me:
Please Sign up or sign in to vote.
3.67/5 (60 votes)
20 May 2006CPOL1 min read 972.1K   120.4K   174   106
A simple class to extract plain text from PDF documents with ITextSharp

Introduction

This is a 100% .NET solution to extract text from PDF documents.

Background

Dan Letecky posted a nice code on how to extract text from PDF documents in C# based on PDFBox. Although his solution works well it has a drawback, the size of the required additional libraries is almost 16 MB. Using iTextSharp the size of required additional libraries is only 2.3 MB.

Using the Code

In order to use this solution in your projects, you need to do the following steps:

  • Add references to itextsharp.dll and SharpZiplib.dll
  • Add the PDFParser.cs class to your project

Then you can use the newly added class in the following way:

C#
// create an instance of the pdfparser class
PDFParser pdfParser = new PDFParser();
   
// extract the text
String result = pdfParser.ExtractText(pdfFile);

I also created a small console application which uses the class and shows the progress of the conversion. Please keep in mind that if you try to extract text from big PDF files, keeping all the resultant text in memory is not the best solution, in these cases you should write the extracted text to the file after parsing every page.

How Is It Working?

My code is based on the algorithm in C ExtractPDFText. Using iTextSharp's PdfReader class to extract the deflated content of every page, I use a simple function ExtractTextFromPDFBytes to extract the text contents from the deflated page.

Further Improvements

Although the code worked well for me, I didn't find in Adobe's PDF reference how to parse special characters. So if someone knows how to do this, just post it and I will update the class.

History

  • 20th May, 2006: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
Romania Romania
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionKaputt for me Pin
B. Clay Shannon29-Jun-15 5:51
professionalB. Clay Shannon29-Jun-15 5:51 
QuestionGet an err msg instead of the actual contents Pin
B. Clay Shannon25-Jun-15 8:52
professionalB. Clay Shannon25-Jun-15 8:52 
QuestionProbably a Dumb Question Pin
Member 117451965-Jun-15 9:35
Member 117451965-Jun-15 9:35 
GeneralGreat Job Pin
khaen31-Mar-15 13:41
khaen31-Mar-15 13:41 
QuestionIt is not working. Pin
irensaltali28-Mar-15 5:54
irensaltali28-Mar-15 5:54 
AnswerRe: It is not working. Pin
savage824-May-20 6:45
savage824-May-20 6:45 
QuestionI think you have the files mixed (Source and Demo) Pin
jadaho2-Dec-14 1:54
jadaho2-Dec-14 1:54 
AnswerGood tool, thanks for sharing. Pin
mic.xu25-Sep-14 8:40
mic.xu25-Sep-14 8:40 
GeneralMy vote of 2 Pin
Member 107128088-Aug-14 1:43
Member 107128088-Aug-14 1:43 
QuestionTanks a lot! Pin
KrNeS23-Jan-14 5:41
KrNeS23-Jan-14 5:41 
QuestionWorks (kind of) Pin
matt.whitby10-Dec-13 1:09
matt.whitby10-Dec-13 1:09 
GeneralGreat job. Pin
Perry Orr7-Aug-13 17:20
Perry Orr7-Aug-13 17:20 
QuestionToo simplistic - why I voted 1 Pin
atlaste10-Jul-13 22:28
atlaste10-Jul-13 22:28 
AnswerRe: Too simplistic - why I voted 1 Pin
Perry Orr7-Aug-13 17:22
Perry Orr7-Aug-13 17:22 
GeneralRe: Too simplistic - why I voted 1 Pin
atlaste2-Mar-14 21:30
atlaste2-Mar-14 21:30 
QuestionHow it work!? Pin
reza2168116-Apr-13 6:51
reza2168116-Apr-13 6:51 
Questionlayout Pin
tmac1210-Mar-13 23:32
tmac1210-Mar-13 23:32 
QuestionThank you! Pin
Joseph guidry8-Jan-13 9:15
Joseph guidry8-Jan-13 9:15 
BugFound bug Pin
MunissoR24-Apr-12 1:57
MunissoR24-Apr-12 1:57 
AnswerRe: Found bug PinPopular
fborelli4-Jul-12 8:33
fborelli4-Jul-12 8:33 
GeneralGreat Post, Works Great! Pin
Member 202264516-Apr-12 5:13
Member 202264516-Apr-12 5:13 
QuestionGreat post! Pin
Eric Castellon9-Apr-12 9:35
Eric Castellon9-Apr-12 9:35 
GeneralMy vote of 5 Pin
brinda roy20-Feb-12 23:41
brinda roy20-Feb-12 23:41 
GeneralMy vote of 1 Pin
mjkhan78620-Jan-12 21:35
mjkhan78620-Jan-12 21:35 
Questionhow to export data from excel to PDF ? Pin
nimolZero28-Aug-11 6:10
nimolZero28-Aug-11 6:10 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.