HTML JPG PDF XML DOCX
  Product Family
PDF

Add Image Stamp to a specific page of a PDF via Go SDK

API for adding Images to PDF pages with Aspose.PDF Cloud Go SDK

Get Started

How to append image stamp to PDF pages using Cloud Go SDK

For adding image stamp 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 image stamp to PDF using Go

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

  1. Uploads the PDF and image to the cloud storage.
  2. Creates an image stamp with specified size and alignment.
  3. Adds the image stamp to the desired PDF page.
  4. Download the stamped PDF.
 

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


    package main

    import (
        "fmt"
        "path"

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

    func AppendPageStampImage(pdf_api *asposepdfcloud.PdfApiService, documentName string, outputDocument string, imageFileName string, pageNumber int32, width float64, height float64, remoteFolder string) {
        // Append image stamp to page of the PDF document.
        uploadFile(pdf_api, documentName)
        uploadFile(pdf_api, imageFileName)

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

        stamp := asposepdfcloud.ImageStamp{
            Background:          true,
            HorizontalAlignment: asposepdfcloud.HorizontalAlignmentCenter,
            VerticalAlignment:   asposepdfcloud.VerticalAlignmentCenter,
            Opacity:             1,
            Rotate:              asposepdfcloud.RotationNone,
            RotateAngle:         45,
            Width:               width,
            Height:              height,
            Zoom:                1,
            FileName:            path.Join(remoteFolder, imageFileName),
        }
        _, httpResponse, err := pdf_api.PostPageImageStamps(documentName, pageNumber, []asposepdfcloud.ImageStamp{stamp}, args)
        if err != nil {
            fmt.Println(err.Error())
        } else if httpResponse.StatusCode < 200 || httpResponse.StatusCode > 299 {
            fmt.Println("appendStampImage()): Failed to append image stamp to the document.")
        } else {
            fmt.Println("appendStampImage(): image stamp '"+imageFileName+"' appended successfully pn page", pageNumber, " to the document '"+documentName+"'.")
            downloadFile(pdf_api, documentName, outputDocument, "add_image_stamp_")
        }
    }
 

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.

  •