Add Links to PDF via Go SDK
API for adding Links to PDF documents with Aspose.PDF Cloud Go SDK
Get StartedHow to append Links to PDF documents using Cloud Go SDK
For adding Links to PDF documents, we’ll use Aspose.PDF Cloud Go SDK This Cloud Go SDK assists Go programmers in developing cloud-based PDF creator, annotator, editor, and converter apps using Go programming language via Aspose.PDF REST API. Use the following command from the Package Manager Console.
Package Manager Console Command
go get -u github.com/aspose-pdf-cloud/aspose-pdf-cloud-go/v25
Steps to add Links using Go
Aspose.PDF Cloud Go developers can easily append Links to PDF documents. Developers need just a few lines of code.
- Install Go SDK
- Execute launcher for Links uses cases start links_launch.go
- Create a PDF API service using ‘initPdfApi()’ function in module links_helper.go
- Upload a PDF document to the Aspose Cloud server using ‘uploadFile()’ function in module links_helper.go
- Append Link to a PDF document using ‘appendLink()’ function in module append_link.go
- Download the modified file
This sample code shows adding Links to PDF document using PDF Cloud Go SDK
package main
import (
"fmt"
asposepdfcloud "github.com/aspose-pdf-cloud/aspose-pdf-cloud-go/v25"
)
func appendLink(pdf_api *asposepdfcloud.PdfApiService, document string, output_document string, page_num int32, link_action string, rect *asposepdfcloud.Rectangle, remote_folder string) {
uploadFile(pdf_api, document)
args := map[string]interface{}{
"folder": remote_folder,
}
link := asposepdfcloud.Link{Href: link_action}
link_annotation := asposepdfcloud.LinkAnnotation{
Links: []asposepdfcloud.Link{link},
ActionType: asposepdfcloud.LinkActionTypeGoToURIAction,
Action: link_action,
Highlighting: asposepdfcloud.LinkHighlightingModeInvert,
Color: &asposepdfcloud.Color{A: 0xFF, R: 0xAA, G: 0x00, B: 0x00},
Rect: rect,
}
result, httpResponse, err := pdf_api.PostPageLinkAnnotations(
document, page_num, []asposepdfcloud.LinkAnnotation{link_annotation}, args,
)
if err != nil {
fmt.Println(err.Error())
} else if httpResponse.StatusCode < 200 || httpResponse.StatusCode > 299 {
fmt.Println("Unexpected error!")
} else {
fmt.Println(result)
downloadFile(pdf_api, document, output_document)
}
}
Work with the Links in PDF via Go SDK
Adding links to a PDF enhances usability, interactivity, and accessibility. Whether for navigation, marketing, or cross-referencing, hyperlinks improve the document’s effectiveness, making it easier for users to find relevant content and take action. Add the Links into PDF documents with Aspose.PDF Cloud Go SDK.
With our Go SDK you can
- Add PDF document’s header & footer in text or image format.
- Add tables & text or image stamps to PDF documents.
- Append multiple PDF documents to an existing file.
- Work with PDF attachments, annotations, & form fields.
- Apply encryption or decryption to PDF documents & set a password.
- Delete all stamps & tables from a page or entire PDF document.
- Delete a specific stamp or table from the PDF document by its ID.
- Replace single or multiple instances of text on a PDF page or from the entire document.
- Extensive support for converting PDF documents to various other file formats.
- Extract various elements of PDF files & make PDF documents optimized.
- You can try out our free App to test the functionality online.
- Learning Resources
- Documentation
- Source Code
- API References
- Product Support
- Free Support
- Paid Support
- Blog
- Why Aspose.PDF Cloud for Go?
- Customers List
- Security