vote up 2 vote down star

Does anyone know how I can count the number of pages in a pdf file using php? Thanks!

flag

3 Answers

vote up 1 vote down check

Here is an overview of all what you want and more: http://www.php.net/manual/en/ref.pdf.php

Included a function where you can read the number of pages.

link|flag
1  
Keep in mind that all of those functions are part of the PDFlib extension which is a commercial ($$$) product. – Mark Biek Jul 8 at 13:52
Completly right, I forgot that, thank you – Kovu Jul 8 at 13:52
We happen to have the commercial license for PDFLib, but I didn't see a function that would return the number of pages. There's a couple of suggestions in the comments on that page using php to read the contents and do a regular expression search and count, but I wonder if thats accurate all the time. – Julie Jul 8 at 14:33
vote up 3 vote down

PDFs store pages in a tree. "/Pages" objects can have a "/Parent" and "/Kids" entries, followed by a "/Count". You can't sum the "/Count" entries because a Kid might be another Pages node. The "/Page" object is the leaf.

Open the pdf as a text file and count the number of times "/Page" (not "/Pages") appears in the file. That should be correct most of the time.

link|flag
Yep, this is the simplest method if you aren't going to use a third party library. – Rowan Jul 9 at 2:37
Awesome. Very helpful, thanks! – Aseem Kishore Aug 13 at 17:20
vote up 0 vote down

Based on R Ubben's answer I found the following PHP code to give good results:

function count_pages($pdfname) {
  $pdftext = file_get_contents($pdfname);
  $num = preg_match_all("/\/Page\W/", $pdftext, $dummy);
  return $num;
}

\W matches any non-alphanumeric character and excludes things like /Pages, /PageMode etc.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.