Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Batch PDF to JPG

Community Beginner ,
Jan 19, 2016 Jan 19, 2016

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

TOPICS
Acrobat SDK and JavaScript
2.7K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Beginner , Jan 20, 2016 Jan 20, 2016

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!

Translate
Community Expert ,
Jan 19, 2016 Jan 19, 2016

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

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Jan 19, 2016 Jan 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

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jan 19, 2016 Jan 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"});

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Jan 20, 2016 Jan 20, 2016

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!

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jan 20, 2016 Jan 20, 2016

What do you mean? If you're doing it directly via the Output Options then you don't need the code.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Jan 20, 2016 Jan 20, 2016
LATEST

"Export images as JPEG" probably doesn't do what you want. It takes each image (probably a photo) in the file and saves it separately. No photo, nothing to save. You probably want to look at the save options for the batch sequence (the sequence can do nothing).

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines