Need to merge multiple pdf's into a single PDF with Table Of Contents sections

后端 未结 5 475
醉话见心
醉话见心 2020-12-06 07:33

Will have 50-100 single PDF\'s that we\'ll be generating with a php script. PDF\'s are generally grouped into groups of 10-20. Each group needs to have it\'s own Table of Co

相关标签:
5条回答
  • 2020-12-06 07:55

    To simplify the process of generating table of contents for PDF files, I've successfully generated LaTeX code from php and then used latex2pdf to generate the PDF file.

    Maybe this could be an alternative, in your case.

    To merge PDFs, I agree with Federico that pdftk is the best solution.

    0 讨论(0)
  • 2020-12-06 08:01

    You can use gs like this:

    gs -dBATCH -dNOPAUSE -q -sDEVICE=pdfwrite -sOutputFile=combined.pdf file1.pdf file2.pdf
    
    0 讨论(0)
  • 2020-12-06 08:05

    If you can use PDF bookmarks instead of a table of Contents page you can use pdfrecycle to merge the PDF files and create the bookmarks.

    0 讨论(0)
  • 2020-12-06 08:10

    And what's the best tool for us to merge the pdf's?

    On Linux (as well as on Windows), you can install an useful little program, pdftk. It works well to bind PDF's together. For example:

    $ pdftk in1.pdf in2.pdf in3.pdf in4.pdf in5.pdf in6.pdf cat output out.pdf
    

    where in*.pdf are the input files and out.pdf is the result. In between, @jerik already gave an answer how to deal with the TOC.

    0 讨论(0)
  • 2020-12-06 08:19

    With Version 1.45 - December 6, 2012 is pdftk able to create bookmarks with update_info, which could be used as toc.

    Its done in 3 Steps:

    Precondition for my example

    3 PDF files. Single page.

    page1.pdf
    page2.pdf
    page3.pdf
    

    1. Create the bookmark information

    # build the bookmark out of an example file
    pdftk page1.pdf dump_data output meta.txt
    # Edit meta.txt as you need
    

    Heres an example that worked for me, meta.txt:

    InfoBegin
    InfoKey: Creator
    InfoValue: PDFTK
    NumberOfPages: 3
    PageMediaBegin
    PageMediaNumber: 1
    PageMediaRotation: 0
    PageMediaRect: 0 0 595.32 841.92
    PageMediaDimensions: 595.32 841.92
    BookmarkBegin
    BookmarkTitle: Page 1
    BookmarkLevel: 1
    BookmarkPageNumber: 1
    BookmarkBegin
    BookmarkTitle: Page 2
    BookmarkLevel: 1
    BookmarkPageNumber: 2
    BookmarkBegin
    BookmarkTitle: Page 3
    BookmarkLevel: 1
    BookmarkPageNumber: 3
    

    2. Create an temporary merged pdf file

    pdftk page* cat output temp.pdf
    

    3. Add the bookmarks to the pdf

    pdftk temp.pdf update_info meta.txt output final.pdf
    

    When you open the final.pdf in acrobat reader you see the bookmarks on the left side.

    0 讨论(0)
提交回复
热议问题