HTML JPG PDF XML DOCX
  Product Family
PDF

Add Image in Footer of PDF via Go SDK

API for adding Images in Footer of PDF documents with Aspose.PDF Cloud Go SDK

Get Started

How to append image in Footer of PDF documents using Cloud Go SDK

For adding image in Footer of 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 image in Footer of PDF using Go

Aspose.PDF Cloud Go developers can easily append image in Footer of PDF documents. Developers need just a few lines of code.

  1. Upload the Footer Image.
  2. Prepare Footer Settings.
  3. Call API to Add Footer.
 

This sample code shows adding image in Footer of PDF document using PDF Cloud Go SDK


    package main

    import (
        "fmt"
        "path"

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

    func appendImageFooter(pdf_api *asposepdfcloud.PdfApiService, document_name string, image_name string, startPage int32, end_page int32, remote_folder string) {
        uploadFile(pdf_api, image_name)

        args := map[string]interface{}{
            "folder":          remote_folder,
            "startPageNumber": startPage,
            "endPageNumber":   end_page,
        }

        footer := asposepdfcloud.ImageFooter{
            Background:          true,
            LeftMargin:          1,
            RightMargin:         2,
            HorizontalAlignment: asposepdfcloud.HorizontalAlignmentCenter,
            Opacity:             1,
            Rotate:              asposepdfcloud.RotationNone,
            RotateAngle:         0,
            XIndent:             0,
            YIndent:             0,
            Zoom:                1,
            Width:               24,
            Height:              24,
            FileName:            path.Join(remote_folder, image_name),
        }

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

Work with the Footer via Go SDK

Adding an image to the footer of a PDF enhances document branding, security, aesthetics, and functionality. It is especially valuable for business documents, reports, legal papers, and marketing materials, ensuring a professional and well-structured presentation. Add the Footer 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.

  •