Example code is for an older version of Server, newer code is available.
# Copyright (c) 2021 ActivePDF, Inc.
# ActivePDF Server 2009
# Example generated 02/24/21
require 'win32ole'
# Get current path
strPath = File.expand_path(File.dirname(__FILE__)) + "\\"
# Instantiate Object
oSVR = WIN32OLE.new("APServer.Object")
# Specify the PDF version for the created PDF
# 0 = PDF Specification 1.3 (Default)
# 1 = PDF Specification 1.4
# 2 = PDF Specification 1.5
oSVR.CompatabilityLevel = 1
# Convert the PostScript file into PDF
intPSToPDF = oSVR.PSToPDF(strPath + 'PS.ps', strPath + 'CompatabilityLevel.pdf')
if intPSToPDF != 0
puts "Error in PSToPDF: #{intPSToPDF}"
end
# Release Object
oSVR = ''
# Process Complete
puts "Done!"