Example code is for an older version of Server, newer code is available.
<?php
// Copyright (c) 2021 ActivePDF, Inc.
// ActivePDF Server 2009
// Example generated 03/08/21
?>
<?php
// Get current path
$strPath = dirname(__FILE__) . "\\";
// Instantiate Object
$oSVR = new COM("APServer.Object");
// Create the PDF using the PDF/X specification
$oSVR->PDFX = true;
// Convert the PostScript file into PDF
$intPSToPDF = $oSVR->PSToPDF($strPath . "PS.ps", $strPath . "PDFX.pdf");
if ($intPSToPDF != 0) {
Error("PSToPDF", $intPSToPDF);
}
// Release Object
$oSVR = null;
// Process Complete
echo "Done!";
// Error Handling
function Error($method, $outputCode) {
echo "Error in " . $method . ": " . $outputCode;
}
?>