Make URL-like text a real URL in PDF file.

Hi!
I have a task to make all URL-like text (and e-mail-like text later) in a PDF file a real URLs. It's needed for the pdf2swf tool (SWFTools) to produce swf with clickable links.
As i undestand Acrobat reader automatically converts such text into links, but the pdf2swf don't.

Reader will only convert the links if the start with http://. Links that start with www won't be recognized. Also,
that option can be turned off by the user so I wouldn't depend on them.
You would need to use the link tool in Adobe Acrobat to create actual links.

Similar Messages

  • Images present in datagridview not exporting to file only text contents are generating into PDF file..

    Hi Everyone,
       I have created simple Desktop app in that I trying to generate PDF file from Datagridview...when I click on ExportPDf button Pdf file is generation successfully but the issue is in that pdf whatever the images has present in datagridview that images
    are not generation into PDF only the text contents are Present in PDF file.
      Does any one can tell me how to generate the PDF file along with images.
    Here is my code:
      private void btnexportPDF_Click(object sender, EventArgs e)
                int ApplicationNameSize = 15;
                int datesize = 12;
                Document document = null;
                try
                    SaveFileDialog savefiledg = new SaveFileDialog();
                    savefiledg.Filter = "All Files | *.* ";
                    if (savefiledg.ShowDialog() == DialogResult.OK)
                        string path = savefiledg.FileName;
                        document = new Document(PageSize.A4, 3, 3, 10, 5);
                        PdfWriter writer = PdfWriter.GetInstance(document, new FileStream(path + ".pdf", FileMode.Create));
                        document.Open();
                        // Creates a phrase to hold the application name at the left hand side of the header.
                        Phrase phApplicationName = new Phrase("Sri Lakshmi Finance,Hosur-560068", FontFactory.GetFont("Arial", ApplicationNameSize, iTextSharp.text.Font.NORMAL));
                        // Creates a phrase to show the current date at the right hand side of the header.
                        Phrase phDate = new Phrase(DateTime.Now.ToLongDateString(), FontFactory.GetFont("Arial", datesize, iTextSharp.text.Font.NORMAL));
                        document.Add(phApplicationName);
                        document.Add(phDate);
                        iTextSharp.text.Image img = iTextSharp.text.Image.GetInstance("D:\\logo.JPG");
                        document.Add(img);
                        iTextSharp.text.Font font5= iTextSharp.text.FontFactory.GetFont(FontFactory.TIMES_ROMAN, 5);
                        iTextSharp.text.Font font6 = iTextSharp.text.FontFactory.GetFont(FontFactory.HELVETICA_BOLD, 6);
                        //float[] columnDefinitionSize = { 2.5f, 7.0f,6.6f, 8.6f, 6.6f, 5.0f, 4.5f, 7.0f, 6.3f, 7.0f, 3.5f, 6.0f, };
                        PdfPTable table = null;
                        table = new PdfPTable(dataGridView1.Columns.Count);
                        table.WidthPercentage = 100;
                        PdfPCell cell = null;
                        foreach (DataGridViewColumn c in dataGridView1.Columns)
                            cell = new PdfPCell(new Phrase(new Chunk(c.HeaderText,font6)));
                            cell.HorizontalAlignment = PdfPCell.ALIGN_CENTER;
                            cell.VerticalAlignment = PdfPCell.ALIGN_CENTER;
                            cell.BackgroundColor = new iTextSharp.text.BaseColor(240, 240, 240);
                            table.AddCell(cell);
                        if (dataGridView1.Rows.Count > 0)
                            for (int i = 0; i < dataGridView1.Rows.Count; i++)
                                PdfPCell[] objcell = new PdfPCell[dataGridView1.Columns.Count];
                                for (int j = 0; j < dataGridView1.Columns.Count - 0; j++)
                                    cell = new PdfPCell(new Phrase(dataGridView1.Rows[i].Cells[j].Value.ToString(), font5));
                                    cell.HorizontalAlignment = PdfPCell.ALIGN_LEFT;
                                    cell.VerticalAlignment = PdfPCell.ALIGN_LEFT;
                                    cell.Padding = PdfPCell.ALIGN_LEFT;
                                    objcell[j] = cell;
                                PdfPRow newrow = new PdfPRow(objcell);
                                table.Rows.Add(newrow);
                        document.Add(table);
                        MessageBox.Show("PDF Generated Successfully");
                        document.Close();
                    else
                        //Error 
                catch (FileLoadException fle)
                    MessageBox.Show(fle.Message);
                    MessageBox.Show("Error in PDF Generation", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
    Runtime Gridview content:
    Generated PDF File:
    Thanks & Regards RAJENDRAN M

    Hi Everyone,
       I have created simple Desktop app in that I trying to generate PDF file from Datagridview...when I click on ExportPDf button Pdf file is generation successfully but the issue is in that pdf whatever the images has present in datagridview that images
    are not generation into PDF only the text contents are Present in PDF file.
      Does any one can tell me how to generate the PDF file along with images.
    Here is my code:
      private void btnexportPDF_Click(object sender, EventArgs e)
                int ApplicationNameSize = 15;
                int datesize = 12;
                Document document = null;
                try
                    SaveFileDialog savefiledg = new SaveFileDialog();
                    savefiledg.Filter = "All Files | *.* ";
                    if (savefiledg.ShowDialog() == DialogResult.OK)
                        string path = savefiledg.FileName;
                        document = new Document(PageSize.A4, 3, 3, 10, 5);
                        PdfWriter writer = PdfWriter.GetInstance(document, new FileStream(path + ".pdf", FileMode.Create));
                        document.Open();
                        // Creates a phrase to hold the application name at the left hand side of the header.
                        Phrase phApplicationName = new Phrase("Sri Lakshmi Finance,Hosur-560068", FontFactory.GetFont("Arial", ApplicationNameSize, iTextSharp.text.Font.NORMAL));
                        // Creates a phrase to show the current date at the right hand side of the header.
                        Phrase phDate = new Phrase(DateTime.Now.ToLongDateString(), FontFactory.GetFont("Arial", datesize, iTextSharp.text.Font.NORMAL));
                        document.Add(phApplicationName);
                        document.Add(phDate);
                        iTextSharp.text.Image img = iTextSharp.text.Image.GetInstance("D:\\logo.JPG");
                        document.Add(img);
                        iTextSharp.text.Font font5= iTextSharp.text.FontFactory.GetFont(FontFactory.TIMES_ROMAN, 5);
                        iTextSharp.text.Font font6 = iTextSharp.text.FontFactory.GetFont(FontFactory.HELVETICA_BOLD, 6);
                        //float[] columnDefinitionSize = { 2.5f, 7.0f,6.6f, 8.6f, 6.6f, 5.0f, 4.5f, 7.0f, 6.3f, 7.0f, 3.5f, 6.0f, };
                        PdfPTable table = null;
                        table = new PdfPTable(dataGridView1.Columns.Count);
                        table.WidthPercentage = 100;
                        PdfPCell cell = null;
                        foreach (DataGridViewColumn c in dataGridView1.Columns)
                            cell = new PdfPCell(new Phrase(new Chunk(c.HeaderText,font6)));
                            cell.HorizontalAlignment = PdfPCell.ALIGN_CENTER;
                            cell.VerticalAlignment = PdfPCell.ALIGN_CENTER;
                            cell.BackgroundColor = new iTextSharp.text.BaseColor(240, 240, 240);
                            table.AddCell(cell);
                        if (dataGridView1.Rows.Count > 0)
                            for (int i = 0; i < dataGridView1.Rows.Count; i++)
                                PdfPCell[] objcell = new PdfPCell[dataGridView1.Columns.Count];
                                for (int j = 0; j < dataGridView1.Columns.Count - 0; j++)
                                    cell = new PdfPCell(new Phrase(dataGridView1.Rows[i].Cells[j].Value.ToString(), font5));
                                    cell.HorizontalAlignment = PdfPCell.ALIGN_LEFT;
                                    cell.VerticalAlignment = PdfPCell.ALIGN_LEFT;
                                    cell.Padding = PdfPCell.ALIGN_LEFT;
                                    objcell[j] = cell;
                                PdfPRow newrow = new PdfPRow(objcell);
                                table.Rows.Add(newrow);
                        document.Add(table);
                        MessageBox.Show("PDF Generated Successfully");
                        document.Close();
                    else
                        //Error 
                catch (FileLoadException fle)
                    MessageBox.Show(fle.Message);
                    MessageBox.Show("Error in PDF Generation", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
    Runtime Gridview content:
    Generated PDF File:
    Thanks & Regards RAJENDRAN M
    Hello,
    Since this issue is mainly related to iTextSharp which belongs to third-party, I would recommend you consider posting this issue on its support website to get help.
    Maybe the following forum will help.
    http://support.itextpdf.com/forum/26
    Regards,
    Carl
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to invoke alt-text for images in a PDF file by Automation

    Hi,
    Can any one help me?
    How to invoke Alt-text for Images in a PDF file using script?
    Thanks for looking into this.
    Regards,
    Sudhakar

    What do you mean "invoke" alt-text?  If Alt-text is there, then it will be presented to a screen reader.

  • How do i make adobe reader my default to open any pdf file

    how do i make adobe reader my default to open any pdf file?

    What is your current default?  If Adobe Acrobat (X or XI), you can set it in your preferences.
    If it's another program, reinstalling or repairing Adobe Reader will set it to the default program.

  • I have created URL like sub domain. but URL which i have rewrite like sub-domain in that page This webpage is not available error showing.

    Is that any one Help me, here,
     i have created URL like aarti.domain.com using a particular code which i have add here,
    sub-domain URL is creating but This webpage is not available i am getting this error in sub-domain URL page.
    This is a code by which i have created a URL like sub-domain. its creating URL but page is not showing with data. 
    Any one can tell me whats Wrong here. 
    and how i can show data in my sub-domain url.
    Your solution will help me To solve This Big Issue.
    <rewrite>
    <rules>
    <rule name="Redirect to Subdomains" stopProcessing="true">
    <match url="^xyzPage.aspx$" />
    <conditions>
    <add input="{QUERY_STRING}" pattern="^barvalue=(.+)$" />
    </conditions>
    <action type="Redirect" url="http://{C:1}.{HTTP_HOST}" appendQueryString="false" />
    </rule>
    </rules>
    </rewrite>

    Please post questions related to ASP.NET and web development in the ASP.NET forums (http://forums.asp.net ).

  • How to produce a list of URLs and page numbers from large website pdf file.

    Adobe Acrobat Pro version 10.1.4.
    I created a pdf file from an entire website which has 1062 pages.
    I was asked to produce a list of pages which should be updated or deleted.
    There is a URL on every page.
    What is the best way to mark the pages for update/deletion?
    Is there a way to automatically produce/export a list of a all URLs of these pages including page numbers and "feature" update/delete? Thanks for your help.

    Thanks for the reply. I refer to the page numbers visible under the pages when you click on in the icon "Page Thumbnails" on the top left side. The page numbers do not appear on the pages themselves.
    When saving the entire website bookmarks were created automatically as as well as the URL put on the left botton side of the respective page. They have always the same syntax like this: http://egr.istat.it/?q=node/285[06/062013 17:54:35]

  • Missing text, not all, in some .pdf files

    I have just started to receive some .pdf files with photos on them and text. But there are places where there should be text and it does not show up when I receive. Others are able to view this particular .pdf I'm citing in its entirety. The person who sent to me often sends me .pdf graphics/text and until now I have not had a problem viewing his .pdf files. I have a current adobe reader file - not the paid version - and it is up to date. He is sending from his apple to my windows explorer. I don't know what to do here as it is important I receive these and I have no explanation?
    Also this particular .pdf he had created to be a 1/2 page ad in a local newspaper, so I think he would have designed it to be larger? But again, I've had no trouble reading what he sends even one meant for a full page ad. Is there something I can do to correct this? I did Google and it seems others have run into this on occasion.

    I'm going to try to imbed the adobe image of one of the files. I notice when I look on my desktop and the file image is there, it is small icon of course, but I can see the missing words clearly on it. But when I open it up, via the adobe reader, that is when spots are blank, but when I look very closely the words are really there but a very faded gray, to be not legible. And they are clearly there if I right click and highlight.These were two areas of course where he had made some changes.
    I was not allowed to download and insert the image and it is an adobe image....it says
    "The content image of this type is not allowed"   Interesting. It is merely an insert for fundraising - a small add (to be placed in energy invoices) for an animal group - small file. Also, remember I mentioned others could receive these two adobe files and had no problem reading those areas. It seems to be only me sad to say!

  • Envy 4500 won't scan text to produce a searchable PDF file

    I used to have a Photosmart 4400 C printer that would let me scan to produce searchable PDF files, i.e. I could select letters or words using a text selection tool in my PDF reader.   Today I Just purchased a ENVY 4500 e- All-in-One-Series.  It will only scan text to give me a graphic PDF file that is not searchable.  I updated to the latest driver EN4500_198.exe but that doesn't help. Does anyone have a solution?

    Hi, No, the Envy 4500 does not have any OCR software by default, you have to pay for that software and believe this or not, the software is more expensive than the printer itself. You can buy the software or you can try to use few free software around:     http://www.techsupportalert.com/best-free-ocr-software.htm Regards,

  • Non-latin text disappears from DRM-protected pdf file

    Hi,
    I'm facing with following issue - when I package pdf with non-latin data (for example, arabian characters), they are not shown in ADE.
    Adobe Content Server: 4.2
    Client: ADE 2.0, DL Reader 2.4.7 (Android), Bluefire Reader 1.5.7
    Screenshot of 3rd page of document in ADE
    Pdf file is here - http://engineering-scratch-copyright-com.s3.amazonaws.com/nonproduction/ACS/arabic.pdf

    marlisa324 wrote:
    Hello,
    Hope someone can clue me into what I am doing wrong.  I use Overdrive for EPUB files from the library but they also have PDF files I would like to read which are DRM protected.  On the website it says that I can use Adobe Digital Editions and transfer the file from the library website to my computer and then my computer to my phone.  I can't seem to get the file to transfer from my computer to the phone.  Does anyone know what I may be doing wrong?
    Thanks for any help.
    To Wildman,
    Here is a link to Overdrive where the OP is getting the files that are either epub or pdf format that comes with DRM protection.  I looked into using it at one time for lending books from my library and reading on my Nook e-reader, but never got around to setting it up completely.
    http://nebraska.lib.overdrive.com/E4B52B8C-D4C4-4F21-BE70-496DD9D689F6/10/502/en/default.htm

  • I would like to programatically create a 3D pdf file from an existing application.

    Hello, I have an existing software application.
    I would like to add the ability to create 3D PDF files to this application. The PDF files would illustrate underground water pipes, manhole structures, catchbasins etc. These are pretty simple structures, either cylindrical or rectangular and have pipes intersecting the structures.
    Does an API or activeX exist that I can call from an existing application to create these types of 3D PDF documents?
    I have some example images that illustrate what I am trying to accomplish.

    Moved to Acrobat SDK

  • Printing a PDF document to virtual PDF printer converts text to image in output PDF-file

    When I "print" any regular PDF document to a PDF virtual printer, it always converts a source regular (textual) PDF document into an image only document. It applies even to pure plain text documents (say, HTML source code etc.)
    (I often need to create a PDF document from the existing PDF. Yes, I know, it might seems quite pointless, but actually it makes sense.)
    Thus I have 2 questions:
    1) Is such sonvertion normal or I do anything wrong myself?
    2) It is by design, is there any woraround to prevent conveting text to image?
    Many thanks in advance!

    Have you checked to see if the "Print As Image" option is inadvertently checked? In the Print dialog, click the Advanced button then look for the checkbox.

  • Acrobat XI Pro: Text boxes empty after combining PDF files

    I have a user when she combines a few documents only one document is missing some text in text boxes that were showing up before.  Here is a screen shot of the two files:
    The document on the left is what occurs after the files have been combined, the document on the right is the original document.  I spoke with tech support, they told me to take the original pdf document then print it to the adobe pdf printer and select the option to print it as an image.  Then when we combined the files it was working fine.  I also took the original Excel 2010 document that the right document in the image came from, printed that to the Adobe PDF printer and made sure it printed it as an image.  Then after combining them it worked once more.  My problem is the user didn't have to print the excel doc to an image, she would just have to click on the Acrobat tab in Excel and tell it to create a pdf doc.  So is there a setting I'm missing?

    I tried uninstalled Acrobat XI and installed Acrobat X but the problem still exists.  I spoke with my user some more and found that if she leaves out one of the documents from the combining process this issue does not occur. So either this is a font incompatibility or that document that was left out is corrupt.  Any thoughts?

  • Flash video game. How to make it playable & put onto website, and Indesign PDF file?

    I am making a video game using Adobe Flash 2.0. I need to be able to show what I have through a website (my portfolio) and/or insert it into an interactive Indesign PDF file. The game needs to be able to be played and be used and tested by whoever I send the pdf file to, or whoever is would be view my the site I post it on. I have attempted many different ways to put my game onto my website (cargocollective) and Indesign, but nothing is working! I need help.
    For example I need my game to be placed on the website page, and on the pdf document as an image. When it is clicked on I need it to start so people can play the game. I don't know how to do this and I would really love and need to know how! Thanks.

    You are more likely to get a helpful reply if you ask this in the Flash forum (this is the Flash Player forum).

  • Unable to make Acrobat X the default handler/opener of PDF files on a Windows 8 laptop with Acrobat Reader also installed.

    I have a user with a Windows 8 Sony Vaio laptop with Microsoft Office 2013 Professional, Acrobat X Standard, and Acrobat Reader installed. Another program on his system requires Acrobat Reader so we cannot just remove that and keep it off the system. Regardless of what he does to set the default program to open PDF files with, when he opens a PDF file it always opens it in Acrobat Reader and not Acrobat itself. We have re-associated it and set the default program handling repeatedly and have also tried complete uninstall and reinstall of both Acrobat and Acrobat Reader which had no effect on this. At this point I am of the opinion that this is a bug and the file association is being overridden somewhere in the registry besides the file association entries. Any help is appreciated.

    The only supported way to set the default handler (besides the Wizard and cmd line properties) is via the UI at Edit > Preferences > General > Default PDF Handler. The installer has to be invoked and many registry entries get touched during the switching process.
    You should also verify your dot versions of the product support Windows 8: Overview — Acrobat and Adobe Reader Release Notes.
    Finally, while you Acrobat 10 should work with Reader 11, try reverting to Reader 10 (that should be your last resort).
    Ben

  • Wanting to make area password protected where client will download pdf files

    Trying to create for a client a little area that clients can
    use a password that is emailed to them and they can download a
    product in pdf form after paying by paypal. Can any one help me
    with this?

    Yes
    "Murray *ACE*" <[email protected]> wrote
    in message
    news:gfmehr$54h$[email protected]..
    >> But your best bet would be to protect a folder on
    your web site thru your
    >> ISP.
    >
    > You mean through your host, right?
    >
    > --
    > Murray --- ICQ 71997575
    > Adobe Community Expert
    > (If you *MUST* email me, don't LAUGH when you do so!)
    > ==================
    >
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    > ==================
    >
    >
    > "Alain St-Pierre" <[email protected]>
    wrote in message
    > news:gfkq3q$rms$[email protected]..
    >> Look at theses post
    >>
    >>
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=12&catid=189&threadid =1397635&highlight_key=y&keyword1=password
    >>
    >>
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=12&catid=189&threadid =1395022&highlight_key=y&keyword1=password
    >>
    >>
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=12&catid=189&threadid =1388641&highlight_key=y&keyword1=password
    >>
    >> But your best bet would be to protect a folder on
    your web site thru your
    >> ISP.
    >>
    >> aka Frenchy ASP
    >> "rlcarolyn13" <[email protected]>
    wrote in message
    >> news:gfkin5$ibf$[email protected]..
    >>> Trying to create for a client a little area that
    clients can use a
    >>> password that is emailed to them and they can
    download a product in pdf
    >>> form after paying by paypal. Can any one help me
    with this?
    >>
    >>
    >

Maybe you are looking for

  • Failed software update (3.3.1) has rendered my iPod Touch useless

    I am appealing for help here as I am pulling my hair out with this issue. This morning I went to update my 2nd Gen iPod Touch to 3.3.1 software. At what should have been the end of the update, it told me that it didn't recognize the iPod and wanted t

  • Iphone 4 syncing problem

    We connect the iphone4 to itunes and it recognizes the iphone, but only a white screen appears that says "iphone" in the middle of the screen. This is my wife's iphone. Mine synced fine and let me choose which to install backup from. I'm not getting

  • Check printing through Payment Medium Workbench

    Hi, Is it possible to print the check through payment medium workbench, just like the classical RFFO*_C program ? Thanks Wasim

  • Creating inbound again after goods were rejected

    All SAP Gurus, We are using inbound delivery for PO. We have created the PO. Made inbound against it (VL31N). Made GR (MIGO) against inbound delivery number. Then goods were rejected (122 movement type) Now, we again want  to make inbound, but system

  • Reengeneering JAR-Files?

    To what extend is it possible to get information about algorithms and data structures out of an jar-file, i.e. out of the *.class - files of an application? Is there some method to protect a jar-file against this?