Batching a multi page pdf to pngs

Hi,
I need to batch a 58 mulit page pdf that needs to be opened in photoshop, resized and then saved for web as a png-24 bit.
I've set up an action to do the above, and ran a batch on it, but for some reason it just doesn't seem to work for me.
When I ran the batch this is what I had chosen:
Set: Default Actions
Action: The defined action i set for above
Source: is from a folder with the pdf inside
- I have override action "open" commands selected
   I also did this when unselected, but the batch only opened up the 58 pages...didn't apply the action to it.
Destination: folder I chose
Have the file naming set to:
     Document name + extension + starting serial#1
So I'm not exactly sure where I'm going wrong
Anyone have a clue on how I should go about doing this?
Thanks!

A better way would be to use the PDF Processor script.    
The script should work in cs2-cs5. (one at bottom of page)
http://ps-scripts.com/bb/viewtopic.php?f=10&t=1882&sid=a56f92e435b9f9cdb63d7f73dd8e56e0
MTSTUNER

Similar Messages

  • Batch open Multi page PDF's

    How can I batch/automate open a multi page PDF in CS3?
    I need to open multi page pdf's then rasterize them as individual jpegs, the "save As" from Acrobat or "export" is not good enough quality. They need to go through Photoshop.
    At the end of the day I want to create a droplet so I can drag a load of multi page PDF's onto it and
    let photoshop get on with it, I then come back 15-20 mins later, and hey presto there are all my converted CMYK 300 dpi Jpegs!
    Please help!!
    Thnx
    Simon

    If I recall correctly, Adobe changed the Acrobat JPG output after version 6. If you have Acrobat 6, you might try it.
    However, why do you say '
    CMYK 300 dpi Jpegs'? 'CMYK' implies that printing is your intent. Anti-aliased text is not ideal for printing as it becomes mushy. You might want at least 600 ppi art without anti-aliased text here for crisper text.
    Prematurely rasterizing this instead of sending the original PDF data to the printer seems very odd.

  • Photoshop CS5 pdf size fine - Bridge Multi page pdf size not fine

    I know it must be asked a thousand times but here goes:
    PDFs saved by photoshop display the true document size (let's say 70cm width on 72ppi)
    When I try to create multi page pdfs fro bridge (thanks Adobe!), no matter how many ways I try to set it up, the image always is small in the center of a white background. Always.
    What gives?

    Hi,
    1. Why dont u try it in pdf itself?
    U can just crop the required area in pdf file using crop tool so it can be applied for all the pages at a time.
    2. If u trying to remove particular area on a pdf u can place a white box on that area using pitstop tool it can be saved as actionlist like batch processing and applied for any number of pages and files.
    Making this in pdf itself won't get u more file size. Size will be as equal as ur source file.
    Praveen

  • PS/BRIDGE CS5 multi-page PDF + selectable text

    since i started using CS5 i cant figure out how to make multi-page PDF's  and selectable text i know that now bridge does the job with PDF's but i  dnt know how to make text selectable, ive noticed that doing file ->  automate -> batch then save as pdf will make PDF's with selectable  text but this wont gives me an option to create multi page PDFs, sooo  annoying grrrrrrr

    Assuming you're coming from an earlier version of Photoshop, you'll find the ability to make a multi-page PDF has been removed from Photoshop.
    There's some more information on that, written by an Adobe employee, here:  http://forums.adobe.com/message/3434502#3434502
    -Noel

  • Create contact sheet from multi-page PDF

    I have a multi-page PDF (A brochure with 1 image on each page). I would like to create a contact sheet of the pages. Can I?

    I would like to create a contact sheet of the pages. Can I?
    Bridge Output Module creates a multipage PDF with options to choose on size, orientation and amount of files per page but can't read all pages separately, it only uses the first page of a PDF.
    You can however extract the pages in PS itself. Open the PDF file using right mouse click in Bridge and choose Open With; Photoshop.
    Then you will see an option window with small thumbs of each pages. Select all the thumbs and set the options as you wish. Then hit Open and you have all the pages as separate files. Use Save as (or create an action to batch save the files if it are many) and then open the folder with the new files in Bridge. Now you can use the option for more files per page in the Output Module.
    Or use the Contactsheet II script that has returned in CS6 and choose to use the open files.

  • Multi-page PDF to multiple single-page PDFs

    Hello, I'm wondering if anyone out there knows a way, if you have a multi-page PDF, to export each individual page to it's own single-page PDF.  Is there a way to do this in Acrobat?
    Or is there a way in Microsoft Word using Adobe's PDF print driver, to print each page to it's own single-page PDF?
    Ultimately I want to run a batch process on each PDF page in Illustrator, but for me to do that each page needs to be it's own PDF.
    Thanks for any help!!!!

    Something that may help -
    With a multi-page PDF open in Acrobat Pro; select Document > Extract Pages
    In the Extract Pages dialog you can select "Extract Pages As Separate Files".
    This will provide you with a PDF file for each page of the source PDF file.
    Additional options are also possible.
    In a thread at AUC, Thom Parker identifies these.
    http://www.acrobatusers.com/forums/aucbb/viewtopic.php?id=4703
    Be well...

  • Getting Page Count for a Multi-Page PDF file using Illustrator script?

    Does anyone know how to get the page count of a multi page PDF file?  I know you can then open each page using the PDFFileOptions (pagetoopen).  But I need to know up front how many pages there are to loop thru to open each page and process each page.
    Any Ideas?

    This script i did for photoshop:
    OK so lets do it working on WIN and MAC without any shell script.
    This solution is not the best but its working.
    I used Try catch to solve it.
    Only issue is that you should at least somehow know how many pages you expect in pdf.. this mean if you are working with books or flyers...
    Then set the maxPagesCount to that number.
    I am working with pdfs with max 20pages.. so i start open the 20 then 19 then 18 and when i am success i know the amount of pages.
    Its not the quicker way but its usable.
    var maxPagesCount = 20;
    var actPagesCount = maxPagesCount;
    var opts1 = new PDFOpenOptions();
    opts1.usePageNumber = true;
    opts1.antiAlias = true;
    opts1.bitsPerChannel = BitsPerChannelType.EIGHT;
    opts1.resolution = 10; //it will load faster the test page
    opts1.suppressWarnings = true;
    opts1.cropPage = CropToType.MEDIABOX;
    myFunction = function () {
      try { 
          app.displayDialogs = DialogModes.NO;
          var fileList = openDialog();
          for (i = 0; i < fileList.length; i++) {
            actPagesCount = maxPagesCount;
            getPagesCount(fileList[i],maxPagesCount);
            alert(actPagesCount);
      } catch (exception) { 
        alert(exception);
    getPagesCount = function (checkFile, lastPageID) {
      try {          
        for (var checkPage = lastPageID; checkPage > 0; checkPage--) {
          opts1.page = checkPage;                    
          var docRef = open(checkFile, opts1, false);                  
          docRef.close(SaveOptions.DONOTSAVECHANGES);                  
          actPagesCount = lastPageID;                  
          return;                  
          checkPage=0;                              
      } catch (exception) {
        // Look for next page        
        checkPage--;        
        getPagesCount(checkFile,checkPage);

  • Creating Multi-Page PDF from a Layerd Illustrator file (script)

    Often times when designing a logo I create different versions and variable options on layers. This can result in several layers in one Illustrator file. Is there an easy way or an existing script that will allow me to (with one click) create a multi-page PDF consisting of all the layers within my .ai file? The current method is turning on each layer, performing a save-as (PDF), then turning off said layer and turning on the next layer and repeating the task and so-on-and-so-forth, etc … It becomes tedious and quite often I save over the previous version, forgetting to re-name it or forget to perform a save on a certain layer. Can anyone help with some advice? I have never written my own script before but am not opposed to trying, where do I begin?
    Any help is appreciated.

    You don't say what OS you are using and which scripting language you are thinking of doing this in…
    This is a sample that may get you started done in JavaScript so it's platform independent with the exception of my 'mac style' file paths.
    If your on a PC it may just be a typo to set to C drive or whatever you call them things…
    If you are on the mac OS then it should just dump a load of PDF's on your desktop.
    You say about a multi-page PDF but don't think Illustrator can do this unless its been added with multi-artboards in CS4?
    Others would have to let you know that…
    #target illustrator
    var docRef = app.activeDocument;
    with (docRef) {
    var docName = baseName(name)
    var pdfOptions = new PDFSaveOptions();
    pdfOptions.pDFPreset = '[High Quality Print]';
    // Turn all layers off
    for (var i = 0; i < layers.length; i++) {
    layers[i].visible = false;
    // Turn each layer on
    for (var i = 0; i < layers.length; i++) {
    if (i == 0) {
    layers[i].visible = true;
    redraw();
    var layerName = layers[i].name;
    var saveAsPath = new File('~/Desktop/' + docName + '_' + layerName + '.pdf')
    saveAs(saveAsPath, pdfOptions);
    } else {
    layers[i-1].visible = false;
    layers[i].visible = true;
    redraw();
    var layerName = layers[i].name;
    var saveAsPath = new File('~/Desktop/' + docName + '_' + layerName + '.pdf')
    saveAs(saveAsPath, pdfOptions);
    //close(SaveOptions.DONOTSAVECHANGES);
    function baseName(fileName) {
    var nameString = '';
    var extOffset = fileName.lastIndexOf('.');
    if (extOffset == -1) {
    nameString = fileName;
    } else {
    nameString = fileName.substr(0, extOffset);
    return nameString;

  • How can you create a multi-page pdf document in photoshop elements 13?

    I previously had pse 11 and was able to create multi-page documents as pse files. However, pse 13 does not allow. How can I create multi-page pdf files from pse 13?

    Alas, for one of those mysterious adobe reasons, it's gone in recent versions. Only multipage file you can make is a photobook.

  • Unable to mark the box 'create Multi-page PDF from page tiles' when saving to pdf-file

    I am running Illustrator CS3 on a Mac OSX 10.5.8
    I want to print a very large illustrator-file (1000 mm x 900 mm) across mutliple pages of A4-paper (5 x 5 sheets of A4-paper) by saving the file as a multi-page pdf file.
    I first followed the instructions provided here:
    http://helpx.adobe.com/illustrator/kb/create-mutli-page-pdf-illustrator.html
    When I then tried to save the file: -> File -> Save as -> 'choose .pdf from drop-down menu'
    I get to this menu:
    I am unable to mark the box that says: 'Create multi-page pdf from page tiles'. I have made a red arrow pointing to the box I want to mark.
    I have tried changing the other drop-down menus inside this menu, to see if the box I want to mark could become available, but without any luck.
    I am not sure what I am doing wrong. I would be grateful if anyone could help me set my settings right to allow me to create such a multi-page pdf-file.
    Thanks in advance for your help

    Your ps file should be good, the problem likely resides elswehere. Maybe in your acrobat install, distillers settings. what error did distiller give?
    Mine ran good and got a multi page document, here is a screenshot to help you troubleshoot.
    On mac go to system preferences / print and fax / and change your default printer if you have another option. I know sounds like this should not help, but there are problems like Illustrator for example not making .pdfs if you do not have a printer chosen or an old or corrupt .ppd assigned.

  • Safari 7.0.6, using Adobe Acrobat 11.0.10, aren't rendering pdf files in the Print Preview screen.  Additionally, only a single, blank page prints for a multi-page pdf document.  Any ideas?

    Safari 7.0.6, using Adobe Acrobat 11.0.10, isn't rendering pdf files in the Print Preview screen.  Additionally, only a single, blank page prints for a multi-page pdf document.  Any ideas?

    Figured it out.  It had nothing to do with the software levels of Safari or Adobe Acrobat.  Here's the fix:
    Open Finder/Applications
    Search "Internet Plug-Ins"
    Move any Adobe plug-ins to the trash
    Quit Safari
    Launch Safari
    Your pdf document should now render in Print Preview and print properly.

  • Acrobat Pro 9 Multi-page PDF Printing backwards thumbnails

    Any time I create a multi-page PDF and ask it to print, it will print the first page correctly and then print every subsequent page as a mirror image thumbnail in the corner of the paper. If I print each page individually it prints fine. After doing a fair bit of testing, I've found the following:
    If I de-select the option "choose paper source by pdf page size" this issue does not happen. Unfortunately, this means any multi-page PDF with 8x11 and 11x17 doesn't print the 11x17 pages properly as it just prints them on 8x11 paper.
    If I select "print as image" this issue does not happen. Unfortunately, this is unacceptable due to the blurring of lines and text that occurs when selecting this option.
    I haven't tested the various page scaling options because I am producing scaled maps, and must therefore leave it set to "none".
    Does anyone know what might be causing this, and how to resolve the issue? Printing 10-20 page documents one sheet at a time isn't exactly an ideal solution.

    Unfortunately, not only does this not solve the problem with multi-page-size documents, but it's begun happening on files which are all one size as well, where that box isn't even checked.
    It appears that what's happening is the newer versions of Adobe Acrobat don't play nicely with emulated postscript support past a certain date. We're replacing our Canon with a newer model that has actual postscript support, and if that resolves the issue I'll be certain to post confirmation here. Copies of Adobe Acrobat 7 and 8 in our office haven't seen this problem at all; it's simply everyone who has upgraded past that point that can't print reliably.
    More news next week, after we get the new copier.

  • Can't save as multi-page PDF in CS4

    Hey everyone, I'm having major trouble with page tiling in CS4.
    I have a CS2 file that has two pages in it with page tiling enabled, I saved this as a PDF with multiple pages just fine out of CS2. I now have it open in CS4 and am unable to do the same thing, my PDF always comes out as one long page. I can't work with multiple artboards because the file will be used in CS2 again and needs to remain backwards compatible.
    In the Print Dialogue I have "Tile" set to "Full Pages", the print preview window on the left shows me two pages, just the way it should be.
    Once I go into the Save as PDF Dialogue in CS4, I do not have the "Create Multi-Page PDF from page tiling" - option that is there in CS2 in the general tab.
    I've been trying to find a solution for the past two hours but am at my wit's end. I'd greatly appreciate some help.

    Just draw two artboards where the tiles would be then save it as a pdf. I should open in CS 2 without the artboards since CS 2 does not support artboards.
    Nothing will be different in CS2.
    Or simply make a copy for CS 4 with artboards and one for CS 2 but adding artboards to the CS 2 file when opned in CS 4 should be  a problem.

  • Place multi-page pdf and resize pages automatically

    Hi everyone,
    I have an A4 sized multi-page pdf file and I wanted to place the pages of the pdf into a US letter sized Indesign document. I planned to use the placemultipagepdf.jsx script that comes with indesign, to do this. When I place the pages though, they come in as A4 and I have to adjust the size manually within each image box. Is there a way to have them place but then resize automatically to the US letter sized height?
    Appreciate any help.

    Use this one: InDesignSecrets » Blog Archive » Zanelli Releases MultiPageImporter for Importing both PDF and INDD Files

  • How do I import multi-page PDFs into an indesign document?

    Note:  When I search for answers to this question on the adobe site, i encounter a broken link.
    I need to insert several multi-page PDFs such that they become one document that I am able to appy consistent control over.  Should I be doing this in indesign?  What is the best way to do this?

    If you don't want to use them in InDesign for any other purpose than to assamble them in one new PDF I would rather use Adobe Acrobat Pro than InDesign.
    In Acrobat Pro: Create new Deocument > Form multiple Files, select further what you need.

Maybe you are looking for

  • Variable value for IP Revaluation

    Hi Experts, I would like to run a revaluation function (with a button in workbook - IP). Variable is on the key-figure. The situation is strange: - click on the button with planning function call  - nothing happened - then when I click on change vari

  • Error could not access a java object field called allowAppDataInServContext after Applying Security

    After applying the security patch 12-26 I am getting the error "Could not access a java object field called allowAppDataInServContext".  When I removed the update the error goes away.  When I read the update it returns. The error states it occurred i

  • Automatic query depending on selection of another item

    Hi all, I have the following situation : I have two items in a form called P42_ASUNTO and p_42_COD_OFERTA. P42_ASUNTO is a select list and P42_COD_OFERTA also. I would like that when it selects across the list of P42_ASUNTO, automatically only there

  • Distributed topic - JMS adapter consuming duplicate messages

    We have distributed topic thats consumed by a composite (JMSadpter in mediator). We see for every one message sent the composite consumes the message twice. (With forwarding policy set to partitioned) Is this an expected behavior? and how do we make

  • Office/word 2007

    Hi, My boss has started using office 2007 on his pc at work but my "word for mac" can't open the files he sends me. Is there an update or fix for this? Thanks!