Example usage for com.itextpdf.text.pdf.parser TextExtractionStrategy interface-usage

List of usage examples for com.itextpdf.text.pdf.parser TextExtractionStrategy interface-usage

Introduction

In this page you can find the example usage for com.itextpdf.text.pdf.parser TextExtractionStrategy interface-usage.

Usage

From source file com.uts.tradeconfo.MyTextExtractionStrategy.java

/**
 * A simple text extraction renderer.
 * 
 * This renderer keeps track of the current Y position of each string.  If it detects
 * that the y position has changed, it inserts a line break into the output.  If the
 * PDF renders text in a non-top-to-bottom fashion, this will result in the text not

From source file DouDownloader.CustomLocationTextExtractionStrategy.java

/**
 * <b>Development preview</b> - this class (and all of the parser classes) are still experiencing heavy development, and are
 * subject to change both behavior and interface. <br>
 * A text extraction renderer that keeps track of relative position of text on page The resultant text will be relatively
 * consistent with the physical layout that most PDF files have on screen. <br>
 * This renderer keeps track of the orientation and distance (both perpendicular and parallel) to the unit vector of the

From source file org.mortagne.budget.internal.transaction.io.lcl.pdf.LCLLocationTextExtractionStrategy.java

public class LCLLocationTextExtractionStrategy implements TextExtractionStrategy {
    private static final String[] TABLEHEADER = { "DATE", "LIBELLE", "VALEUR", "DEBIT", "CREDIT" };

    private static final float[] TABLECOLUMNS = { 40/* 42.5 */, 70/* 74.85 */, 350/* 365.65 */, 410/* 421.05 */,
            480/* 493.25 */ };

From source file Pdf2TxtUtils.CustomLocationTextExtractionStrategy.java

/**
 * <b>Development preview</b> - this class (and all of the parser classes) are still experiencing heavy development, and are
 * subject to change both behavior and interface. <br>
 * A text extraction renderer that keeps track of relative position of text on page The resultant text will be relatively
 * consistent with the physical layout that most PDF files have on screen. <br>
 * This renderer keeps track of the orientation and distance (both perpendicular and parallel) to the unit vector of the

From source file pdf_text_extract.DumpTextFragmentPositions.java

class DumpTextFragmentPositions implements com.itextpdf.text.pdf.parser.TextExtractionStrategy {

    private final PrintWriter out;

    DumpTextFragmentPositions(PrintWriter out) {
        this.out = out;