Some test text!
Core / Guides / Text extraction
To extract text from a PDF document.
PDFDoc doc = new PDFDoc(filename)
Page page = doc.GetPage(1);
TextExtractor txt = new TextExtractor();
txt.Begin(page);
// Extract words one by one.
TextExtractor.Word word;
for (TextExtractor.Line line = txt.GetFirstLine(); line.IsValid(); line=line.GetNextLine())
{
for (word=line.GetFirstWord(); word.IsValid(); word=word.GetNextWord())
{
//word.GetString();
}
}
Read a PDF File sample
Full sample code which illustrates the basic text extraction capabilities.
To extract text from under an annotation in the document.
PDFDoc doc = new PDFDoc(filename)
Page page = doc.GetPage(1);
Annot annotation = page.GetAnnot(0);
TextExtractor txt = new TextExtractor();
txt.Begin(page); // Read the page.
string textData = txt.GetTextUnderAnnot(annotation);
When we use the ElementReader
class to read elements from a PDF document, we are often faced with data that is partial. For example, let us say that we are attempting to extract a sentence that says "This is a sample sentence." from a PDF document. We could potentially end up with two elements - "T" and "his is a sample sentence.". This is possible because in a PDF document, text objects are not always cleanly organized into words sentences, or paragraphs. The ElementReader
class will return Element
objects exactly as they are defined in the PDF page content stream.
An element of type e_text
directly corresponds to a Tj
element in the PDF document. Each e_text
element represents a text run, which represents a sequence of text glyphs that use the same font and graphics attributes. Say, if there is a single word, whose letters are each presented with a different font, then each letter would be a separate text run. You may also encounter text runs that contain multiple words separated by spaces. The PDF format does not guarantee that the text will be presented in reading order.
All this just goes to say that attempting to use an ElementReader
to extract text data from a PDF document is not guaranteed to return data in the order expected (reading order). The most straightforward approach to extract words and text from text-runs is using the pdftron.PDF.TextExtractor
class, as shown in the TextExtract
sample project - TextExtract Sample
TextExtractor will assemble words, lines, and paragraphs, remove duplicate strings, reconstruct text reading order, etc. Using TextExtractor
you can also obtain bounding boxes for each word, line, or paragraph (along with style information such as font, color, etc). This information can be used to search for corresponding text elements using ElementReader
.
Trial setup questions? Ask experts on Discord
Need other help? Contact Support
Pricing or product questions? Contact Sales