vote up 0 vote down star

I can see there are a lot of questions for getting the number of pages in a a pdf with c, PHP and others but am wondering with a batch file or cmd is there a simple way of getting hte number of pages?

flag

70% accept rate
1  
define "batch file". you can write a PHP script and put the execution of the script in a text file, save it as .bat and its also called a batch file. You need to specify whether external tools are allowed or just simply pure cmd.exe. – ghostdog74 Nov 4 at 9:25

1 Answer

vote up 1 vote down

Using pdftk pdftk my.pdf dump_data | grep NumberOfPages does the trick.

link|flag
2  
Substitute grep by findstr and you even run on Windows without having to install more than pdftk. – Johannes Rössel Nov 4 at 9:56

Your Answer

Get an OpenID
or

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