Possible Duplicate:
Split PDF documents into separate pages using PHP (or possibly perl)
How can I split a multi-page PDF file into distinct single page PDF files in PHP on Linux server? Are there any PHP libraries or free command line tools available to do this?
The most recent version of Ghostscript (v9.06) can do this too. Here is the commandline to be used inside a
cmd.exe‘DOS-Box’ window on a 32-bit Windows system:-o ...: this indicates the name of the output file(s).%03d: this part of the filename will be translated into 3-digit numbers, padded by leading0s, starting from001for the first page.-sPDFSETTINGS=...: is an optional parameter; if used will ensure that all used fonts are embedded and some other settings which in general ensure a high quality output.Ghostscript is available for Windows. (The link above leads you to the installers: gs906w32.exe and gs906w64.exe. Scroll down to find them…).