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
My Funciton: public function uploadFile(Request $request) { $file = $request->file; $tempPath = $file->getRealPath(); $parser = new \Smalot\PdfParser\Parser(); $pdf = $parser->parseFile($tempPath); $text = $pdf->getText(); }
The text was updated successfully, but these errors were encountered:
Your example doesn't work, please provide a working example PDF or a test which triggers the error.
Sorry, something went wrong.
@mumer96 does the linked PDF from #703 (comment) trigger the error too?
I encounter the same issue with the linked PDF from #703
No branches or pull requests
My Funciton:
public function uploadFile(Request $request) {
$file = $request->file;
$tempPath = $file->getRealPath();
$parser = new \Smalot\PdfParser\Parser();
$pdf = $parser->parseFile($tempPath);
$text = $pdf->getText();
}
The text was updated successfully, but these errors were encountered: