duanfu3634 2017-04-05 10:15
浏览 127
已采纳

合并几个pdf文件

I want to merge several pdf files. How can I do that ?

What I have so far is this.

I'm trying to use this package myokyawhtun/PDFMerger.

    include base_path('vendor/myokyawhtun/pdfmerger/PDFMerger.php');

    $pdf = new \PDFMerger;

    $pdf->addPDF(public_path('doc/uploads/doc_1.pdf'), 'all');
    $pdf->addPDF(public_path('doc/uploads/doc_2.pdf'), 'all');

    $pdf->merge('file', public_path('doc/files/test.pdf'));

The errors are different depending on what files I try to merge.

  • If I try to merge the same pdf twice, the file is generated but all blank.
  • If I try with the code above, I get HTTP ERROR 500.
  • If I try with more files, I get tcpdi_parser - Out of memory error.

Bottom line is that it doesn't seem to work.

I already tried several other packages that use FPDI. Problem is that it only works with pdf versions equal or lower to 1.4 (if I'm not mistaken). So using any of those doesn't seem to be an option.

I'm well aware that the question has already been asked, none of the solution seems to work.

  • 写回答

1条回答 默认 最新

  • dongmeng2509 2017-04-05 10:25
    关注

    you could try to call an external tool with exec

    exec("convert -density 300x300 -quality 100 " 
        . public_path('doc/uploads/doc_1.pdf') . " "
        . public_path('doc/uploads/doc_2.pdf') . " "
        . public_path('doc/uploads/merged.pdf')
    

    see other possible tools than convert: here

    Warning: keep in mind that calling exec is not a good idea in general, you should try to avoid it due to potential security leaks. Be absolutely safe, that the public_path function cannot inject malicious commands from user input!

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 求daily translation(DT)偏差订正方法的代码
  • ¥15 js调用html页面需要隐藏某个按钮
  • ¥15 ads仿真结果在圆图上是怎么读数的
  • ¥20 Cotex M3的调试和程序执行方式是什么样的?
  • ¥20 java项目连接sqlserver时报ssl相关错误
  • ¥15 一道python难题3
  • ¥15 牛顿斯科特系数表表示
  • ¥15 arduino 步进电机
  • ¥20 程序进入HardFault_Handler
  • ¥15 关于#python#的问题:自动化测试