Ruby PDF library integration

Welcome to Apryse. Ruby for the Apryse SDK is supported on Linux and macOS. To get started, choose your preferred platform from the tabs below.

Ruby & Linux PDF library integration

This guide will help you build your own PDFNet Ruby wrappers by binding a free trial of the PDFNetC library to Ruby. It will also show you how to run Apryse samples and integrate the Apryse SDK into Ruby applications on Linux. Your free trial includes unlimited trial usage and support from solution engineers.

Prerequisites

  • Ruby version 2.x, 3.x
  • CMake version ≥ 2.8
  • SWIG 2.0.4 - 2.0.12 or SWIG 3.0.12 or SWIG 4.0.2+ (Ruby 2.7+)
  • Apryse SDK for Linux:

Download the SDK

download 64-bit for Linux

Download the SDK

download 32-bit for Linux

Run Apryse SDK in production

A commercial license key is required for use in a production environment. Please contact sales to purchase a commercial key or if you need any other license key assistance.

Keep your commercial license key confidential.

License keys are uniquely generated. Please make sure that it is not publicly available (e.g. in your public GitHub).

Initial setup

  1. Make a directory to store the wrappers and navigate into that directory.
  2. Clone the uncompiled PDFNet wrappers by executing

sh

1git clone https://github.com/PDFTron/PDFNetWrappers
  1. Navigate to PDFNetWrappers/PDFNetC and download the PDFNet C/C++ SDK into that directory. Ensure you obtain the right architecture for your Ruby interpreter. For example, if your interpreter is 64bit (which this guide will assume), execute

sh

1wget http://www.pdftron.com/downloads/PDFNetC64.tar.gz
  1. Unpack PDFNetC64.tar.gz via tar xvzf PDFNetC64.tar.gz, then execute

sh

1mv PDFNetC64/Headers/ .

and

sh

1mv PDFNetC64/Lib/ .

and move the PDFNet libraries in place.
You can delete PDFNetC64.tar.gz to free up space.

Your /PDFNetC folder should be laid out like this like this:

sh

1PDFNetC
2├── Headers
3├── Lib
4├── PDFNetC64
5└── README.txt
  1. Make a build directory inside /PDFNetWrappers and navigate to it. This guide will assume the build directory is called Build.
  2. Execute.

sh

1cmake -D BUILD_PDFNetRuby=ON ..

If all goes well, you should get a message which reads:

sh

1Build files have been written to ~/PDFNetWrappers/Build
  1. Execute make followed by sudo make install. You are now ready to run the samples or integrate Apryse SDK into your own application.
  2. Get your Apryse trial key.

License Key

Apryse collects some data regarding your usage of the SDK for product improvement.

If you wish to continue without data collection, contact us and we will email you a no-tracking trial key for you to get started.

Run the samples

Run a specific sample

  1. Navigate to the RUBY folder in the sample, for example /Samples/AddImageTest/RUBY and execute ./RunTest.sh

Run all samples

  1. Navigate to /Samples and execute:

sh

1./runall_ruby.sh

The tests will run one by one.

Output files will be in /Samples/TestFiles/Output

Integrate into your application

This section will show you how to use our SDK to create a simple Apryse "Hello World!" application. It will create a document with one blank page and save it as a linearized PDF in its running directory.

  1. Navigate to your /Samples directory and make a new directory called myApp (if it does not exist already). This guide will assume your application is named myApp. For organization, create a new directory inside myApp called RUBY.
  2. Navigate inside that RUBY folder and create a new Ruby file called myApp.rb. Open it with your favorite text editor and paste this into it:

Ruby

1require '../../../PDFNetC/Lib/PDFNetRuby'
2include PDFNetRuby
3
4$stdout.sync = true
5
6 PDFNet.Initialize("YOUR_APRYSE_LICENSE_KEY") # PDFNet must be initialized before accessing any Apryse API
7 doc = PDFDoc.new()
8 page = doc.PageCreate() # Start a new page
9 doc.PagePushBack(page) # Add the page to the document
10 doc.Save("output.pdf", SDFDoc::E_linearized); # Save the document as a linearized PDF
11 puts "Hello World!"
  1. Run your application by executing ruby myApp.rb. If all goes well, your console should output:

sh

1PDFNet is running in demo mode.
2Permission: write
3Hello World!

Check the output.pdf that the program output in the same directory. It should be a PDF with one blank page.

Next step

Troubleshooting

Check the troubleshooting page and our PDFNetWrappers github if you run into any issues going through this document.

Did you find this helpful?

Trial setup questions?

Ask experts on Discord

Need other help?

Contact Support

Pricing or product questions?

Contact Sales