HTML JPG PDF XML DOCX
  Product Family
PDF

Add watermarks to PDF via Go SDK

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

Get Started

How to append watermarks to PDF documents using Cloud Go SDK

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

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

  1. Define the AppendNewWatermark Function
  2. Upload the PDF and Image Files to Cloud Storage
  3. Set API Request Parameters
  4. Create an ImageStamp Object
  5. Call the API to Add the Image Watermark
  6. Handle the API Response
  7. Download the Modified PDF
 

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


	package main

	import (
		"fmt"
		"path"

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

	// Append image watermark to a document
	func AppendNewWatermark(pdf_api *asposepdfcloud.PdfApiService, document string, imageFileName string, opacity float64, rotate float64, xPos float64, yPos float64, width float64, height float64, outputDocument string, remoteFolder string) {
		uploadFile(pdf_api, document)
		uploadFile(pdf_api, imageFileName)

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

		image := asposepdfcloud.ImageStamp{
			Background:  true,
			Opacity:     opacity,
			Rotate:      asposepdfcloud.RotationNone,
			RotateAngle: rotate,
			XIndent:     xPos,
			YIndent:     yPos,
			Width:       width,
			Height:      height,
			Zoom:        1,
			FileName:    path.Join(remoteFolder, imageFileName),
		}

		_, httpResponse, err := pdf_api.PostDocumentImageStamps(document, []asposepdfcloud.ImageStamp{image}, 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 image watermark. ")
			downloadFile(pdf_api, document, outputDocument, "add_watermark_")
		}
	}
 

Work with the watermarks in PDF via Go SDK

Watermarks can deter unauthorized use or distribution by clearly marking the document with ownership or copyright information, protecting original content from being misused or redistributed without permission. In some cases, watermarks are added as a subtle design feature to enhance the look and feel of a document, providing a professional, polished appearance that reflects the brand identity. 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 watermarks into PDF files online and test the functionality.

  •