Does anyone know how I can count the number of pages in a pdf file using php? Thanks!
|
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. |
|||||||||||||
|
|
Based on R Ubben's answer I found the following PHP code to give good results:
|
|||||||||
|
|
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. |
|||||
|
See as well the similar question and answers: |
|||
|
|
|
See the answer here: Finally found a fast, easy and accurate way to get the number of pages in a PDF document This is the only fast and reliable way I can think of. |
|||
|
|