// TestPage2PDF.js script // Part of PDFCreator // License: GPL // Homepage: http://www.pdfforge.org/pdfcreator // Windows Scripting Host version: 5.6 // Version: 1.0.0.0 // Date: July, 28. 2014 // Author: Sazan Hoti // Comments: This script demonstrating the conversion of a printable test file in a pdf-file using // the COM interface of PDFCreator and additionally adding a background to all pages. var objFSO = new ActiveXObject("Scripting.FileSystemObject"); var objShell = new ActiveXObject("Shell.Application"); var Scriptname = objFSO.GetFileName(WScript.ScriptFullname); if (WScript.Version < 5.6) { WScript.Echo("You need the \"Windows Scripting Host version 5.6\" or greater!"); WScript.Quit(); } try { var PDFCreatorQueue = new ActiveXObject("PDFCreatorBeta.JobQueue"); WScript.Echo("Initializing PDFCreator queue..."); PDFCreatorQueue.Initialize(); var fullPath = objFSO.GetParentFolderName(WScript.ScriptFullname) + "\\TestPage.pdf"; WScript.Echo("Setting up target path to: " + fullPath); WScript.Echo("Printing one windows test page..."); objShell.ShellExecute("RUNDLL32.exe", "PRINTUI.DLL,PrintUIEntry /k /n \"PDFCreator\"", "", "open", 1); WScript.Echo("Waiting for the job to arrive at the queue..."); if(!PDFCreatorQueue.WaitForJob(10)) { WScript.Echo("The print job did not reach the queue within " + 10 + " seconds"); } else { WScript.Echo("Currently there are " + PDFCreatorQueue.CountJobs + " job(s) in the queue"); WScript.Echo("Getting job instance"); var job = PDFCreatorQueue.NextJob; job.SetProfileByGuid("DefaultGuid"); WScript.Echo("Applying background page settings..."); /* The SetProfileSettings method allows us to tell the job that it should add a background to the first page */ //Since we want to add a background page, we have to enable it first job.SetProfileSetting("BackgroundPage.Enabled", "true"); //We want the background page to show up on each page of the converted file job.SetProfileSetting("BackgroundPage.Repetition", "RepeatAllPages"); job.SetProfileSetting("BackgroundPage.File", objFSO.GetParentFolderName(WScript.ScriptFullname) + "\\BackgroundPage.pdf"); //Notice that the first parameter here says that we want to attach a file and the second specifies the file. It is very important that //the file is in pdf-Format otherwise exceptions will occur WScript.Echo("Converting under \"DefaultGuid\" conversion profile"); job.ConvertTo(fullPath); if(!job.IsFinished || !job.IsSuccessful) { WScript.Echo("Could not convert the file: " + fullPath); } else { WScript.Echo("Job finished successfully"); } } WScript.Echo("Releasing the object"); PDFCreatorQueue.ReleaseCom(); } catch(e) { WScript.Echo(e.message); PDFCreatorQueue.ReleaseCom(); }