Uploaded image for project: 'PDFBox'
  1. PDFBox
  2. PDFBOX-600

PDFBox performance issue: PDFTextStripper performance tweak

    XMLWordPrintableJSON

Details

    • Improvement
    • Status: Closed
    • Major
    • Resolution: Fixed
    • 0.8.0-incubator
    • 1.0.0
    • Text extraction
    • None
    • All

    Description

      During text extraction, the PDFTextStripper needs to calculate textposition proximities in order to determine if text elements are overlapping either vertically or horizontally.

      As part of this, the PDFTextStripper.within(float first, float second, float variance) method is used.

      The current (0.8.0) version of this method uses the following test: second > first - variance && second < first + variance

      This is accurate, but slower in my test documents than if you flip the test order: second < first + variance && second > first - variance

      This is because the second test fails out faster on left-to-right text. I believe that should be the default case.

      Please change the PDFTextStripper.within() method to use the second form of the test. I.E. to:

      private boolean within( float first, float second, float variance )

      { return second < first + variance && second > first - variance; }

      Thanks!

      Attachments

        1. PDFTextStripper.java
          47 kB
          Mel Martinez

        Activity

          People

            jukkaz Jukka Zitting
            m.martinez Mel Martinez
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: