skip to Main Content

How can I split pdf file? I tried use FPDI, but pdf file must have version 1.4. Are there any other FREE solutions in php for split pdf by pages and save each page to seperate file? Really dont see any other free solution.Thanks!

2

Answers


  1. For split pdf by pages you can use http://pdfparser.org/ and for save each page to seperate file https://mpdf.github.io/

    Login or Signup to reply.
  2. Try PDFtk Server. It is a command-line tool which you can execute from a PHP script. It allows many different kinds of PDF manipulation, like splitting a document into smaller pieces. PDFtk is free.

    Example command-line use:

    pdftk document.pdf burst
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search