Add link annotation to a document on Server/Desktop

To add a hyperlink or intra-document link annotation to a PDF Document page.

1$doc = new PDFDoc($filename);
2$page = $doc->GetPage(1);
3
4// Create a hyperlink
5$hyperlink = Link::Create($doc->GetSDFDoc(), new Rect(85.0, 570.0, 503.0, 524.0), Action::CreateURI($doc->GetSDFDoc(), "http://www.apryse.com"));
6$hyperlink->RefreshAppearance();
7$page->AnnotPushBack($hyperlink);
8
9// Create an intra-document link
10$goto_page_3 = Action::CreateGoto(Destination::CreateFitH($doc->GetPage(3), 0));
11$link = Link::Create($doc->GetSDFDoc(), new Rect(85.0, 458.0, 503.0, 502.0), $goto_page_3);
12$link->RefreshAppearance();
13$page->AnnotPushBack($link);

Add or edit PDF annotations sample
Full code sample which shows how to add or edit PDF annotations (e.g. hyperlink, intra-document link, stamp, rubber stamp, file attachment, sound, text, free-text, line, circle, square, polygon, polyline, highlight, squiggly, caret, and ink).

Did you find this helpful?

Trial setup questions?

Ask experts on Discord

Need other help?

Contact Support

Pricing or product questions?

Contact Sales