# Copyright (c) 2021 ActivePDF, Inc. # ActivePDF Server 2013 # Example generated 04/17/21 require 'win32ole' # Get current path strPath = File.expand_path(File.dirname(__FILE__)) + "\\" # Instantiate Object oSVR = WIN32OLE.new("APServer.Object") # Convert Image to PDF # Supported image types found in Server documentation results = oSVR.ConvertImageToPDF(strPath + 'IMG.jpg', strPath + 'IMG.pdf') if results.ServerStatus != 0 puts "Error with ConvertImageToPDF:" puts "#{results.ServerStatus}" puts results.Details exit 1 end # Release Object oSVR = '' # Process Complete puts "Done!"