Example code is for an older version of Toolkit, newer code is available.
# Copyright (c) 2021 ActivePDF, Inc.
# ActivePDF Toolkit 2017
# Example generated 01/22/21
require 'win32ole'
# Get current path
strPath = File.expand_path(File.dirname(__FILE__)) + "\\"
# Instantiate Object
oTK = WIN32OLE.new("APToolkit.Object")
# Here you can place any code that will alter the output file
# Such as adding security, setting page dimensions, etc.
# Set the PDF page Height and Width (72 = 1")
oTK.OutputPageHeight = 792.0
oTK.OutputPageWidth = 612.0
# Create the new PDF file
intOpenOutputFile = oTK.OpenOutputFile(strPath + 'new.pdf')
if intOpenOutputFile != 0
puts "Error in OpenOutputFile: #{intOpenOutputFile}"
end
# After OpenOutputFile and before CloseOutputFile various
# functions can be called to create the PDF as desired
# A few examples are shown below
# Each time a new page is required call NewPage
oTK.NewPage()
# Get the current version of Toolkit and save it to print on the PDF
tkVer = oTK.ToolkitVersion
# Text can be added onto the new page with
# SetFont, PrintText and PrintMultilineText functions
oTK.SetFont('Helvetica', 24)
oTK.PrintText(72.0, 720.0, tkVer)
# Images can be added onto the new page with
# PrintImage, PrintJPEG and PrintTIFF
oTK.PrintJPEG(strPath + 'IMG.jpg', 72.0, 300.0, 468.0, 400.0, true)
# Close the new file to complete PDF creation
oTK.CloseOutputFile()
# Release Object
oTK = ''
# Process Complete
puts "Done!"