Details
-
Improvement
-
Status: Closed
-
Major
-
Resolution: Fixed
-
2.0.20, 3.0.0 PDFBox
Description
I am testing text extraction from PDF and profiling the execution.
I found that the second biggest time consumer is the static code in Standard14Fonts that loads fonts from the pdf box jar.
The culprit seems to be the direct use of the stream returned getResurceAsStream.
That would be a ZipInputStream when using PDFBox as a jar.
Using a buffered stream around it reduces the load time a lot.