We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If there are text columns in the pdf, the text via getText() is mangled together.
For e.g:
gets transformed to
This ist Column This is Column one, and there is two and there is even more text not more text
Maybe this could be targeted by using some special chars like tab "\t"?
The text was updated successfully, but these errors were encountered:
This is fixed with #505 You can now do this:
$config = new \Smalot\PdfParser\Config(); $config->setHorizontalOffset("\t"); $parser = new \Smalot\PdfParser\Parser([], $config); $pdf = $parser->parseFile('path/to/file'); $text = $pdf->getText();
Sorry, something went wrong.
Closed. Please reopen if problem persists.
No branches or pull requests
If there are text columns in the pdf, the text via getText() is mangled together.
For e.g:
gets transformed to
Maybe this could be targeted by using some special chars like tab "\t"?
The text was updated successfully, but these errors were encountered: