<!-- Copyright (c) 2021 ActivePDF, Inc. --> <!-- ActivePDF Server 2013 --> <!-- Example generated 03/08/21 --> <% Dim strPath, results strPath = Server.MapPath(".") & "\" ' Instantiate Object Set oSVR = Server.CreateObject("APServer.Object") ' Specify the PDF version for the created PDF ' -1 = PDF Specification 1.2 ' 0 = PDF Specification 1.3 (Default) ' 1 = PDF Specification 1.4 ' 2 = PDF Specification 1.5 ' 3 = PDF Specification 1.6 ' 4 = PDF Specification 1.7 oSVR.CompatibilityLevel = 2 ' Convert the PostScript file into PDF Set results = oSVR.ConvertPSToPDF(strPath & "PS.ps", strPath & "CompatibilityLevel.pdf") If results.ServerStatus <> 0 Then ErrorHandler "ConvertPSToPDF", results, results.ServerStatus End If ' Release Object Set oSVR = Nothing ' Process Complete Response.Write "Done!" ' Error Handling Sub ErrorHandler(method, oResult, errorStatus) Response.Write("Error with " & method & ": <br/>" _ & errorStatus & "<br/>" _ & oResult.details) Response.End End Sub %>