Some test text!

Search
Hamburger Icon

Mac / Guides

Ruby & macOS 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 macOS. Your free trial includes unlimited trial usage and support from solution engineers.

Prerequisites

  • Ruby version 2.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's Ruby PDF library for macOS:

Download the SDK

Run Apryse SDK in production
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 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

    git clone https://github.com/PDFTron/PDFNetWrappers
  3. Navigate to PDFNetWrappers/PDFNetC and move the downloaded [PDFNet C/C++ SDK] for macOS(#prerequisites) into that directory and unzip it. Ensure you obtain the right architecture for your Ruby interpreter. This can be done with these two commands:

curl -L -O http://www.pdftron.com/downloads/PDFNetCMac.zip
unzip PDFNetCMac.zip
  1. Now to move the headers in place, make sure you are in the PDFNetWrappers/PDFNetC directory and execute

    mv PDFNetCMac/Headers/ .

    and

    mv PDFNetCMac/Lib/ .

    to move the PDFNet libraries in place.

    You can delete PDFNetCMac.zip to free up space.

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

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

  3. Execute

    cmake -D BUILD_PDFNetRuby=ON ..

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

    Build files have been written to ~/PDFNetWrappers/Build
  4. Execute make followed by sudo make install.

  5. Next we need to fix the rpaths issue on Mac. While still in the same Build directory, execute these lines:

cp ../fix_rpaths.sh ../PDFNetC/Lib/
cd ../PDFNetC/Lib/
sudo sh ./fix_rpaths.sh
  1. Get your Apryse trial 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.

You are now ready to run the samples or integrate Apryse SDK into your own application.

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:

    ./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:

    require '../../../PDFNetC/Lib/PDFNetRuby'
    include PDFNetRuby
    
    $stdout.sync = true
    
      PDFNet.Initialize("YOUR_APRYSE_LICENSE_KEY")         # PDFNet must be initialized before accessing any Apryse API
      doc = PDFDoc.new()
      page = doc.PageCreate()     # Start a new page
      doc.PagePushBack(page)      # Add the page to the document
      doc.Save("output.pdf", SDFDoc::E_linearized);   # Save the document as a linearized PDF
      puts "Hello World!"

    Run your application by executing ruby myApp.rb. If all goes well, your console should output:

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

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

Next step

Guides Samples

Also check out the source for the PDFNetC wrappers.

Troubleshooting

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

Get the answers you need: Chat with us