Can convert HTML to PDF in website  ?What software  do I need to buy?

Hi all,
I'd like to insert save to PDF button in my developed web site.So is there anyone can help to point me , Whicih Languages(ASP/PHP) do I need to develop and which acrobat server do I need to installed? and currently , I embedded
the flash for my web site contents and also I'd like to insert Save to PDF button in my flash based website,is it can really work?Pls help me out.
Thanks in advance.

You need some pdf library to do this, this can be very
expensive depending on the solution you go for.
Post on the Acrobat forum if you need more info:
http://www.adobeforums.com/cgi-bin/webx?14@@.ee6b2ed

Similar Messages

  • How to convert html to pdf using acrobat sdk 8.0?

    hi
    I am a beginner of acrobat sdk .
    I want to know How to use acrobat sdk 8.0 to convert html to pdf?
    herere some questions :
    1:How to support navigation inside PDF file that generated using acrobat sdk 8.0? For example: theres catalog in the top of HTML file, customer hopes can navigate inside the PDF file just like navigating inside the HTML file.
    2:How to support operating some controls in the PDF file that generated using acrobat sdk 8.0? For example: therere some drop down list and text box in HTML file, customer hopes can input text in the text box, click the drop down list to see available options in it just like in HTML file.
    Thanks in advance for any help and suggestion.

    Hello,
    I want a system to re-brand my 37 pages PDF for affiliates.
    I want a php dynamic link in the PDF online in order to personalize automatically the PDF for each affiliate. I need to change 2 links each time. The affiliate ID and the Paypal email (payment button) in page 36.
    Can you help?
    Please let me know
    Thank you
    Alex
    PS My system is online and i can give you the url if it helps.

  • Problem with converting html to pdf using LiveCycle ES Java API

    I am using this code to convert html to pdf.
    * 1. adobe-generatepdf-client.jar
    * 2. adobe-livecycle-client.jar
    * 3. adobe-usermanager-client.jar
    * 4. adobe-utilities.jar
    * 5. wlclient.jar
    import java.io.File;
    import java.util.Properties;
    import com.adobe.idp.Document;
    import com.adobe.idp.dsc.clientsdk.ServiceClientFactory;
    import com.adobe.idp.dsc.clientsdk.ServiceClientFactoryProperties;
    import com.adobe.livecycle.generatepdf.client.GeneratePdfServiceClient;
    import com.adobe.livecycle.generatepdf.client.HtmlToPdfResult;
    public class ConvertHTML {
       public static void main(String[] args)
            try{
            //Set connection properties required to invoke LiveCycle ES                             
            Properties connectionProps = new Properties();
            connectionProps.setProperty(ServiceClientFactoryProperties.DSC_DEFAULT_EJB_ENDPOINT, "t3://localhost:7001");
            connectionProps.setProperty(ServiceClientFactoryProperties.DSC_TRANSPORT_PROTOCOL,Service ClientFactoryProperties.DSC_EJB_PROTOCOL);       
            connectionProps.setProperty(ServiceClientFactoryProperties.DSC_SERVER_TYPE, "WebLogic");
            connectionProps.setProperty(ServiceClientFactoryProperties.DSC_CREDENTIAL_USERNAME, "administrator");
            connectionProps.setProperty(ServiceClientFactoryProperties.DSC_CREDENTIAL_PASSWORD, "password");
            //Create a ServiceClientFactory instance
            ServiceClientFactory factory = ServiceClientFactory.createInstance(connectionProps);
              //Create a GeneratePdfServiceClient object
            GeneratePdfServiceClient pdfGenClient = new GeneratePdfServiceClient(factory);
           //Get an HTML document to convert to a PDF document a
            String inputFileName = "http://www.adobe.com";
            //String inputFileName = "C:\\Documents and Settings\\venkat\\Desktop\\Adobe.htm";
            String securitySettings = "No Security";
            String fileTypeSettings = "Standard";
    System.out.println("one");
            //Convert HTML content to a PDF document
            HtmlToPdfResult result = pdfGenClient.htmlToPDF2(inputFileName, fileTypeSettings, securitySettings, null, null);
    System.out.println("two");         
            //Get the newly created document
            Document createdDocument = result.getCreatedDocument();
            //Save the PDF document as a PDF file
            createdDocument.copyToFile(new File("C:\\test.pdf"));
        catch (Exception e) {
            System.out.println("Error OCCURRED: " + e.getMessage());
            e.printStackTrace();
    I can able to compile this class but while running i am getting error like below.
    Error OCCURRED: Internal error.
    ALC-DSC-000-000: com.adobe.idp.dsc.DSCRuntimeException: Internal error.
            at com.adobe.idp.dsc.provider.impl.ejb.EjbMessageDispatcher.doSend(EjbMessageDispatcher.java
    :160)
            at com.adobe.idp.dsc.provider.impl.base.AbstractMessageDispatcher.send(AbstractMessageDispat
    cher.java:57)
            at com.adobe.idp.dsc.clientsdk.ServiceClient.invoke(ServiceClient.java:208)
            at com.adobe.livecycle.generatepdf.client.GeneratePdfServiceClient.htmlToPDF2(GeneratePdfSer
    viceClient.java:666)
            at ConvertHTML.main(ConvertHTML.java:84)
    Caused by: java.rmi.RemoteException: Remote EJBObject lookup failed for 'ejb/Invocation'; nested exc
    eption is:
            org.omg.CORBA.COMM_FAILURE:   vmcid: SUN  minor code: 203  completed: No
            at com.adobe.idp.dsc.provider.impl.ejb.EjbMessageDispatcher.initialise(EjbMessageDispatcher.
    java:101)
            at com.adobe.idp.dsc.provider.impl.ejb.EjbMessageDispatcher.doSend(EjbMessageDispatcher.java
    :130)
            ... 4 more
    Caused by: org.omg.CORBA.COMM_FAILURE:   vmcid: SUN  minor code: 203  completed: No
            at com.sun.corba.se.impl.logging.ORBUtilSystemException.writeErrorSend(Unknown Source)
            at com.sun.corba.se.impl.logging.ORBUtilSystemException.writeErrorSend(Unknown Source)
            at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.writeLock(Unknown Source)
            at com.sun.corba.se.impl.encoding.BufferManagerWriteStream.sendFragment(Unknown Source)
            at com.sun.corba.se.impl.encoding.BufferManagerWriteStream.sendMessage(Unknown Source)
            at com.sun.corba.se.impl.encoding.CDROutputObject.finishSendingMessage(Unknown Source)
            at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.finishSendingRequest(Unknown Sour
    ce)
            at com.sun.corba.se.impl.protocol.CorbaClientRequestDispatcherImpl.marshalingComplete1(Unkno
    wn Source)
            at com.sun.corba.se.impl.protocol.CorbaClientRequestDispatcherImpl.marshalingComplete(Unknow
    n Source)
            at com.sun.corba.se.impl.protocol.CorbaClientDelegateImpl.invoke(Unknown Source)
            at com.sun.corba.se.impl.protocol.CorbaClientDelegateImpl.is_a(Unknown Source)
            at org.omg.CORBA.portable.ObjectImpl._is_a(Unknown Source)
            at weblogic.corba.j2ee.naming.Utils.narrowContext(Utils.java:126)
            at weblogic.corba.j2ee.naming.InitialContextFactoryImpl.getInitialContext(InitialContextFact
    oryImpl.java:94)
            at weblogic.corba.j2ee.naming.InitialContextFactoryImpl.getInitialContext(InitialContextFact
    oryImpl.java:31)
            at weblogic.jndi.WLInitialContextFactory.getInitialContext(WLInitialContextFactory.java:41)
            at javax.naming.spi.NamingManager.getInitialContext(Unknown Source)
            at javax.naming.InitialContext.getDefaultInitCtx(Unknown Source)
            at javax.naming.InitialContext.init(Unknown Source)
            at javax.naming.InitialContext.<init>(Unknown Source)
            at com.adobe.idp.dsc.provider.impl.ejb.EjbMessageDispatcher.initJndiContext(EjbMessageDispat
    cher.java:213)
            at com.adobe.idp.dsc.provider.impl.ejb.EjbMessageDispatcher.getJndiContext(EjbMessageDispatc
    her.java:226)
            at com.adobe.idp.dsc.provider.impl.ejb.EjbMessageDispatcher.initialise(EjbMessageDispatcher.
    java:87)
            ... 5 more
    can u plz give me some way to do the convertion.

    Yes Sir.....Thanks for ur suggestion.....
    But i didn't find exact solution..well..yes i found some but not exactly there were not in the way i required...I jus need to convert HTML to PDF using iText API for java.....I already used some classes in that like HTMLParser.....etc..
    So Any thing else...Any one...Sure can help me in this................

  • Converting HTML to PDF substitutes fonts

    Hello!
    On one of our workstations that is running Acrobat 9 Pro, whenever the user converts from an HTML document to a PDF for proofing purposes, we're getting different fonts in the output to than we had in the input. For example, any text in Arial Black in the HTML document is Arial Bold in the resultant PDF. Attached are screenshots of the before and after.
    Before:
    After:
    As these are proofs that the client is supposed to be approving, this needs to be fixed quickly. All other machines in the office can convert these to PDF just fine, so it appears to be only the one machine. I uninstalled and reinstalled the software to no avail.
    Please advise.

    Does the errant machine actually have the Font available.
    Check the list of fonts avaiable in system in the machine acting up.
    Then check in the system  on a machine working.
    If there are differences add the ones missings on the defective machine from the good machine.
    Then try.
    If a font is missing Acrobat will attempt to substitute to nearest similar font it can find.

  • Is anybody programmatically converting HTML to PDF? If so, how?

    Is anybody programmatically converting HTML to PDF? If so, how?
    With InDesign, or something else?
    As long as the application (InDesign or something else) has a command-line interface, i'd like to know about it.
    Am using .NET, but we still want to know what you're doing even if you aren't.
    Source data is HTML pages from random sources, so it's not necessarily XHTML unfortunately, though i could tidy it into a consistent form.

    thanks, but what i'm looking for here is programmatic usage -- that is, scripted or command-line -- not having a human user choosing menu options, etc
    so as to your two suggestions ...
    this would appear to be NOT programmatic ...
    > And Acrobat will install a PDF convert toolbar for Internet Explorer to do this right from the browser.
    and this might or might not be possible to program -- i don't know if people are somehow running Acrobat programmatically, would appreciate further information
    > Acrobat has a Create PDF from Web Page function

  • Trouble in fop(convert html 2 pdf) source.

    to convert html 2 pdf file I found the article from javaworld.
    (http://www.javaworld.com/javaworld/jw-04-2006/jw-0410-html.html)
    unfortunately I can't seem to find the two classes below even though import all fop 0.94 library files.
    are there something I'm missing?
    Thanks.
    import org.apache.fop.apps.Driver;
    import org.apache.fop.tools.DocumentInputSource;

    Much thanks for your timely reply.  The scanner software requires that one must scan to an application.  The configuration has to point to an executable.  In program files I must select an executable,  in this case acrobat.exe.   Have been using this for years and never have seen a problem.  Continues guidance sought.

  • A tool can convert HTML to Excel

    Hi All , Are you using report 6i and want to out put report in excel format? If you are , a free software which can convert HTML to Excel is available .
    The software is designed to print very large report , Now a wonderful function is added to software , Thru which you can convert HTML to Excel easily . But the function is still basal , It will do better in the future .
    For more information, Please visit
    http://repbrowser.freewebpage.org/
    Thank you ,
    Regards

    Hi,
    the only other ways (as I know), if you really want to convert is
    a) write a parser to convert html into csv(xls)
    b) use a html2csv script on the os level
    like:
    http://sebsauvage.net/python/html2csv.py (or just google html2csv)
    c) use excel (data source web; local file: "file:///C:/test.htm"
    Kind Regards,
    Dirk

  • I upgraded my plan to 89.00 a year so i can convert word to pdf but it wont let me make changes

    i upgraded my plan to 89.00 a year so i can convert word to pdf. But it won't allow me to make changes. Do i have to pay additional?

    Hi Karen Tennyson,
    May I know is this happening with all files or with a specific file?
    Would you send your PDF document to [email protected] as an email attachment? 
    I will check it from my end.Please add the link to this forum post for reference.
    Regards,
    Florence

  • A tool for Oracle Report , It can convert HTML to Excel

    Hi All , I suggest you a freeware which can convert HTML to Excel . It can also split HTML file into each page and print partly you can download it from http://repbrowser.freewebpage.org/
    Regards

    Hi Albiz,
    try this:
    # Defaults to comma delimiter
    $Drives | Select PSChildName, PSDrive, PSprovider, PSIsContainer | Export-Csv "output.csv" -NoTypeInformation
    # Add custom Delimiter
    $Drives | Select PSChildName, PSDrive, PSprovider, PSIsContainer | Export-Csv "output.csv" -NoTypeInformation -Delimiter ";"
    Depending on your region you may want to change the delimiter, so your Excel automatically detects the format and presents it as a table. By Adding just the names of the properties you want in the Select Block you can cut down on total data and chose the
    order in which they are exported.
    Cheers,
    Fred
    There's no place like 127.0.0.1

  • What software do i need to convert AVCHD mts/mts2 files to import to iMovie

    What software do i need to convert AVCHD mts/mts2 files to import to iMovie

    As Kirk says, if you have your camera, you can attach it directly.
    Further, if you preserved the entire file structure of your camera (not just the .mts files, but also the folders on the camera), then you can import from that via FILE/IMPORT FROM CAMERA ARCHIVE.
    When you import from a camera, it is recommended that you keep a camera archive so you always have the originals available.
    If you have the .mts files out of context, you will need a third party app to convert. Two that I know of are ClipWrap and Voltaic HD. You should convert the files to Apple Intermediate Codec. And then use FILE/IMPORT/MOVIE.

  • HT4759 When I try to run iCloud for my PC, an error comes up that says I need windows XP or later.  This article says that windows7 will work.  I have windows7, but I can't install or run iCloud. What else do I need to do?

    When I try to run iCloud for my PC, an error comes up that says I need windows XP or later.  This article says that windows7 will work.  I have windows7, but I can't install or run iCloud. What else do I need to do?

    Can you attach a screenshot?
    *http://en.wikipedia.org/wiki/Screenshot
    *https://support.mozilla.org/kb/how-do-i-create-screenshot-my-problem
    Use a compressed image type like PNG or JPG to save the screenshot.
    Reload web page(s) and bypass the cache to refresh possibly outdated or corrupted files.
    *Press and hold Shift and left-click the Reload button.
    *Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    *Press "Command + Shift + R" (MAC)
    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox/Tools > Options > Privacy > Cookies: "Show Cookies"
    SeaMonkey

  • What software do I need to purchase/subscribe?

    I'm planning to do the $143.88 subscription for PLUS on FormsCentral.  I will be creating probably no more than 15 forms per year.  I will need to create forms, maintain them, do reports and gather data on membership information, registration of events/conferences and simple surveys.  What software do I need to purchasein addition to my yearly subscription on FormsCentral? Adobe Acrobat X? Adobe FormsCentral?  I'm not getting a clear picture on what is necessary as I read through the site.  I may need to have access to maintain the forms on both my laptop and my desktop.
    Thanks,
    Mike
    [email protected]

    Hi Mike;
    You don't need anything in addition to the subscription to FormsCentral.  If you want to distribute your forms as PDF as well as (or instead of) on the web you might want Adobe Acrobat XI so you can further edit the PDFs, but that is not necessary and is really up to your needs.
    If you were to consider Acrobat you should look at this subscription "Acrobat Plus" which gives you Adobe Acrobat XI on a subscription basis plus some great online services including FormsCentral: https://www.acrobat.com/acrobatplus/en/home.html
    When you use FormsCentral in a web browser you can access it from any computer or laptop and have access to all the same data, one of the great things about a SAAS (software as a service).  The one exception to that is in the Acrobat Plus subscription you get the desktop application of Acrobat to install which would only work on two computers, the included services would be available from any computer.
    Thanks,
    Josh

  • What software do I need to manage my itunes on my HP laptop

    What software do I need on my HP laptop to be able to go into itunes and manage my phone, as far as pictures, and calendar, and such?

    To start off with, you will need to download iTunes. Make sure that you download the correct version, Windows, and if you have 32-bit or 64-bit. Pictures taken with the iPhone are imported to the computer via Scanner and Camera Wizard in Windows, or can also be copied via Windows Explorer in Computer. Photos are then synced to the computer via iTunes by selecting a folder on the computer that contains photos and they are copied to the computer.
    Calendar has to be handled by a supported application. That can be Outlook 2003 or 2007. Other choices include using Google calendar, MobileMe,etc. The latter allow for OTA syncing of calendar. Contacts require a supported application as well, those include Outlook 2003 or 2007, or Windows Address book in Vista, or Windows Mail in Windows 7. You also have the option as above for Google or MobileMe.
    Information about what you might want to use is found on the Apple website and descibes the supported applications.

  • What software do i need to open downloads, what software do i need to open downloads

    what software do i need to open downloads, what software do i need to open downloads

    For most Mac programs you download in the .dmg format just double clicking them will open them. For .zip files you can use a tool like Stuffit Expander. There are other tools listed here. Hope this helps. P.S. for .Pdf files just right click on the file open with Preview. Most text files can be opened with Text Edit, again right click open with....Text Edit. And as Kenneth is saying if you open a text file and you see code, the file wasn't meant to be opened, if you need to edit that file with a program like Text Wrangler, or SubEthaEdit.
    Regards,
    Joseph

  • My company have purchased one I Creative cloud for one years. But now, always my company want to buy also anthers n°3 Photoshop application from use always in our office below our comfy. Can we have a privilege cost for the company or we need to buy this

    My company have purchased one I Creative cloud for one years (It's the first time for us) Of course we have pay this product with a price of company but there are new clients adobe. But now, always my company want to buy also anthers n°3 Photoshop application from use always in our office below our account already created. Can we have a privilege cost forecast for company or we need to buy this product as if it is the first time and pay the maximum price for one years?
    Thanks

    Cloud License allows 2 activations http://www.adobe.com/legal/licenses-terms.html
    -Install on a 2nd computer http://forums.adobe.com/thread/1452292?tstart=0
    -Windows or Mac does not matter... 2 on the same operating system, or 1 on each
    -Both subscriptions MAY be in use at the same time https://forums.adobe.com/thread/1683787

Maybe you are looking for

  • Job for V3 updates failing for inventory

    Dear all, We have implemented inventory in BW and are extracting data from R/3 using LO extraction method. The V3 update is scheduled in R/3 using 'Queued Delta' method. It has been running fine for last six months or so but suddenly the V3 update jo

  • [SOLVED]Random system freezes

    Hello, My Dell Studio 1558 runs ArchLinux with XFCE. Everything is fine except two problems: Random system freezes and slow wlan download speed. I think that those problems might be related. Since some updates ago my Laptop will just randomly freeze.

  • Replace non-english characters function

    Hi folks, I have a text which includes non english characters. Is there any trick, how can I replace those characters with "closest" english character? Examples: "Hytölä"  to become "Hytola" "Säynatsälo" to become "Säynatsälo" etc ... I was thinking

  • Trouble adjusting brightness in Windows 8.1

    I know there are other threads on this, but none of the solutions seems to be working for me. I manage multiple MBP-13in Retinas (Late 2013) and I'm having trouble adjusting the brightness of the laptop screen on all of them. I have tried everything

  • Can I set the TOC to display all levels, not just one?

    I'm in RH 8 and using Webhelp. When I generate, I have 2 levels of books. When I click on a book at level 2, it closes another book that may be open at level 2. Is there a way to make all books and pages and all topics display when generated? Thank y