*I used itextshap to extract text from pdf. i used below code to extract text
line by line. It is extracting code perfectly only it is not reading white
spaces in PDF. specially i need to read white spaces using this.*
*can i do it using itextsharp library ??*
PdfReader reader = new PdfReader(filename);
string text = string.Empty;
for (int page = 1; page <= 1; page++)
{
text += PdfTextExtractor.GetTextFromPage(reader, page ,new
LocationTextExtractionStrategy());
}
reader.Close();
in this code i have also tried *SimpleTextExtractionStrategy* at the place
of *LocationTextExtractionStrategy * but it is also not working.
--
View this message in context:
http://itext-general.2136553.n4.nabble.com/How-can-i-extract-text-from-pdf-including-white-spaces-tp4658195.html
Sent from the iText - General mailing list archive at Nabble.com.
------------------------------------------------------------------------------
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and
their applications. This 200-page book is written by three acclaimed
leaders in the field. The early access version is available now.
Download your free book today! http://p.sf.net/sfu/neotech_d2d_may
_______________________________________________
iText-questions mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/itext-questions
iText(R) is a registered trademark of 1T3XT BVBA.
Many questions posted to this list can (and will) be answered with a reference
to the iText book: http://www.itextpdf.com/book/
Please check the keywords list before you ask for examples:
http://itextpdf.com/themes/keywords.php