HTML JPG PDF XML DOCX
  Product Family
PDF

Replace bookmarks in PDF via Go SDK

API for replacing bookmarks in PDF documents with Aspose.PDF Cloud Go SDK

Get Started

How to replace bookmarks in PDF documents using Cloud Go SDK

For replacing bookmarks in 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 replace bookmarks using Go

Aspose.PDF Cloud Go developers can easily replace bookmarks in PDF documents. Developers need just a few lines of code.

  1. Setting Up Parameters
  2. Create a new bookmark with the specified properties
  3. Replace the bookmark in the PDF document using the Aspose PDF Cloud API
  4. Print the updated bookmark if the operation was successful
 

This sample code shows replacing bookmarks in PDF document using PDF Cloud Go SDK


    package main

    import (
        "fmt"

        asposepdfcloud "github.com/aspose-pdf-cloud/aspose-pdf-cloud-go/v25"
    )

    func replaceBookmark(pdf_api *asposepdfcloud.PdfApiService, document_name string, bookmark_path string, title string, remote_folder string) {
        args := map[string]interface{}{
            "folder": remote_folder,
        }

        bookmark := asposepdfcloud.Bookmark{
            Action:            "GoTo",
            Bold:              true,
            Italic:            false,
            Title:             title,
            PageDisplay:       "XYZ",
            PageDisplayBottom: 10,
            PageDisplayLeft:   10,
            PageDisplayRight:  10,
            PageDisplayTop:    10,
            PageDisplayZoom:   2,
            PageNumber:        1,
            Color:             &asposepdfcloud.Color{A: 0x00, R: 0x00, G: 0xFF, B: 0x00},
        }

        result, httpResponse, err := pdf_api.PutBookmark(document_name, bookmark_path, bookmark, args)
        if err != nil {
            fmt.Println(err.Error())
        } else if httpResponse.StatusCode < 200 || httpResponse.StatusCode > 299 {
            fmt.Println("Unexpected error!")
        } else {
            fmt.Println(result.Bookmark)
        }
    }
 

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 replace the bookmarks in PDF files online and test the functionality.

  •