From e45bc36807a9b818caf8406f9f79269690026ba2 Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Tue, 19 Oct 2021 20:22:47 +0200 Subject: [PATCH] wip #4804 @0.25 --- src/Document.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/Document.php b/src/Document.php index 53b4957..b6683e1 100644 --- a/src/Document.php +++ b/src/Document.php @@ -153,10 +153,15 @@ class Document public function processTexts() { - PDFTools::extractTexts($this->getPDFInput(), $this->getConvertPath()); + $this->processFullTexts(); PDFTools::extractHighlightsData($this->getPDFInput(), $this->getConvertPath()); } + public function processFullTexts() + { + PDFTools::extractTexts($this->getPDFInput(), $this->getConvertPath()); + } + public function getPageNumbers() { $this->getInfos(); -- 2.39.5