HTML JPG PDF XML DOCX
  Product Family
PDF

Add Table to a PDF via Go SDK

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

Get Started

How to append tables to PDF documents using Cloud Go SDK

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

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

  1. Define the AppendTable Function
  2. Upload the PDF to Cloud Storage
  3. Set API Request Parameters
  4. Initialize a Table Object
  5. Call the API to Append the Table to the Page
  6. Check for Errors and Display Success Message
  7. Download the Modified Document
 

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


    package main

    import (
        "fmt"

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

    func AppendTable(pdf_api *asposepdfcloud.PdfApiService, document string, pageNumber int32, outputDocument string, remoteFolder string) {
        // Append table to the document
        uploadFile(pdf_api, document)

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

        var new_table = InitializeTable()

        _, httpResponse, err := pdf_api.PostPageTables(document, pageNumber, []asposepdfcloud.Table{*new_table}, args)
        if err != nil {
            fmt.Println(err.Error())
        } else if httpResponse.StatusCode < 200 || httpResponse.StatusCode > 299 {
            fmt.Println("AppendTable()): Failed to append table to the document.")
        } else {
            fmt.Println("AppendTable(): table appended successfully on page", pageNumber, " to the document '"+document+"'.")
            downloadFile(pdf_api, document, outputDocument, "add_table_")
        }

    }
 

Work with the Tables in PDF via Go SDK

Tables provide a structured format for presenting data systematically, making it easier for readers to understand and analyze information. They also enhance the visual appeal of a document, adding professionalism and organization. When dealing with numerical or comparative data, tables improve clarity by grouping related information in an easy-to-read format. Additionally, tables can incorporate real-time or dynamically generated content, such as data from databases or analytics dashboards. Add the Table 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 add the Tables into PDF files online and test the functionality.

  •