<?php // Copyright (c) 2021 ActivePDF, Inc. // ActivePDF Server 2013 // Example generated 03/05/21 ?> <?php // Get current path $strPath = dirname(__FILE__) . "\\"; // Instantiate Object $oSVR = new COM("APServer.Object"); // ActivePDF Service runs under the 'Local System' account, as such it will only see // certificates located in HKEY_LOCAL_MACHINE. To use certificates located under // a specific user set the impersonate user options in the GUI or API $oSVR->InvisiblySignFile("localhost", "My", true, "Mission Viejo, CA", "Approval", "949-555-1212", 1); // Convert the PostScript file into PDF $results = $oSVR->ConvertPSToPDF($strPath . "PS.ps", $strPath . "Signed.pdf"); if ($results->ServerStatus != 0) { Error("ConvertPSToPDF", $results, $results->ServerStatus); } // Release Object $oSVR = null; // Process Complete echo "Done!"; // Error Handling function Error($method, $oResults, $errorStatus) { echo "Error with " . $method . ": <br/>" . $errorStatus . "<br/>" . $oResults->details; exit(1); } ?>