Some test text!
Core / Guides / Ruby
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.
macOS
Linux
There are two ways to use Apryse with Ruby on macOS:
To get started, please choose a tab below.
Ruby 2.6
Custom Wrapper
This guide will help you get started using the precompiled Ruby wrappers. You can run Apryse samples and integrate a free trial of the Apryse SDK into Ruby application on macOS. Your free trial includes unlimited trial usage and support from solution engineers.
Ruby 2.6 - 2.7
Apryse precompiled Python/Ruby SDK for macOS:
/PDFNetC/Lib
directory of the Python SDK download and execute:sh ./fix_rpaths.sh
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 a specific sample
RUBY
folder in the sample, for example /Samples/RUBY
and execute ./RunTest.sh
.Run all samples
/Samples
and execute the runall_ruby
file:./runall_ruby.sh
The tests will run one by one.
/Samples/TestFiles/Output
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.
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
.
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.
Check the troubleshooting page and our PDFNetWrappers github if you run into any issues going through this document.
Trial setup questions? Ask experts on Discord
Need other help? Contact Support
Pricing or product questions? Contact Sales