Split PDF into chunks by page range in Php

后端 未结 2 1058
后悔当初
后悔当初 2021-01-27 06:29

so after browsing through many packages like TCPDF, FPDP, DOM2PDF and many other excellent php pdf packages, I couldn\'t find this feature in any packages where it allows to spl

2条回答
  •  时光说笑
    2021-01-27 07:02

    PDFMerger has this functionality, and I personally enjoy its simplicity.

    $pdf = new PDFMerger;
    $pdf->addPDF('pdf1.pdf','20-100');
    $pdf->addPDF('pdf2.pdf','30-50');
    $pdf->merge(); // output PDF, you can specify additional parameters here
    

提交回复
热议问题