HTML JPG PDF XML DOCX
  Product Family
PDF

Extract Attachments from PDF in Go SDK

API for extracting attachments in PDF documents with Aspose.PDF Cloud Go SDK

Get Started

How to extract attachments from PDF documents using Cloud Go SDK

For getting attachments from 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 extract attachments using Go

Aspose.PDF Cloud Go developers can easily extract attachments in PDF documents. Developers need just a few lines of code.

  1. Setting Up Parameters
  2. Call the GetDocumentAttachments API method
  3. Check for any errors
  4. Print the links of the document attachments
 

This sample code shows extracting attachments from PDF document using PDF Cloud Go SDK


    package main

    import (
        "fmt"

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

    func getDocumentAttachments(pdf_api *asposepdfcloud.PdfApiService, document_name string, remote_folder string) {
        args := map[string]interface{}{
            "folder": remote_folder,
        }
        result, httpResponse, err := pdf_api.GetDocumentAttachments(document_name, args)
        if err != nil {
            fmt.Println(err.Error())
        } else if httpResponse.StatusCode < 200 || httpResponse.StatusCode > 299 {
            fmt.Println("Unexpected error!")
        } else {
            fmt.Println(result.Attachments.Links)
        }
    }
 

Work with the Attachments in PDF via Go SDK

Getting attachments from a PDF is essential for accessing supplementary content, improving workflow efficiency, ensuring compliance, and enhancing security. It helps users retrieve critical files, automate document processing, and optimize document management in business, legal, and technical applications. This approach facilitates the integration of PDF attachment retrieval into larger applications or systems, such as document management systems or content repositories. Get the Attachments from 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 extract the attachments from PDF files online and test the functionality.