Skip to main content
Participant
January 19, 2016
Answered

Batch PDF to JPG

  • January 19, 2016
  • 1 reply
  • 2764 views

Hello! Do I need Acrobat X to convert pdf to jpg in batch mode (many files at once)? I tried setting up a batch sequence in Acrobat 9 to no avail. Thanks

This topic has been closed for replies.
Correct answer jimr58428308

It should be possible to do it with version 9. Try using this code in your batch sequence:

this.saveAs({cPath: this.path.replace(".pdf", ".jpg"), cConvID: "com.adobe.acrobat.jpeg"});


I wasn't looking closely enough - I noticed that under Output Options, there is the option to export to JPEG - that seems to be working nicely. Out of curiosity, where in the tool would I put the code if I needed to go that route? Thanks!

1 reply

try67
Community Expert
Community Expert
January 19, 2016

You need Acrobat Pro. Currently Adobe only sells the DC version.

Participant
January 19, 2016

Sorry - I have Acrobat 9 Pro. Do I need Acrobat X pro? The sequence "Export All Images as JPEG" doesn't seem to work. It just takes my original PDFs, and copies them as PDF to the output location. Thanks

try67
Community Expert
Community Expert
January 19, 2016

It should be possible to do it with version 9. Try using this code in your batch sequence:

this.saveAs({cPath: this.path.replace(".pdf", ".jpg"), cConvID: "com.adobe.acrobat.jpeg"});