How to batch convert jpgs to pdfs?

I am trying to figure out how to convert a bunch of jpg images to a single pdf file.  I know there are some 3rd party programs that will do this but I was wondering if it is possible to do right inside Adobe Acrobat.  I am running Adobe Acrobat 5.0.  Thank you for any help.

That's an old version so I don't remember if it has this option but you "should" be able to go to File>Create PDF>From multiple files. Again, your version is old so it may not be there. It's available in the newer versions.

Similar Messages

  • How to batch convert wordperfect to PDF?

    I have roughly 600 wordperfect files that I need to convert to PDF. Is there a quick way to do this.

    Corel's WP has not / does not use anything of Adobe's to create PDFs.
    With Acrobat installed you can "file - print" WP files to the Adobe PDF virtual printer that is installed with Acrobat.
    Perhaps an OS based "batch" printer job would be possible. Something for you to look into.
    As well, if you have WP installed there may be something WP can do.
    To learn of such you'd want to visit Corel's WP customer support.
    Be well...

  • How to batch convert .pages to .pdf  with automator & applescript

    Hi all,
    As the title states, I want to drag and drop one (or a whole stack) of .pages documents onto an automator app, and have it pump out .pdfs...
    Here is my code, it crashes with an error, but I'm really new to this so I don't really know what's going wrong.
    on run {input, parameters}
      tell application "Finder"
      repeat with aFile in input
      if class of (item aFile) is not folder then
      set {tName, fileExt} to {name, name extension} of aFile
      if fileExt is not missing value and fileExt is not "" then
      set tName to "PDFs/" & (text 1 thru -((count fileExt) + 2) of tName) & ".pdf"
      tell (get container of aFile)
      if not (exists folder "PDFs") then make new folder at it with properties {name:"PDFs"}
      tell application "Pages"
      set mydoc to open file aFile -- open input file in Pages
      export mydoc to file tName as PDF --do the exporting
      close mydoc saving no -- close the original file without saving
      end tell
      end tell
      end if
      end if
      end repeat
      end tell
    end run

    mirror318 wrote:
    One more thing, is it easy to change that script so that the output is put in a subfolder called "PDFs" (the folder would go in wherever the .pages file was)?
    This should save to a subfolder called "PDFs" in the Folder where the pages file is located:
    on open fs
      my proceed:fs
    end open
    on proceed:fs
      tell application "Finder"
      repeat with i from 1 to (get count of items in fs)
      if (name extension of item i of fs) is "pages" then
      --set PDFfile to text 1 thru -7 of (item i of fs as text) & ".pdf"
      set PDFfile to name of (item i of fs)
      set PDFfile to text 1 thru -7 of PDFfile & ".pdf"
      if not (exists (parent of (item i of fs) as text) & "PDFs") then
      make new folder at (parent of (item i of fs)) with properties {name:"PDFs"}
      end if
      set PDFfile to (parent of (item i of fs) as text) & "PDFs:" & PDFfile as text
      tell application "Pages"
      set mydoc to open (item i of fs) -- open input file in Pages 
      export mydoc to file PDFfile as PDF --do the exporting 
      close mydoc saving no -- close the original file without saving 
      end tell
      end if
      end repeat
      end tell
    end proceed:

  • How to batch convert pdf to jpgs, crop to trim and save?

    I'm trying to figure out how to take a couple of hundred PDFs, Crop them to trim, then convert them all to JPGs using any of the adobe programs.
    In bridge I was able to Batch convert all the PDFs to JPGs but it wouldn't crop them to the trim also...
    I thought I could use the Photoshop Image Processor to batch action crop and save them again but I always get one of two errors... "There were no source files that could be opened by Photoshop." or "Please Specify a destination folder."
    I don't know why this is coming up since I have it selecting the folders with the JPGs that I converted in Bridge and saving to another folder..
    Does anyone know if I can do all of this at once? Or how I can somehow get this to work so that II don't have to open,crop and save for each individual file?

    Corel's WP has not / does not use anything of Adobe's to create PDFs.
    With Acrobat installed you can "file - print" WP files to the Adobe PDF virtual printer that is installed with Acrobat.
    Perhaps an OS based "batch" printer job would be possible. Something for you to look into.
    As well, if you have WP installed there may be something WP can do.
    To learn of such you'd want to visit Corel's WP customer support.
    Be well...

  • How to batch convert bmp files into jpg by dos command or c# program language?

    How to batch convert bmp files into jpg by dos command or c# program language?
    Many thanks for replying.

    Try
    GraphicsMagick.

  • How to batch convert psd to png with layers

    how to batch convert psd to png with layers
    i want to convert lots of PSD files into PNGs WHILE RETAINING
    LAYERS!
    simply batching and choosing custom setting flattens the
    thing.
    how do i do that!??
    and i KNOW it can be done somehow - because i have some old
    png's i KNOW come from the same psd source. ironic, isn't it?
    besides - feature wish for adobe developers:
    A) batch conversion should include 300dpi to 72dpi and vise
    versa.
    B) batch conversion should include PSD to PNG and vice versa
    - including layers and transparency.
    C) RGB to CMYK option when converting from 72 dpi to 300dpi.
    D) batch exporting should include PNG32 which it doesnt now -
    but somehow DOES include the outdated and stupid gif-format.
    E) i'd like the Actions feature of photoshop - makes batching
    complicated procedures easly.
    F) I'd like support for the brushes of photoshop
    G) Better selecting tools for details like hair and fine
    edges.
    Important notes is that i as webdesigner often need to make
    certain aspects of my clients graphics into print material. Also
    that i use fireworks for picture editing.
    Praise for the developers of fireworks
    A) the compression facility of JPGs is AWESOME!
    B) PNG as fileformat is likewise awesome - i end up using it
    for almost all i do these days. Transparency and good file sizes. I
    have used fireworks cs3 to convert all psd and tiff and ai files to
    PNG.
    C) the vectors and styles and method of selecting and editing
    things in fireworks is FAR SUPERIOR to flash and photoshop!

    senocular wrote:
    > Save the following code in a .jsf file and run it in a
    batch. It will save
    > your batched PSDs in their original location as PNGs
    (using the same file name
    > with .png tacked on the end). You'll probably need to
    save the file in your
    > Fireworks/Configuration/Commands directory to allow the
    batch to pick it up.
    > Note that any save location you specify in the batch
    will be irrelevant. This
    > code just saves the files in their original location.
    >
    >
    >
    > var dom = fw.getDocumentDOM();
    > fw.saveDocumentCopyAs(dom,
    dom.filePathForRevert+".png");
    >
    Thanks Trevor!
    Jim Babbage - .:Community MX:. & .:Adobe Community
    Expert:.
    http://www.communityMX.com/
    CommunityMX - Free Resources:
    http://www.communitymx.com/free.cfm
    .:Adobe Community Expert for Fireworks:.
    Adobe Community Expert
    http://tinyurl.com/2a7dyp
    See my work on Flickr
    http://www.flickr.com/photos/jim_babbage/

  • I have Adoby PDF.  How do I convert a scaned PDF document to Word?

    I have Adoby Export PDF.  How do I convert a scsned PDF to a Word document?

    Hi William,
    Here you go!
    How to export your PDF file to Word file:
    1.Log into https://exportpdf.acrobat.com/signin.html with your Adobe ID and password
    2. Select "Export from PDF' from right pane
    3. Click "Select Files" button then choose your PDF file for exporting to Word file
    4. Select a format like docx or doc for Word file
    5. Check On for "Recognize scanned text in" if your PDF file contains scanned images
    6. Click "Export" button
    7. Download the Word file by clicking "Download" in the progress bar
    8. Open the Word file in Microsoft Word for editing.
    Or you can export your PDF file in Adobe Reader
    1. Launch Adobe Reader and open your PDF file
    2. Select "Tools" and click "Sign In" link to sign in with your Adobe ID and password
    3. Select "Export PDF"
    4. Click "Convert" button
    5. Click "Download Converted File" link to download the exported Word file to your computer.
    Regards, Stacy

  • How do I convert from a pdf to a word document?

    How do I convert from a pdf to a word document?

    Hi SGU,
    There are 2 Ways to do this ...
    1. Either Use Adobe Export PDF Service .. Please Refer : https://www.acrobat.com/exportpdf/en_GB/convert-pdf-to-word.html
    2. Use Adobe Acrobat to do it ... Refer : http://www.adobe.com/products/acrobat/pdf-to-word-doc-converter.html

  • How do I convert a Dutch pdf document to Word ?

    How do I convert a Dutch pdf document to Word ?

    While the ExportPDF service doesn't support Dutch at this time, it does support French, which uses a similar character set.  You may want to try choosing French as the OCR language.
    Let us know how it goes.
    -David

  • How do I convert a WHOLE PDF file into jpeg on LION?

    how do I convert a WHOLE PDF file into jpeg on LION?  I know how to open it in Preview but there is no longer an option through Print and if I export it only allows one page at a time and I need 223 pages...

    Use this Automator Action:

  • How can I convert text to PDF in the new "Pages" without losing info.

    How can I convert text to PDF in the new "Pages" without losing a lot if information?

    Select Export To from Pages' File menu, then select PDF from the sub-menu.

  • How do I convert emails to PDF from Outlook to make a file on the PC?

    how do I convert emails to PDF from Outlook to make a file on the PC

    It is always tough for anyone when we need to save our emails into one file for future reference. You could either do it manually or can use a simple tool to Convert all your messages into one pdf file . This Single pdf file can be used if we need to read any past email. you can easily convert oulook to pdf in no time. If you are converting several email messages, you can either save them as separate files with initial layout fully intact or combine them into one big PDF document.

  • How can I convert a secure pdf document into word?

    How can I convert a secure pdf document into word?

    Hi,
    Please refer to below mentioned article:
    http://forums.adobe.com/docs/DOC-1515
    ~PRanav

  • How to batch convert RGB images to CMYK

    Hello,
    Can anyone explain in a step-by-step way how to batch-convert many RGB images to CMYK?
    Thanks in advance

    If you do want to use Photoshop for the bact conversion there are a few ways, including Batch and Image Procesor under the File>Automate or File>Scripts of PS.
    However, my preference is to use Russell Brown's script: Image Processsor Pro, via Bridge:
    http://www.russellbrown.com/scripts.html
    As similar one is Picture Processor:
    http://www.scriptsrus.talktalk.net/
    Both allow you to do multiple conversions simultaneously, to different sizes and file types, and running actions before or after the conversions.

  • Free trial version unable to convert jpg to pdf

    I have downloaded the free trial of adobe but it will not allow me to convert a jpg to pdf.  Does anyone know if I have to buy adobe in order to do so?

    Hi mom2coleandluke,
    Can you please let us know the steps you are performing to convert JPG to PDF and also the error that you are getting. If possible, please provide us the screenshot of the error message. For information on posting screenshot, refer: http://forums.adobe.com/message/4209263

Maybe you are looking for

  • Greyed-out movie file not syncing

    I imported a short MP4 video file into iTunes 10 for Windows. (An old educational short from RiffTrax if you're interested) It appears in iTunes okay and plays fine, but when I attempt to sync my iPhone 4, the title for that video file is greyed out

  • External function specification

    Hi All! (Envs: Centos 5.2, Oracle 10.2.0.4) According to documentation a developer should provide RETURN clause in the external function parameters declaration. But I faced a conflict with additional extproc specific parameters , INDICATOR for exampl

  • Is there a way to access my Mac via remote desktop from a Windows machine?

    Hi, I'm lookinf for a way to connect from work to my Mac at home. I can do this using VNC and it works, but it is freaking slow! I also dont want to use the Chrome remote dekstop plugin or TeamViewer, there must be a RDP client that can go from Windo

  • Applet permission problem

    i have trouble giving permission to my applet to save a file. My applet looks like this: import java.awt.*; import java.io.*; import java.lang.*; import java.applet.*; public class WriteFile extends Applet { String myFile = "writetest"; File f = new

  • ESS java enabled screen for IT0581,IT0584,IT0585 & IT0586

    Can we have java enabled screen for IT0581,IT0584,IT0585 & IT0586 as a Payroll services for Indian client . If not , how can we add the ITS version for the same infotypes in  ESS making it in  change mode where  employee's can update their  amount .