Create Links in PDF file with C#

The following code snippet also work with Aspose.PDF.Drawing library.

By adding a link to an application into a document, it is possible to link to applications from a document. This is useful when you want readers to take a certain action at a specific point in a tutorial, for example, or to create a feature-rich document. To create an application link:

  1. Create a Document object.
  2. Get the Page you want to add link to.
  3. Create a LinkAnnotation object using the Page and Rectangle objects.
  4. Set the link attributes using the LinkAnnotation object.
  5. Also, set the to LaunchAction object’s Action property.
  6. When creating the LaunchAction object, specify the application you want to launch.
  7. Add the link to the Page object’s Annotations property.
  8. Finally, save the updated PDF using the Document object’s Save method.

The following code snippet shows how to create a link to an application in a PDF file.

// For complete examples and data files, please go to https://github.com/aspose-pdf/Aspose.PDF-for-.NET
// The path to the documents directory.
string dataDir = RunExamples.GetDataDir_AsposePdf_LinksActions();

// Open document
Document document = new Document( dataDir + "CreateApplicationLink.pdf");

// Create link
Page page = document.Pages[1];
LinkAnnotation link = new LinkAnnotation(page, new Aspose.Pdf.Rectangle(100, 100, 300, 300));
link.Color = Aspose.Pdf.Color.FromRgb(System.Drawing.Color.Green);
link.Action = new LaunchAction(document, dataDir + "CreateApplicationLink.pdf");
page.Annotations.Add(link);

dataDir = dataDir + "CreateApplicationLink_out.pdf";
// Save updated document
document.Save(dataDir);

Aspose.PDF for .NET allows you to add a link to an external PDF file so that you can link several documents together. To create a PDF document link:

  1. First, create a Document object.
  2. Then, get the particular Page you want to add the link to.
  3. Create a LinkAnnotation object using the Page and Rectangle objects.
  4. Set the link attributes using the LinkAnnotation object.
  5. Set the Action property to the GoToRemoteAction object.
  6. While creating the GoToRemoteAction object, specify the PDF file that should launch, as well as the page number it should open on.
  7. Add the link to the Page object’s Annotations collection.
  8. Save the updated PDF using the Document object’s Save method.

The following code snippet shows how to create PDF document link in a PDF file.

// For complete examples and data files, please go to https://github.com/aspose-pdf/Aspose.PDF-for-.NET
// The path to the documents directory.
string dataDir = RunExamples.GetDataDir_AsposePdf_LinksActions();
// Open document
Document document = new Document(dataDir+ "CreateDocumentLink.pdf");
// Create link
Page page = document.Pages[1];
LinkAnnotation link = new LinkAnnotation(page, new Aspose.Pdf.Rectangle(100, 100, 300, 300));
link.Color = Aspose.Pdf.Color.FromRgb(System.Drawing.Color.Green);
link.Action = new GoToRemoteAction(dataDir + "RemoveOpenAction.pdf", 1);
page.Annotations.Add(link);
dataDir = dataDir + "CreateDocumentLink_out.pdf";
// Save updated document
document.Save(dataDir);