' Copyright (c) 2021 ActivePDF, Inc. ' ActivePDF Server 2013 ' Example generated 03/02/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") ' Convert Image to PDF ' Supported image types found in Server documentation Set results = oSVR.ConvertImageToPDF(strPath & "IMG.jpg", strPath & "IMG.pdf") If results.ServerStatus <> 0 Then ErrorHandler "ConvertImageToPDF", results, results.ServerStatus End If ' 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