HTML JPG PDF XML DOCX
  Product Family
PDF

Rotate PDF in Go SDK

API for working with rotating PDF documents using Aspose.PDF Cloud Go SDK

Get Started

How to rotate PDF via Cloud Go SDK

To rotate PDF documents, we’ll use Aspose.PDF Cloud Go SDK This Cloud SDK 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 rotate PDF via Go

Aspose.PDF Cloud developers can easily load & rotate PDF in just a few lines of code.

  1. Upload the PDF to the cloud.
  2. Set Parameters for Page Rotation.
  3. Rotate the specified pages using the desired angle.
  4. Download the modified PDF.
 

Rotate PDF using Cloud Go SDK


    package main

    import (
        "fmt"

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

    func rotateDocumentPages(pdf_api *asposepdfcloud.PdfApiService, document_name string, rotate_angle string, pages string, remote_folder string) {
        uploadFile(pdf_api, document_name)

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

        _, httpResponse, err := pdf_api.PostDocumentPagesRotate(document_name, rotate_angle, pages, args)
        if err != nil {
            fmt.Println(err.Error())
        } else if httpResponse.StatusCode < 200 || httpResponse.StatusCode > 299 {
            fmt.Println("Unexpected error!")
        } else {
            downloadFile(pdf_api, document_name, "rotated_")
        }
    }
 

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.

  •