Update PDF Forms in Go SDK
Update all of the form fields from a PDF Document using Go Cloud SDK
Get StartedHow to update an AcroForms via Go SDK
The provided Go code is designed to update form fields in a PDF document using the Aspose PDF Cloud API. It imports necessary modules, reads a local PDF file, uploads it to the cloud, and then updates specific fields in the PDF. The function updateFormFields encapsulates the entire process, handling both file operations and API interactions. It also includes error handling to manage potential issues during file reading and API requests.
In order to update an AcroForm to PDF, we’ll use Aspose.PDF Cloud Go SDK. This Cloud SDK assists Go programmers in developing cloud-based PDF creator, annotator, editor, and converter apps using Go programming language via Aspose.PDF REST API. Simply create an account at Aspose for Cloud and get your application information. Once you have the App SID & key, you are ready to give the Aspose.PDF Cloud Go SDK.
Package Manager Console Command
go get -u github.com/aspose-pdf-cloud/aspose-pdf-cloud-go/v25
Steps to update AcroForms via Cloud Go
Aspose.PDF Cloud developers can easily load & update acroforms in PDF in just a few lines of code.
Reads PDF file from local path.
Upload the PDF file to the Aspose.PDF Cloud storage.
Creates a new form field with the name from “field_name” parameter and sets its value to “spose-pdf-cloud@example.com”.
Updates the form fields in the PDF file on the Aspose.PDF Cloud storage.
Download the result if needed it
Download the result if needed it
This sample code shows updating an AcroForms in PDF documents using Go
package main
import (
"fmt"
asposepdfcloud "github.com/aspose-pdf-cloud/aspose-pdf-cloud-go/v25"
)
func appendFormFiled(document_name string, output_name string, field_name string, local_folder string, remote_folder string) {
// Initialize Credentials and create Pdf.Cloud service object
AppSID := "YOUR_APP_SID" // Your Application SID
AppKey := "YOUR_APP_KEY" // Your Application Key
pdfApi := asposepdfcloud.NewPdfApiService(AppSID, AppKey, "")
args := map[string]interface{}{
"folder": remote_folder,
}
file, _ := os.Open(filepath.Join(local_folder, document_name))
_, _, _ = pdfApi.UploadFile(filepath.Join(remote_folder, document_name), file, args)
field := asposepdfcloud.Field{
Name: field_name,
Type_: asposepdfcloud.FieldTypeText,
Values: []string{"aspose-pdf-cloud@example.com"},
Rect: &asposepdfcloud.Rectangle{ LLX:125, LLY: 735, URX: 200, URY: 752},
}
fields := asposepdfcloud.Fields{};
fields.List = []asposepdfcloud.Field{ field }
_, httpResponse, err := pdfApi.PutUpdateFields(document_name, fields, args)
if err != nil {
fmt.Println(err.Error())
} else if httpResponse.StatusCode < 200 || httpResponse.StatusCode > 299 {
fmt.Println("Unexpected error!")
} else {
result_data, _, _ := pdfApi.DownloadFile(path.Join(remote_folder, document_name), args)
fileName := path.Join(local_folder, output_name)
f, _ := os.Create(fileName)
_, _ = f.Write(result_data)
}
}
Work with the AcroForms via Go SDK
Updating AcroForms in a PDF involves modifying or enhancing existing interactive form fields. Improve field alignment, add tooltips, or adjust tab orders to make the form more intuitive and easier to use. Include additional fields such as checkboxes, dropdowns, or digital signature areas to accommodate new data collection needs. Update AcroForms to comply with accessibility standards, such as adding labels or improving compatibility with assistive technologies. Update AcroForms to ensure compatibility with modern devices, browsers, or software tools. Update the AcroForms into PDF documents with Aspose.PDF Cloud Go SDK.
With our Go library you can
- Add PDF document’s header & footer in text or image format.
- Add tables & stamps (text or image) 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 update the AcroForms into PDF files online and test the functionality.
- Learning Resources
- Documentation
- Source Code
- API References
- Product Support
- Free Support
- Paid Support
- Blog
- Why Aspose.PDF Cloud for Go?
- Customers List
- Security