' Copyright (c) 2021 ActivePDF, Inc. ' ActivePDF Server 2013 ' Example generated 04/15/21 Dim FSO, strPath, results ' Get current path Set FSO = CreateObject("Scripting.FileSystemObject") strPath = FSO.GetFile(Wscript.ScriptFullName).ParentFolder & "\" Set FSO = Nothing ' Instantiate Object Set oSVR = CreateObject("APServer.Object") ' Stamp Images and Text onto the output PDF oSVR.AddStampCollection "TXTinternal" oSVR.StampFont = "Helvetica" oSVR.StampFontSize = 108 oSVR.StampFontTransparency = 0.1 oSVR.StampRotation = 45.0 oSVR.StampFillMode = 2 oSVR.SetStampColor 255, 0, 0, 0 oSVR.SetStampStrokeColor 100, 0, 0, 0 oSVR.AddStampText 116.0, 156.0, "Internal Only" oSVR.AddStampCollection "IMGimage" oSVR.AddStampImage strPath & "logo.png", 508.0, 16.0, 32.0, 32.0, true ' Set whether the stamp collection(s) appears in the background or foreground oSVR.StampBackground = 0 ' Path and filename of output oSVR.OutputDirectory = strPath oSVR.NewDocumentName = "stamped.pdf" ' Start the print job Set results = oSVR.BeginPrintToPDF() If results.ServerStatus <> 0 Then ErrorHandler "BeginPrintToPDF", results, results.ServerStatus End If ' 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.TestPrintToPDF for testing purposes Set results = oSVR.TestPrintToPDF("Hello World!") If results.ServerStatus <> 0 Then ErrorHandler "TestPrintToPDF", results, results.ServerStatus End If ' Wait(seconds) for job to complete Set results = oSVR.EndPrintToPDF(30) If results.ServerStatus <> 0 Then ErrorHandler "EndPrintToPDF", results, results.ServerStatus End If ' If there will be multiple conversions in the same instance ' you can clear the stamp collections or remove one individually ' in order to change what is stamped on the next conversion oSVR.RemoveStampCollection "TXTinternal" oSVR.ClearStampCollections ' Release Object Set oSVR = Nothing ' Process Complete Wscript.Echo("Done!") ' Error Handling Sub ErrorHandler(method, oResult, errorStatus) Wscript.Echo("Error with " & method & ": " & vbcrlf _ & errorStatus & vbcrlf _ & oResult.details) Wscript.Quit 1 End Sub