Export HTML to PDF file

It would be nice if Ajax developers could export or save the
content of the htmlcontrol or an iframe to a pdf document.
I also beleive that AIR should have the ability to render PDF
documents without having to install the PDF reader software.
See what JavaFx has done with PDF
http://sellmic.com/blog/2007/05/11/javafx-pdf-viewer-demo/

It would be nice if Ajax developers could export or save the
content of the htmlcontrol or an iframe to a pdf document.
I also beleive that AIR should have the ability to render PDF
documents without having to install the PDF reader software.
See what JavaFx has done with PDF
http://sellmic.com/blog/2007/05/11/javafx-pdf-viewer-demo/

Similar Messages

  • Exporting to Separate PDF files based on Group

    Post Author: Tanya Sherin
    CA Forum: Exporting
    Hello,
    I have a report that needs to exported into separate pdf files based on one of the groups already established in the report. I would like to automate this process as much as possible because the report size. Has anyone encountered this need?
    Thanks for your assistance.
    Regards,
    Tanya

    Post Author: synapsevampire
    CA Forum: Exporting
    You'll need CR XI or a third party solution.
    Here's one I suggest:
    http://www.milletsoftware.com/Visual_CUT.htm
    Contact Ido (owner) for a free trial and confirmation that it meets your needs.
    -k

  • Exporting Report to PDF file

    I am interested in exporting a html db report with charts to a pdf file. Is this possible? If not what license/package do I need to do it?
    I am not an oracle expert so any direction would be appreciated..

    This link is broke. Try: http://htmldb.oracle.com/pls/otn/f?p=18326:44:::::P44_ID:1522
    Search this forum for PDF.
    Mike
    Message was edited by:
    marife

  • Exporting HTML to PDF

    Our department is upgrading to Dreamweaver 8. I would like to
    ask the experts out there if this tool has the capability to export
    the whole website into another format like pdf. The pages would
    have to be linked like chapters in a book. If we could convert our
    website to a pdf file and then post that file on our website, we
    could then eliminate editing in a separate tool (framemaker) and we
    could avoid inconsistancies between the two.

    >>If we could convert our website to a pdf file
    If you do that you won't have a website. You will have a PDF.
    If all you
    want is a gigantic PDF to post to a website generate it from
    Framemaker.
    Dreamweaver creates web pages (HTML, PHP, CFM, etc.) not PDF.
    But I can't imagine why you want just one huge PDF instead of
    an actual
    website. Maybe if you tell us what your ultimate goal is we
    can help you
    figure out how to build a website to reach it.
    Walt
    "dia5000" <[email protected]> wrote in
    message
    news:ern9ta$54s$[email protected]..
    > Our department is upgrading to Dreamweaver 8. I would
    like to ask the
    > experts
    > out there if this tool has the capability to export the
    whole website into
    > another format like pdf. The pages would have to be
    linked like chapters
    > in a
    > book. If we could convert our website to a pdf file and
    then post that
    > file
    > on our website, we could then eliminate editing in a
    separate tool
    > (framemaker)
    > and we could avoid inconsistancies between the two.
    >

  • Indesign CS5 with PNG file exporting as a PDF file but the text is random bold

    Hello,
    I am looking for help to teach me how to solve this problem.
    I use Indesign CS5 to make a proposal. I set the page marker and sub title in the master page.
    Of course, there are including dozens of pages and some pictures here.
    And one of these page, I place a PNG file and type some text.
    When I export this file as a PDF file, one page, which is including PNG file, the text becomes random bold.
    Therefore, I have used PSD file to cover the PNG file. But finally getting the same problem.
    So does anyone can help me how to solve this problem?
    Thanks so much for your help.

    This sounds like a known issue with transparency on the page. When transparency is introduced ID uses a differnt method, apparently, of rendering text on that page and it appears bolder on screen and can print that way on low resolution devices like desktop printers. It usually is not a problem on press output.
    The only way to mainatian consistency would be to introduce transparency on all pages, perhaps by adding a transparent object to your master page.

  • Export data to pdf file in ALBPM ?

    Hi,
    Can anyone tell me how to export all my data that are rendered in a jsp file to a PDF file in ALBPM
    i.e I want all my data that are there in jsp page, onclick of a button all those data will be printed/posted on a pdf file with a specified file name.
    Regards,
    Bibhu

    I have used the iText java library to create PDF files in ALBPM 5.7 and OBPM 10gr3. There is a bit of cut and paste programming involved, but it worked out great for us.
    http://itextpdf.com/
    Here is a short code snippet (about 150 lines) so you can see what kind of code would be required
        IText.Com.Lowagie.Text.Font bold20 = IText.Com.Lowagie.Text.Font(IText.Com.Lowagie.Text.Font.HELVETICA, 20,
                                                                        IText.Com.Lowagie.Text.Font.BOLD);
        IText.Com.Lowagie.Text.Font bold9 = IText.Com.Lowagie.Text.Font(IText.Com.Lowagie.Text.Font.HELVETICA, 9,
                                                                        IText.Com.Lowagie.Text.Font.BOLD);
        IText.Com.Lowagie.Text.Font bold8 = IText.Com.Lowagie.Text.Font(IText.Com.Lowagie.Text.Font.HELVETICA, 8,
                                                                        IText.Com.Lowagie.Text.Font.BOLD);
        IText.Com.Lowagie.Text.Font italic9 = IText.Com.Lowagie.Text.Font(IText.Com.Lowagie.Text.Font.HELVETICA, 9,
                                                                        IText.Com.Lowagie.Text.Font.ITALIC);
        IText.Com.Lowagie.Text.Font italic8 = IText.Com.Lowagie.Text.Font(IText.Com.Lowagie.Text.Font.HELVETICA, 8,
                                                                        IText.Com.Lowagie.Text.Font.ITALIC);
        IText.Com.Lowagie.Text.Font normal20 = IText.Com.Lowagie.Text.Font(IText.Com.Lowagie.Text.Font.HELVETICA, 20,
                                                                        IText.Com.Lowagie.Text.Font.NORMAL);
        IText.Com.Lowagie.Text.Font normal12 = IText.Com.Lowagie.Text.Font(IText.Com.Lowagie.Text.Font.HELVETICA, 12,
                                                                        IText.Com.Lowagie.Text.Font.NORMAL);
        IText.Com.Lowagie.Text.Font normal9 = IText.Com.Lowagie.Text.Font(IText.Com.Lowagie.Text.Font.HELVETICA, 9,
                                                                        IText.Com.Lowagie.Text.Font.NORMAL);
        IText.Com.Lowagie.Text.Font normal8 = IText.Com.Lowagie.Text.Font(IText.Com.Lowagie.Text.Font.HELVETICA, 8,
                                                                        IText.Com.Lowagie.Text.Font.NORMAL);
        // step 1:
        // we create a writer that listens to the document
        // and directs a PDF-stream to a file or outputstream
        //fileOut = FileOutputStream(arg1 : &quot;test.pdf&quot;);
        //byteOut = ByteArrayOutputStream();
        // step 2: set the page size
        rec = Rectangle(arg1 : 8.5 * 72, arg2 : 11 * 72);
        //rec.setGrayFill(1.0f);
        // step 3: creation of a document-object
        document = IText.Com.Lowagie.Text.Document(rec);
        // step 4:
        // we create a writer that listens to the document
        //PdfWriter writer = PdfWriter.getInstance(arg1 : document, arg2 : Java.Io.FileOutputStream("./HelloWorld.pdf"));
        PdfWriter writer = PdfWriter.getInstance(arg1 : document, arg2 : byteOut);
        // step 5: we open the document
        document.open();
        //document.setMargins(arg1 : 0.2f, arg2 : 0.2f, arg3 : 0.3f, arg4 : 0.3f);
        PdfContentByte pdfCByte = writer.getDirectContent();
        pdfCByte.rectangle(25,25, 562, 742);
                       //pdfCByte.moveTo(140, 700);
                   //pdfCByte.lineTo(240, 700);
                   //pdfCByte.lineTo(240, 800);
                   //pdfCByte.lineTo(140, 800);
        pdfCByte.closePathStroke();
        //pdfCByte.setGrayFill(1.0f);
        // step 6a: Create
        // step 6: add contents to the page
        table = PdfPTable(1);
        table.setWidthPercentage(80);
        table.setHorizontalAlignment(Element.ALIGN_MIDDLE);
        emptyTable = PdfPTable(1);
        emptyTable.setWidthPercentage(arg1 : 100);
        emptyCell2 = PdfPCell(Paragraph(""));
        emptyCell2.setBorder(Rectangle.NO_BORDER);
        emptyTable.addCell(emptyCell2);
        para = Paragraph(30, "Data Data Data Example", normal20);
        cell = PdfPCell(para);
        cell.setHorizontalAlignment(Element.ALIGN_CENTER);
        cell.setBorder(Rectangle.NO_BORDER);
        table.addCell(cell);
        document.add(arg1 : table);
        document.add(emptyTable);
        document.add(emptyTable);
        document.add(emptyTable);
        table = PdfPTable(1);
        table.setWidthPercentage(80);
        table.setHorizontalAlignment(Element.ALIGN_MIDDLE);
        para = Paragraph(30, struct.headerInfo, normal9);
        cell = PdfPCell(para);
        cell.setGrayFill(0.85f);
        cell.setBorder(Rectangle.NO_BORDER);
        table.addCell(cell);
        document.add(arg1 : table);
        document.add(emptyTable);
        document.add(emptyTable);
        // Line #1 NEW Table
        table = PdfPTable(17);
        table.setWidthPercentage(100);
        para1 = Paragraph(30);
        p1 = Phrase ("Requested Date : ", bold9);
        SimpleDateFormat formatter;
        formatter = SimpleDateFormat("MM/dd/yyyy h:mm:ss a");
        evalDateStr = String.valueOf(Utils.notNullString( (object.requestDate==null)?"":object.requestDate.format(formatter : formatter)));
        p2 = Phrase ( evalDateStr, italic9);
        para1.add(p1);
        para1.add(p2);
        cell = PdfPCell(para1);
        cell.setGrayFill(0.85f);
        cell.setColspan(8);
        cell.setBorder(Rectangle.NO_BORDER);
        table.addCell(cell);
        emptyCell = PdfPCell(Paragraph(""));
        emptyCell.setGrayFill(1.0f);
        emptyCell.setBorder(Rectangle.NO_BORDER);
        table.addCell(emptyCell);
        para1 = Paragraph();
        p1 = Phrase ("Coordinates: ", bold9);
        para1.add(p1); 
        cell = PdfPCell(para1);
        cell.setGrayFill(0.85f);
        cell.setColspan(8);
        cell.setBorder(Rectangle.NO_BORDER);
        table.addCell(cell);
        // Line #2
        para1 = Paragraph(30);
        p1 = Phrase ("Contact : ", bold9);
        p2 = Phrase ( varContact   , italic9);
        para1.add(p1);
        para1.add(p2);
        cell = PdfPCell(para1);
        cell.setGrayFill(0.85f);
        cell.setColspan(8);
        cell.setBorder(Rectangle.NO_BORDER);
        table.addCell(cell);
        emptyCell.setGrayFill(1.0f);
        table.addCell(emptyCell);
        emptyCell.setGrayFill(0.85f);
        table.addCell(emptyCell);
        para1 = Paragraph();
        p1 = Phrase ("Latitude : ", bold9);
        p2 = Phrase (object.lat, italic9);
        para1.add(p1);
        para1.add(p2);
        cell = PdfPCell(para1);
        cell.setGrayFill(0.85f);
        cell.setColspan(7);
        cell.setBorder(Rectangle.NO_BORDER);
        table.addCell(cell); 
    //add the table to the document
        document.add(table);
    // close the document
        document.close();

  • Export Grid to PDF file In windows Store app using Xaml and C#

    I am working on windows store and have multiple data field  which I have to export to PDF  file 
    In wpf  project i easily export gridview data to pdf file but need help to do same thing in windows metro app.
    Thanks in Advance

    There is no in-box PDF writing API. You will need to find a third party component. If you search the forum there are several threads (as recent as yesterday) with discussing this with component suggestions.

  • InDesign export to single PDF files with variable Filename

    Hi there,<br /><br />I create a document with Data Merge which contains about 200 Pages. Now i want to export each page to a single PDF-File. Also the filename has to be generated from the placed content. The placed content are adresses. So i want to generate a filename with a static name. I got an ID, a static phrase and then a ZIP-Code. The Filename should look like this: <ID>September<ZIP Code>.pdf while ID and ZIP Code are fields from the datamerge.

    what you need is to operate throuh a loop.<br />for(i=0; i<app.activeDocument.pages.length;i++)<br />{<br /> //Assuming you labelled the textframe containing the ID with ID<br /> var myID = app.activeDocument.pages[i].textFrames.item("ID").contents;<br />//Assuming you labelled the textframe containing the ZIP with ZIP<br /> var myZip = app.activeDocument.pages[i].textFrames.item("ZIP").contents;<br /><br />var myPath = //something like "/disk/folder/" //Set a path to where you want to export the pdf<br />var myFileName = myID + myPath + myZip + ".pdf";<br />//Export to PDF - the forum is full of examples, you should find easily what you are asking for with search<br />} <br /><br />Loic

  • How to open an html or pdf file:

    hi dear all,
    i have a file html or pdf for user help. how to open it from my FORM button.
    i am using Form 10g.
    Thanks in advance.
    Muhammad Nadeem
    [email protected]

    thanks dear,
    here is different paths in this file:
    # Virtual path mapping for Forms Java jar and class files (codebase)
    AliasMatch ^/forms/java/(..*) "F:\DevSuiteHome_1/forms/java/$1"
    # Virtual path for JInitiator downloadable executable and download page
    AliasMatch ^/forms/jinitiator/(..*) "F:\DevSuiteHome_1/jinit/$1"
    # Virtual path for runform.htm (used to run a form for testing purposes)
    AliasMatch ^/forms/html/(..*) "F:\DevSuiteHome_1/tools/web/html/$1"
    # Virtual path for webutil
    AliasMatch ^/forms/webutil/(..*) "F:\DevSuiteHome_1/forms/webutil/$1"
    now which path i have to edit.
    Regards:
    Muhammad Nadeem

  • Export Fonts from pdf files

    Is there any way to export fonts from any pdf file?

    They will export in the original size of the image, not in the size that appears. I believe that Acrobat is simply dumping the TIFF or whatever as is.

  • ADF export table to PDF file?

    What is the easiest way to export a table to a PDF file. The catch is that tables will be generated randomly based on a user's query. Is there any way to generically export the produced resultset/table into a PDF format regardless of the content?
    I have searched the web and have not found something to do this generically (irrespective of the table content).
    Any ideas/suggestions/links to examples would be nice.
    P.S. I am new to ADF so please explain anything complicated.

    Thanks for your reply.
    The link you gave me requires me to access the backend datasource and what not.
    My original question asked for any possible method to convert a table to a pdf without dealing with any backend methods/databases.

  • Exporting to dynmic PDF file name

    Post Author: geraldo
    CA Forum: Exporting
    Hallo all,
    I'm using Crystal XI and looking for a solution to export reports into multiple PDF Files and using a dynamic database field name as the filename.pdfe.g. dynamic fiele is customer_id: 1234
    output should be 1234.pdf
    Is that possible.?
    Thanks

    Post Author: satyanat
    CA Forum: Exporting
    Hi,
    There may not be a direct way to export a report to multiple PDF files in a single shot.
    There is a work around but would need manual effort. Do you like to give a try?
    Create a group on Customer ID and enable the New Page After option in the group footer section. Now each group on Customer ID will start on a new page.  When exporting the report to PDF, using the Page Range option, we can export each group into a different PDF file.
    Page range option is available when exporting from Crystal Report Desktop version but not for sure when try the same from Infoview.
    Regards,
    Natarajan

  • Layout shifting when exporting notation to PDF File

    Hi,
    Wrote a sonata in logic. Made notation. Now I want to "export" it by printing into a pdf file. When doing so - the pdf-Layout DOES NOT match the Layout which I see on screen in the notation/score window. It seems to be "compressed". F.E. on the screen there´s a instruction-word "ritardando" (classical for "slow down") which has enough space and does not "touch" the notes. In the PDF however the same word/position the word "crosses" the notes or the beam and thus is not readable.
    It seems the distance between the upper system and the lower system (right&left hand -....piano) is "reduced" when printing into pdf File.
    Any Ideas ?
    Thanx
    Alex

    What PDF preset are you using?  If high quality print, try flattening the image, and saving again. If that works, then it might point to something fonts.  Obviously a flattened JPG is entirely useless as a PDF file, so it needs fixing.
    When Chris Cox (Senior Adobe Computer Scientist — apparently several steps up from a rocket scientist) finds this thread, he is probably going to tel you that your truncated crash report doesn't tell him anything.
    Fonts — Troubleshoot
    Troubleshooting Steps to Fix Most Issues

  • My texts are highlighted when exported to a PDF file...

    Hello,
    I am new to In Design. I have to update a large poster created with this software.
    I copied/pasted the new texts and everything is fine on the screen. But when I export the file to a PDF, the text are highlighted with a yellow color.
    Does anybody know what is hapening?
    Thank you
    Sinequa

    Dear Peter,
    This is much easier.
    I tried to print the In
    Design file to see if the text was also highlighted but I did not succeed.
    I only printed a tiny part of the file.
    As I told you on my last
    post, the PDF file is also correct but when I print it aprt of the text is
    highlighted. I mean the titles are OK but the bulk of the text is not.
    A+
    S
    Le Mar 28 septembre 2010 15:14, Peter Spier a
    écrit :
    I think you better post some screen shots of the
    ID file and the PDF. Use
    the cameraicon to embed them in a post:
    >
    http://forums.adobe.com/servlet/JiveServlet/showImage/42798/CameraIcon.pn
    g
    >

  • Adding metadata to a book upon export as a pdf file

    I have a collection of files that I'm exporting from Indesign (CS2) to the pdf format as a book.  I want to add metadata.  The files are exported to pdf with no changes allowed.  Therefore, meta data cannot be added to the pdf file using Acrobat>File>Document Properties>Description after the pdf file's creation.  Anyone know how to accomplish this?

    At least with ID versions through CS4, if you use ID's Book feature to export a set of ID files into a single PDF, the PDF picks up the metadata from the first file in the set: the metadata for other files does not make it into the PDF.  If you need individual files to carry unique metadata then you may want to look into PDF Portfolios -- though I guess those came in with Acrobat 8, meaning after CS2.  One day we're supposed to get full object-level metadata for different things in a PDF, though perhaps a chunk of PDF pages -- a chapter in a book, for example -- still may not qualify as an "object."
    The metadata categories availble through the standard ID interface are pretty limited, and heavily biased towards photography.  As I mention in a comment in Bob's ID Secrets blog entry, Adobe makes available a versions of the XMP FileInfo SDK for various versions of ID that allow you to add additional categories (such as PRISM, for magazine articles).
    Good luck!
    David
    (edited to fix a typo)

Maybe you are looking for

  • WARNING Do not buy VERIZON MFI without a contract

    Last year I bought a Verizon MIFI device without a contract. I paid the higher price for the device because I intended to use it only seasonaly. When I suspended the service in may this year the verizon website did not offer an option for customers w

  • How can i see the posts that i answered?

    How can i see the posts that i answered? Actually i some others post for a VLAN.. now i need that post ... but i'm unable to find it... Can someone please help me in this ? Regards, Chandu

  • Error in loading data into PSA from source system.

    Hi Experts !!! Good morning . I am trying to load data from SRM source system into BI system.When I execute infopackage,the data is not loaded into PSA and status of the process immediately becomes yellow.After sometime it gets timed out and converts

  • Changing msec to hh:mm:ss

    How can I change msec to hh:mm:ss. ex. int msec = 45667 to hh:mm:ss thank you

  • Expand/Collapse query structure?

    Hi all, I'm working with a structure in a BW query. In this BW query you have the possibility to expand or collapse structure nodes. Is it possible to overwrite this property in Design Studio? I tried to use the scripting formula DS_1.collapseNode("t