user503853
user503853

Reputation:

How to get the first two pages of a pdf document using PHP

How to get the first two pages of a pdf document using PHP?

Thanks!

Don

Upvotes: 2

Views: 608

Answers (1)

user622378
user622378

Reputation: 2336

To read from PDF files, you will need to install the XPDF package.

When you have XPDF/pdftotext installed, you run the following PHP statement to get the PDF text:

$content = shell_exec('/usr/local/bin/pdftotext '.$filename.' -');

You can download XPDF from http://foolabs.com/xpdf/

Upvotes: 1

Related Questions