Example code is for an older version of Server, newer code is available.
' Copyright (c) 2021 ActivePDF, Inc.
' ActivePDF Server 2009
' Example generated 03/03/21
Dim FSO, strPath, intImageToPDF
' Get current path
Set FSO = CreateObject("Scripting.FileSystemObject")
strPath = FSO.GetFile(Wscript.ScriptFullName).ParentFolder & "\"
Set FSO = Nothing
' Instantiate Object
Set oSVR = CreateObject("APServer.Object")
' Enable extra logging in the activepdflogs folder
oSVR.DebugMode = true
' Convert Image to PDF
' Supported image types found in Server documentation
intImageToPDF = oSVR.ImageToPDF(strPath & "IMG.jpg", strPath & "Debug.pdf", 0, 0, true, true, 72, "", 0, 0)
If intImageToPDF <> 0 Then
ErrorHandler "ImageToPDF", intImageToPDF
End If
' Release Object
Set oSVR = Nothing
' Process Complete
Wscript.Echo("Done!")
' Error Handling
Sub ErrorHandler(method, outputCode)
Wscript.Echo("Error in " & method & ": " & outputCode)
End Sub