Pick of the Week - Nov 10 [Show all picks]
Path Finder 5 - A feature-laden Finder replacement
Submit Hint Search The Forums LinksStatsPollsFAQHeadlinesRSS
12,000 hints and counting!

Combine multiple EPS to one PDF via Distiller Apps
I enclose the following AppleScript that serves to generate a unique PDF file (using Adobe Distiller) from one series of files (with names ending with .ps or .eps) contained in one folder. Use: drag and drop the folder on the droplet, et voliĆ !

[robg adds: Due to the length of the script, I pre-compiled it and placed it online for download: epstopdf.zip. I have not tested this one...]
    •    
  • Currently 0.00 / 5
  • 1
  • 2
  • 3
  • 4
  • 5
  (0 votes cast)
 
[5,196 views]  

Combine multiple EPS to one PDF via Distiller | 5 comments | Create New Account
Click here to return to the 'Combine multiple EPS to one PDF via Distiller' hint
The following comments are owned by whomever posted them. This site is not responsible for what they say.
Combine multiple EPS to one PDF via Distiller
Authored by: jctull on Fri, Mar 19 2004 at 12:30PM PST
It probably is not a good idea to call the script epstopdf as there is a commandline perl script for doing this with the same name. I think it is installed from ghostscript, a defualt install with OS X. Just trying to alert folks to possible confusion.

Someone else can tell us if the epstopdf perl script will handle multiple file reduction to a single pdf file. I am not sure about this. Seems like a good excuse for avoiding using Adobe's overpriced distiller.

[ Reply to This | # ]
Combine multiple EPS to one PDF via Distiller
Authored by: wgscott on Fri, Mar 19 2004 at 6:07PM PST
If not you can use the following to take the pdfs and join them:


gs -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sOutputFile=merged.pdf

Net price: $0

[ Reply to This | # ]
Combine multiple EPS to one PDF via Distiller
Authored by: halbert on Sat, Mar 20 2004 at 7:19PM PST
Or just a one-liner with ImageMagic:

convert ~/Desktop/convert/*.ps ~/Desktop/convert/pdf.pdf

This works with a multipage file or multiple files.

[ Reply to This | # ]
ImageMagick
Authored by: jiclark on Sun, Mar 21 2004 at 1:48PM PST
...is what it's actually called. Find out more here.

[ Reply to This | # ]
Combine multiple EPS to one PDF via Distiller
Authored by: alan-trewartha on Thu, Mar 25 2004 at 7:01AM PST
Distilling multiple files is built into distiller though. We're still using an old distiller (4) on OS 9, but I bet the functionality is still there. It is not as simple as a GUI "Distill all these", but in the "Xtras" foilder there are two files RunFilEx.ps and RunDirEx.ps that are sufficiently commented to demo how to concatenate arbitrary files, or whole folders of eps/ps files

I'm not sure about the above applescript, but I know for sure with this method that font subsets are amalgamated with this method, where simple concatenation of PDFs ends up duplicating font data producing larger files than needed

[ Reply to This | # ]