Example code is for an older version of Server, newer code is available.
<?php
// Copyright (c) 2021 ActivePDF, Inc.
// ActivePDF Server 2009
// Example generated 02/24/21
?>
<?php
// Get current path
$strPath = dirname(__FILE__) . "\\";
// Instantiate Object
$oSVR = new COM("APServer.Object");
// Path and filename of output
$oSVR->OutputDirectory = $strPath;
$oSVR->NewDocumentName = "Test.pdf";
// Start the print job
$intStartPrinting = $oSVR->StartPrinting();
if ($intStartPrinting != 0) {
Error("StartPrinting", $intStartPrinting);
}
// Here is where you can print to activePDF Server to create
// a PDF from any print job, set your application to print to
// a static activePDF Server printer or call oSVR.NewPrinterName
// to dynamically create a new printer on the fly
// This example simply calls oSVR.Test for testing purposes
$intTest = $oSVR->Test("Hello World!");
if ($intTest != 0) {
Error("Test", $intTest);
}
// Wait(seconds) for job to complete
$intWait = $oSVR->Wait(30);
if ($intWait != 0) {
Error("Wait", $intWait);
}
// Release Object
$oSVR = null;
// Process Complete
echo "Done!";
// Error Handling
function Error($method, $outputCode) {
echo "Error in " . $method . ": " . $outputCode;
}
?>