HTML JPG PDF XML DOCX
  Product Family
PDF

Add Pages to PDF via Go SDK

API for adding Pages to PDF documents with Aspose.PDF Cloud Go SDK

Get Started

How to append pages to PDF documents using Cloud Go SDK

For adding pages 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 pages using Go

Aspose.PDF Cloud Go developers can easily append pages to PDF documents. Developers need just a few lines of code.

  1. Define the AppendNewPage Function
  2. Use own function for upload document
  3. Prepare Request Parameters
  4. Call the API to Append a New Page
  5. Handle Errors or Output the Result
  6. Download the Modified File
 

This sample code shows adding pages to PDF document using PDF Cloud Go SDK


    package main

    import (
        "fmt"

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

    func AppendNewPage(pdf_api *asposepdfcloud.PdfApiService, document string, outputDocument string, remoteFolder string) {
        // Append page to the PDF document.
        uploadFile(pdf_api, document)

        args := map[string]interface{}{
            "folder": remoteFolder,
        }

        result, httpResponse, err := pdf_api.PutAddNewPage(document, args)
        if err != nil {
            fmt.Println(err.Error())
        } else if httpResponse.StatusCode < 200 || httpResponse.StatusCode > 299 {
            fmt.Println("Unexpected error!")
        } else {
            fmt.Println("Successfully added new page. ", result.Pages.List)
            downloadFile(pdf_api, document, outputDocument, "append_")
        }
    }
 

Work with the pages in PDF via Go SDK

​Adding pages to a PDF document is a common task that serves various purposes, enhancing the document’s functionality, organization, and comprehensiveness. Often, it’s necessary to include extra content such as appendices, references, or updated data that wasn’t available during the original document creation. Adding new pages allows for the seamless integration of this supplementary information, ensuring the document remains current and comprehensive. Adding pages to a PDF is a versatile practice that addresses multiple needs, from enhancing content and structure to ensuring compliance and facilitating collaboration. By understanding the specific requirements and utilizing appropriate tools, users can effectively manage and modify their PDF documents to suit various purposes. Add the Pages to 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 add the pages into PDF files online and test the functionality.

  •