Example code is for an older version of Toolkit, newer code is available.
<?php
// Copyright (c) 2021 ActivePDF, Inc.
// ActivePDF Toolkit 2016
// Example generated 02/26/21
?>
<?php
// Get current path
$strPath = dirname(__FILE__) . "\\";
// Instantiate Object
$oTK = new COM("APToolkit.Object");
// Get the unique filename to use with OpenOutputFile
$strUniqueName = $oTK->GetUniqueFileName();
// Create the new PDF file
$intOpenOutputFile = $oTK->OpenOutputFile($strPath . $strUniqueName);
if ($intOpenOutputFile != 0) {
Error("OpenOutputFile", $intOpenOutputFile);
}
// Each time a new page is required call NewPage
$oTK->NewPage();
// Get the current version of Toolkit and save it to print on the PDF
$tkVer = $oTK->ToolkitVersion;
// Stamp the version onto the new page
$oTK->SetFont("Helvetica", 24);
$oTK->PrintText(72.0, 720.0, $tkVer);
// Close the new file to complete PDF creation
$oTK->CloseOutputFile();
// Release Object
$oTK = null;
// Process Complete
echo "Done!";
// Error Handling
function Error($method, $outputCode) {
echo "Error in " . $method . ": " . $outputCode;
}
?>