Merge several eps files into one PDF

16,800

Use a command like:

gs -sDEVICE=pdfwrite -dNOPAUSE -dBATCH -dSAFER -sOutputFile=sin_800.pdf *.eps
Share:
16,800

Related videos on Youtube

Dan
Author by

Dan

Updated on September 18, 2022

Comments

  • Dan
    Dan over 1 year

    I have several hundred encapulated postscript files, and I want to merge them all into one big PDF. How can I do this?

    • ott--
      ott-- over 10 years
      Imagemagick's convert claims to do this.
    • Dan
      Dan over 10 years
      @ott--: Feel free to add that as an answer.
    • george lal
      george lal about 9 years
      I would be wary of using anything from ImageMagick to append vectorized images, such as the convert +/- append command. ImageMagick developers even warn against using it on vectorized images (unless you don't mind rasterization, of course).
    • terdon
      terdon about 9 years
      @madams I converted your answer to a comment since it wasn't actually answering the question. I saw in another comment that you're working on a solution. Please feel free to post it as a new answer and welcome to the site!
  • Admin
    Admin over 10 years
    For those like me who didn't know what gs is, it's a command that calls the GhostScript PostScript and PDF language interpreter and pre-viewer.
  • ryanjdillon
    ryanjdillon over 6 years
    This worked great, but it added them as individual pages. How might you create a single page document from n images?
  • Dan
    Dan over 6 years
    @ryanjdillon: You might want to ask that as a separate question.