<!-- Copyright (c) 2021 ActivePDF, Inc. --> <!-- ActivePDF Server 2013 --> <!-- Example generated 04/14/21 --> <% Dim strPath, results strPath = Server.MapPath(".") & "\" ' Instantiate Object Set oSVR = Server.CreateObject("APServer.Object") ' Set the quality options for the created PDF ' For custom settings to take effect set the configuration to custom oSVR.PredefinedSetting = 0 ' Specifies if ASCII85 encoding should be applied to binary streams oSVR.ASCIIEncode = true ' Automatically control the page orientation based on text flow oSVR.AutoRotate = true ' Specifies if CMYK colors should be converted to RGB oSVR.ConvertCMYKToRGB = true ' Set the DPI for the created PDF oSVR.Resolution = 300.0 ' Set whether existing halftone settings should be preserved oSVR.PreserveHalftone = 0 ' Set whether existing overprint settings should be preserved oSVR.PreserveOverprint = 0 ' Set how transfer functions from the input file are handled oSVR.PreserveTransferFunction = 0 ' Set whether the UCRandBGInfo, from the input file, should be preserved oSVR.UCRandBGInfo = 0 ' Color Image Quality Settings oSVR.ColorImageDownsampleThreshold = 1 oSVR.ColorImageDownsampleType = 0 oSVR.ColorImageFilter = 2 oSVR.ColorImageResolution = 72 ' Gray Image Quality Settings oSVR.GrayImageDownsampleThreshold = 1 oSVR.GrayImageDownsampleType = 0 oSVR.GrayImageFilter = 2 oSVR.GrayImageResolution = 72 ' Monochrome Image Quality Settings oSVR.MonoImageDownsampleThreshold = 1 oSVR.MonoImageDownsampleType = 0 oSVR.MonoImageFilter = 2 oSVR.MonoImageResolution = 72 ' Path and filename of output oSVR.OutputDirectory = strPath oSVR.NewDocumentName = "quality.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 ' 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 %>