Some test text!

Search
Hamburger Icon

Mac / Guides

Get started with Go (C Interface Binding)

Welcome to Apryse. You can start working with Go (C Interface Binding) from scratch, or integrate it into an existing application.

Existing Go (C Interface Binding) project & macOS PDF library integration

C interface binding example
This guide is a demo for using our C interface binding and is not a production version of the Go wrapper. Please visit our Apryse SDK for Go documentation for more information on using our production version of Go.

This guide will help you integrate a free trial of the Apryse SDK with Go using Apryse Headers on macOS with an existing Go app to create a new PDFDoc.

Prerequisites

  • Go 1.6+

    Make sure Go is installed at /usr/local/go and /usr/local/go/bin.

  • Apryse SDK for macOS

Trial license key required.
The trial of Apryse SDK requires a trial key. A commercial license key is required for use in a production environment. Please fill out our licensing form if you do not have a valid license key.
Keep your license keys confidential.
License keys are uniquely generated. Please make sure that it is not publicly available (e.g. in your public GitHub).

Integrate Apryse SDK with Go

Start by adding these lines to the beginning of your .go file:

// #cgo CFLAGS: -Ipath/to/your/download/PDFNetCMac/Headers
// #cgo LDFLAGS: -Lpath/to/your/download/PDFNetCMac/Lib -Wl,-rpath,PDFNetC64/Lib -lPDFNetC

Before calling other Apryse API, you must initialize PDFNet. The PDFNet initialize header is found in C/PDF/TRN_PDFNet.h and the PDFDoc header is found in C/PDF/TRN_PDFDoc.h. Include both at the beginning of your .go file:

// #include "C/PDF/TRN_PDFNet.h"
// #include "C/PDF/TRN_PDFDoc.h"

Also import the unsafe library:

import (
    "unsafe"
)

Then initialize PDFNet by calling these lines:

// Declare a license key and convert it to CString
ccp := C.CString("Insert commercial license key here after purchase");
// Initialize PDFNet
C.TRN_PDFNetInitialize(ccp);
// Free the memory used for the license key
C.free(unsafe.Pointer(ccp));

To create a new PDFDoc in Go, you must allocate memory for it and handle freeing the memory associated with it.

You can follow these steps to instantiate a PDFDoc:

// Declare a pointer for the PDFDoc.
var doc *C.TRN_PDFDoc;

// Get the size of the type using the pointer and allocate that amount of memory using malloc,
// then typecast void pointer returned by malloc to the required type explicitly.
doc = (*C.TRN_PDFDoc)(C.malloc(C.size_t(unsafe.Sizeof(*doc))));

// Call `TRN_PDFDocCreate` on the pointer to create the PDFDoc.
C.TRN_PDFDocCreate(doc);

To deallocate the memory used by the PDFDoc, you can use C.free:

C.free(doc);

Next step

Guides API docsSamples

Get the answers you need: Chat with us