Can I convert 100 Tiffs to PDF and auto save them simultaneously?

Can I convert 100 Tiffs to PDF and auto save them simultaneously?  I prefer to not have to use "Save As" for every single one.
Thank you for your time.

http://answers.acrobatusers.com/I-convert-800-000-tiff-document-images-pdf-OCR-images-What -efficient-method-q42554.aspx

Similar Messages

  • JSP that converts office extensions to pdf and then upload them

    Hi there !
    Im trying to convert office extensions ( .xls, .ppt, etc) to pdf and then upload the resulting file to a server .
    currectly im using the upload solution posted by the user anna_DRA here : http://forums.sun.com/thread.jspa?threadID=672874
    and as for the conversion im using a solution which uses OpenOffice's lib to do the conversion.I'm going to post the codes of my JSP and my HTML ( which just contains the form to get the file to be converted and uploaded).
    observation: the point which is giving me headaches is how to get the file sent by my form, convert it into a File object, use my conversion tool and then deliver it to my upload tool so it can be stored.... i cant seem to get the File object from the request object ( tried getattribute and it returns null....) .
    observation':I do know about and how to use MVC but my boss asked me to make this work with just one JSP or a JSP and a HTML.
    index.html :
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <title>Upload test</title>
    </head>
    <body>
    <form enctype="multipart/form-data" action="/WSPdfConversion1.1/Conversion.jsp" method=POST>
    <input type="file" name = "FileUp">
    <input type="submit" value="Enviar"/>
    </form>
    </body>
    </html>Conversion.jsp :
    upload portion:
    MultipartFormDataRequest mrequest = new MultipartFormDataRequest(request);
    OpenOfficeConnection OpenOfficeConnection = new SocketOpenOfficeConnection(8100);
    String newName = "";
    Hashtable files = mrequest.getFiles();
    UploadFile file = (UploadFile) files.get("FileUp");//Give name u r given in the previous page.
    String fileName = file.getFileName();
    upBean.store(mrequest, "FileUp");conversion portion:
    OpenOfficeConnection OpenOfficeConnection = new SocketOpenOfficeConnection(8100);
    try {
        OpenOfficeConnection.connect();
    } catch (ConnectException e) {
        e.printStackTrace();
    File inputFile = new File("C:\\Users\\thiago\\Documents\\"+fileName);
    for(int i = 0; i <= fileName.length() - 4; i++){
        String s = ""+fileName.charAt(i);
        newName = newName.concat(s);
    File outputFile = new File("C:\\Users\\thiago\\Documents\\"+newName+".pdf");
    //convert the spreadsheet
    DocumentConverter ExcelToPDFConverter = new OpenOfficeDocumentConverter(OpenOfficeConnection);
    ExcelToPDFConverter.convert(inputFile, outputFile);
    OpenOfficeConnection.disconnect();Both work just ok when separated but i cant get both to work together....
    Any help is much appreciated!!!
    Thanks in advance
    Edited by: thiagocbalducci on Mar 24, 2010 12:07 PM
    Edited by: thiagocbalducci on Mar 24, 2010 12:09 PM

    Hello TSN,
    Test Screen Name wrote:
    Picking just one point: PDF -> EPS -> PDF. This could not possibly do more than one page, because EPS is absolutely by definition a single page format. Therefore you must choose a page when exporting PDF to EPS.
    Thanks for your response.
    I was thinking Microsoft... which has allowed multi-page eps files for years. But you're correct, this is normally an unsupported .eps format.
    I solved the problem over the weekend by doing the following:
    1) I removed the suspect OTF font family but despite doing so, the folder still had two 'corrupted' but unused copies of an italic font. They refused to remove so I had to boot into Win7 SAFE mode to remove.
    2) After complete removal of the OTF font family. I reinstalled the OTF font *BUT* only from a different repository (oddly, this other OTF font set is slightly larger per font).
    3) Once installed, I tested with Flare, published and uploaded to Crocodoc SUCCESSFULLY. Yeah!
    I don't have anymore time to test but the questions remain, such as, was it one or more of the following issues:
    a) Flare has a problem handling some OTF fonts or cannot error correct (the way other programs do) for marginal fonts or font errors?
    b) Was it the two corrupted fonts in the Windows/fonts folder?
    c) Was it the slightly different OTF fonts that I am no longer using?
    Take care

  • Convert external documents to PDF and print

    Hi,
    I have a SAP script and with some help from SDN I am at point where I can convert this SAP script to PDF using the function module below
    CALL FUNCTION 'CONVERT_OTF'
    EXPORTING
    FORMAT = 'PDF'
    * MAX_LINEWIDTH = 132
    * ARCHIVE_INDEX = ' '
    * COPYNUMBER = 0
    * ASCII_BIDI_VIS2LOG = ' '
    * PDF_DELETE_OTFTAB = ' '
    IMPORTING
    BIN_FILESIZE = BINFILESIZE
    * BIN_FILE =
    TABLES
    otf = DATAB[]
    lines = PDFTAB[].
    Now my requirement is, let's say I have an external doc(word or excel) residing on my PC. I have complete path of this file in my hand. I want to convert this file to PDF and append it to the above PDFTAB[] and print to the printer 'TDDEST' as a single document.
    Thanks,

    Hi,
    use this code passing in v_url the complete path
    START-OF-SELECTION.
      SET SCREEN 100.
    *&      Module  STATUS_0100  OUTPUT
          text
    MODULE status_0100 OUTPUT.
      SET PF-STATUS 'STATUS'.
      SET TITLEBAR 'T1'.
    *running down the pbo for the first time,
    *create the controls and their containers
      IF my_main_container IS INITIAL.
        CREATE OBJECT my_main_container
        EXPORTING
        container_name = 'CUSTOM_CNTL'
        EXCEPTIONS
        cntl_error = 1
        OTHERS = 2.
    *create PDF Viewer object
        CREATE OBJECT my_pdf_viewer
        EXPORTING
        parent = my_main_container
        EXCEPTIONS
        cntl_error = 1
        cntl_system_error = 2
        OTHERS = 3.
        IF sy-subrc <> 0.
    *could not create PDF Viewer
        ENDIF.
    *my_pdf_viewer->LANGU = 'IT'.
        DATA: view_buttons_active TYPE char01 VALUE 'X',
        v_url TYPE char255.
        IF my_pdf_viewer->acrobat_vs_reader = ''.
          view_buttons_active = 'X'.
        ENDIF.
    *create SAP toolbar for PDF Viewer
        CALL METHOD my_pdf_viewer->create_toolbar
          EXPORTING
            tool_buttons      = 'X'
            view_buttons      = view_buttons_active
          EXCEPTIONS
            cntl_error        = 1
            cntl_system_error = 2
            OTHERS            = 3.
        IF sy-subrc <> 0.
    *could not create toolbar
        ENDIF.
    *Open the PDF document
       IF NOT my_pdf_viewer->html_viewer IS INITIAL.
        CLEAR v_url.
        v_url = file.
        CALL METHOD my_pdf_viewer->open_document
          EXPORTING
            url = v_url.
        IF sy-subrc <> 0.
          SET SCREEN 1000.
          MESSAGE i208(00) WITH 'Documento non presente: riprovare'.
        ENDIF.
       ELSE.
        MESSAGE e208(00) WITH 'Impossibile aprire il documento'.
       ENDIF.
      ENDIF.
    ENDMODULE.                 " STATUS_0100  OUTPUT
    *&      Module  EXIT-PROCESSING  INPUT
          text
    MODULE exit-processing INPUT.
      fcode = ok_code.
      CLEAR ok_code.
      CASE fcode.
        WHEN 'BACK' OR 'EXIT' OR 'CANC'.
          SET SCREEN 0.
          LEAVE SCREEN.
      ENDCASE.
    ENDMODULE.                 " EXIT-PROCESSING  INPUT

  • Can't convert web page to PDF in IE

    Hi, I was using Window XP with Adobe Acrobat Pro 8. It's running pretty well. I just got a new PC with Window Vista Enterprise. When I installed the Adobe, I got problem asking for "AdobePDF.dll". Yes, I did hotfix #930627 and updated Adobe to 8.1.1 but there is still error. I can't convert the webpage to PDF in IE. I checked the plug-in in IE, all the PDF plug-ins are enabled. But if I clicked on the Adobe tool bar in IE, none of the menus responses. Same thing happens to the popup PDF menu.
    Can anybody help me out?
    Thanks.

    http://kb.adobe.com/selfservice/viewContent.do?externalId=329345
    copy the above link into a web page has the following information, so try one or all of the following. Its usually a config problem and the adobe support people were not very helpful in finding the answer, but hopefully the following will resolve the issue
    PDFMaker icons are missing in Internet Explorer (Acrobat 6 and 7 on Windows)
    Issue
    The PDFMaker icons are missing in Internet Explorer.
    Detail
    You are using Acrobat 6 or 7 on Windows.
    Solutions
    Do one or more of the following solutions:
    Solution 1: Unlock the Internet Explorer toolbar.
    To determine if the toolbar is locked and unlock it if necessary:
    1. Open Internet Explorer.
    2. Choose View > Toolbars:
    -- If the Lock The Toolbars option is selected, then click Lock The Toolbars to clear the check mark.
    -- If the Lock The Toolbars option is not selected, then the toolbars are already unlocked.
    3. Close Internet Explorer and then re-open it.
    Solution 2: Set Internet Properties to enable third-party browser extensions.
    1. Close Internet Explorer.
    2. Open Acrobat and choose Edit > Preferences.
    3. Choose Internet from the list of categories on the left, and then click the Internet Settings button.
    4. In the Internet Settings window, click the Advanced tab.
    5. Under the Browsing section, select "Enable third-party browser extension (requires restart)" and Click OK.
    6. Start Internet Explorer.
    Solution 3: Do a repair of Acrobat.
    1. Start Acrobat.
    2. Choose Help > Detect And Repair.
    3. When the repair process is complete, restart your computer.
    Solution 4: Make sure PDFMaker for Internet Explorer is installed properly.
    1. Choose Start > Settings > Control Panel and double-click Add/Remove Programs (Windows 2000), or choose Start > Control Panel and double-click Add Or Remove Programs (Windows XP).
    2. Click Adobe Acrobat [version] and choose Change. You will enter the Acrobat Setup.
    3. Choose Modify from the Setup dialog box.
    4. Expand Create Adobe PDF.
    5. Click the Acrobat PDFMaker menu and choose "This feature, and all it's subfeatures, will be installed on local hard drive."
    6. Click Next, and then click Update.
    Solution 5: Disable Firewall, Antivirus, or Internet Blocker software.
    Certain protection programs prevent plug-ins from loading in Internet Explorer. Disable any such software and restart Internet Explorer.
    Original VersionsAcrobat Professional 6.0Acrobat Professional 7.0Acrobat Standard 6.0Acrobat Standard 7.0
    TechNote DetailsLast Update: 01-04-2007
    ID: 329345
    OS: Windows
    Permanent Link: http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=329345
    Products Affected:
    Acrobat Professional

  • Adobe Acrobat X - convert outlook email to pdf and include attachments as pdf

    Is there a way to save an Outlook email as a PDF and include attachments as extra pages within the same PDF? I know I can convert an email to PDF and it will include the attachments as links.  My end users feel that their clients won't understand the link feature, and/or the paper clip on the side pane.  They'd rather convert an email and have it's attachments converted also, making the pdf an email message + converted attachments....all in one process.  The only way currently is to open each attachment and convert them individially, then combine the email pdf and attachment pdf together.  Too many steps involveed there.
    make sense?
    Thanks,
    Jon Wooten

    Same question here, but for Lotus Notes!! Seems ridiculously simple.

  • CONVERT SCANNED FILE TO PDF AND SEND TO EMAIL!

    I got many files that were scanned in (110) to be exact.  I need to know how to convert the scanned files to pdf and then send them to an email.  Thanks      Marie

    What is the format (file type) of these scanned docs?

  • Converting from Word to PDF and printer settings

    I have a program that writes letters automatically in Word and if we have a PDF file as an enclosure when the letter prints, it actually converts the word document as a whole to a PDF. This part works great, however, when the letter begins with Word we have the Page setup for the printer to print the first page on letterhead (tray 1) and all pages after to plain paper (tray 2). When the word document converts to pdf, it is printing everything from tray 1 which is letterhead.
    Is there any way to convert a document to pdf and keep the page settings as well?
    Thanks for any input!

    Don't have an answer. However, you might consider creating the WORD document so that the letterhead is built in and you do not need the paper.

  • How can I convert web page to PDF? When I upgraded to 4, it does not work.

    Since I upgraded to firefox 4 I can not convert web page to PDF, before there was a place in the upper left corner that said convert to PDF. If there is not a way to do this in 4 then how can I go back to the old firefox. If I can't I guess I will just uninstall FireFox.

    Moved to Creating, Editing & Exporting PDFs

  • We use a doc template to create a purchased part spec document and then save them as pdf formatted files.  These part spec documents are also appended with the datasheets for these purchased parts.  When we want to update/revise the document, is there a m

    We use a doc template to create a purchased part spec document and then save them as pdf formatted files.  These part spec documents are also appended with the datasheets for these purchased parts.  When we want to update/revise the document, is there a method, using Acrobat, to make those updates to the pdf, or must we go back to the doc template and basically generate a new document?
    Also, our resulting pdf documents aren't searchable.  How can we generate pdf documents that are searchable?  I may want to search for a part value or name within the body of these pdf documents, but currently can't do that...very inconvenient.
    Can you assist?

    Not totally sure about the search issue. A lot depends on how you created the PDF and what is in the datasheets you attached (like are they graphics?). The doc portion should be searchable as long as you used print to the Adobe PDF printer or PDF Maker. For your use, it may be that the print is adequate. However, the result should be searchable (unless maybe you had a form with filled in fields and created the PDF with PDF Maker. I think the form data may be retained in form fields and the fields are not searchable. In that case, a print might be a better procedure. (it would help to know the versions of WORD and Acrobat as well as the exact process you used to create the PDF.)
    If the appended data sheets do not change, then you might try opening the original PDF and then using Replace Pages to replace the file created from the DOC file.

  • HT203180 shows (I already of 5 of them) now it says they can't be played on my ipod, and I purchased them from Itunes? I don't understand why they won't work?

    I purchased the remainder of shows (I already of 5 of them) for a TV series now it says they can't be played on my ipod, and I purchased them from Itunes? I don't understand why they won't work? I tried the conversion but it's greyed out and not chooseable. But again purchased from itunes so they should work according to the above article. Can anyone help me?

    Dracwolley wrote:
    They can. The video needs to be converted, though. If it's in your library, just go to Advanced (in the top menu), then click on "Make iPod/iPhone Version." Wait a while, and when it's done, click and drag. Or for a quicker alternative and less space lost on the iPod, download Handbrake here.
    Yep.

  • How can i convert video files from my mac to watch them on my iphone?, how can i convert video files to watch them on my iphone?

    how can i convert video files from my mac to watch them on my iphone?, how can i convert video files to watch them on my iphone?

    Turns out the answer to that question changes if you ask it more than 4 times, so ask it again....
    The answer depends on the type of video files you want to convert.  If they are DRM protected commercial videos, no help can be given here.  Google.

  • In My iphone 5s,i have disabled automatic download from whatsapp app.So whichever images,video i feel is good i download them and then save them to my camera roll section.So i want to know how can i remove the images from cache of my phone.

    In My iphone 5s,i have disabled automatic download from whatsapp app.So whichever images,video i feel is good i download them and then save them to my camera roll section.So i want to know how can i remove the images from cache of my phone which are downloaded and not saved,but they remain in cache.
    Even in some apps i have data which i want to remove,but cant find a way to remove them and they are in my cache eating up my memory.

    Try assigning Queen as the Album Artist on the compilations in iTunes on your computer.

  • Hello. I recently purchased a macbook pro, and is, and learn some things. and I have apple tv, and the question is can I send a movie from macbook and surf the Internet simultaneously without interrupting the movie?

    hello.
    I recently purchased a macbook pro, and is, and learn some things. and I have apple tv, and the question is can I send a movie from macbook and surf the Internet simultaneously without interrupting the movie?

    Welcome to Apple Support Communities
    You can't do that in AirPlay Mirroring. AirPlay Mirroring can only mirror your MacBook's display, so you can't do one thing in your Mac's display and another in the TV.
    This is a feature that will arrive in Mavericks. Read > http://www.apple.com/osx/preview

  • I have installed iOS7 on my ipad 4, now my ipad recognises PDF's emailed to me as jpegs and cannot save them into iBooks, any solutions? iPad (4th gen) Wi-Fi   Cellular (MM), iOS 7

    I have installed iOS7 on my ipad 4, now my ipad recognises PDF's emailed to me as jpegs and cannot save them into iBooks, any solutions?
    iPad (4th gen) Wi-Fi + Cellular (MM), iOS 7

    Adjusting the date or time didn't do anything for me either. I'm guessing my two options are to either do the full restore from scratch and not apply any backup ... Or possibly wait for an iOS update that might resolve this issue.
    I'm not that much of an avid twitter user that I need it implemented natively in all my devices - so for now I'll probably value all my game save data, internal settings in apps e.t.c. over that functionality (or over the amount of work it would be to get me back to where I am now after a full wipe). I'll see what happens after the next iOS delta update. I'll reevaluate the full wipe after that if the issue hasn't been resolved

  • Dreamweaver Can I import muse pages into Dreamweaver and "up grade" them

    Dreamweaver Can I import muse pages into Dreamweaver and "up grade" them
    Muse is terrific for basic pages, but forms, and scripts require more capability
    Also is there anyone watching this who does freelance work on web design?

    13:46:44
    Thanks Murray
    Yes I have looked at the Muse code and also looked at it in a plain html editor, (Been using Arachnophilia for about 15 years)
    and the code is a mess.
    You are dead right. I figured I would start with Muse to get some of the concepts sorted out, and that has worked, but I know I will need to use DW for my main site
    CanLaw has about 1500 pages all done in html with tables….
    time to play catch up
    Ton of work, but I have a masochistic bent anyway
    But in the long run life will be simpler if I make the effort now.
    Kirby
    [Promotional material removed by moderator]

Maybe you are looking for