server side PDF generation and manipulation.
pdfMachine SDK is a Software Development Kit (SDK) for PDF conversion and manipulation.
pdfMachine SDK runs on Windows 7 / 8 / 10 / 2008 / 2012 / 2016 / 2019
includes x64 Platforms.
Microsoft Office 365 has to be installed to be able to convert Microsoft
Office files to PDF.
Technical documentation. Installation instructions and COM API descriptions.
The license agreement you must agree to to use the software.
pdfServMachine.exe
The COM server.
ConvertToPdf.exe
The command line converter.
The web service definition file.
(note: installation of at least pdfMachine 15.41 is a prerequisite for this version)
Contact Broadgun Software
Here are a few simple examples that demonstrate how to use pdfMachine SDK. Click here for more Windows Script, C++, C#, ASP and command line examples
Look at the following sample javascript to see how easy it is to use the COM API:
// Example javascript script to convert the
// www.google.com web page to a PDF file
var conv = new ActiveXObject("pdfServMachine.converter");
conv.convert("http://www.google.com", "c:\\google.pdf", false);
WScript.Echo("finished conversion");
This simple command line call produces report.pdf in the current directory:
ConvertToPdf report.doc
This time around the calling application starts the windows print job. The file c:\x.txt is converted to the PDF file c:\x.pdf, but Notepad.exe does the printing.
var conv = new ActiveXObject("pdfServMachine.converter");
var shell = new ActiveXObject("WScript.Shell");
conv.printJobStart("c:\\x.pdf", true);
shell.Run("notepad.exe /p c:\\x.txt");
conv.printJobEnd(true, false);
WScript.Echo("finished conversion");