Batch convert multiple PDF to Image on Mac

11

5

What would be the quickest way to convert a bunch of pdf files to jpeg files? I know I can open Preview and Save As image, but that could take a long time.

RdSchull

Posted 2009-12-28T04:09:11.707

Reputation:

Answers

24

Automator has a "Render PDF Pages to Images" action. Under Snow Leopard and El Capitan, there's a wizard that pops up when you run Automator asking you to choose a template. The second template is "Application":

Applications are self-running workflows. Any files or folders dropped onto an Application will be used as input to the workflow.

So:

  • Open Automator
  • Choose "Application"
  • Drag the "Render PDF Pages to Images" action onto the workflow
  • This action produces random filenames, so follow it with "Rename Finder Items" (choose "Make sequential" from the dropdown list(you can skip this action in Sierra as it no longer exists and it just uses original file name)
  • Then add a "Move Finder Items" to have the output files moved to the Desktop (You can click on the "desktop" and choose a different location for the output files to go)
  • Save your new application somewhere (I suggest saving to the desktop makes it easy for drag and drop)
  • Drag files onto it
  • Enjoy.

James Polley

Posted 2009-12-28T04:09:11.707

Reputation: 5 892

This doesn't seem to work for me... I launch the app and it just hangs and does nothing. – Joe – 2011-11-02T12:45:46.187

@joe - That's correct. You're not meant to launch the workflow, you just drag-and-drop the files onto the icon – James Polley – 2011-12-12T00:00:44.233

How would you make it save the file in place, instead of to a specified folder such as the desktop? – Ryan Crispin Heneise – 2012-05-25T15:35:50.257

Hmm...I tried it, but where does the output file go? I don't see anything. – None – 2009-12-28T05:19:26.480

The help text for the action (lower-left corner of Automator) has a note saying that the output files are randomly named - "this action is often followed by the Rename Finder Items -> Make Sequential" action.

I did that, and added a "Move finder items" to move them to the Desktop as well.

Sorry for being unclear - I've added these steps into the list of actions. – James Polley – 2009-12-28T05:56:23.080

0

How about pdf2jpg?

PDF2JPG is a droplet based application for converting any number of files you drop on it into either JPG or PNG format, also allows you to select compression level when converting to JPG. This application requires that you have the ImageMagick libraries installed from Fink. Information on installing ImageMagick and, if needed, Fink as well.

John T

Posted 2009-12-28T04:09:11.707

Reputation: 149 037