Server-based PDF Combiner-X version | CoolUtils
Windows
2000/2003/Vista/7/8/10/11
and
2012/2016/2019/2022 Server
and
Docker/Citrix/Wine
PDF Combine X is a server-based app to combine PDF files into one multi-page standards compliant PDF and PDF/A document. Install it once on your server and merge PDFs in any way:
Each file can become a bookmark in the output PDF. The app can also create a clickable table of contents so that you could navigate your multi-page PDF easier.
With PDF Combine X you can encrypt PDFs with a password and set user permissions. Add a text watermark to avoid unauthorized use of your documents.
For legal professionals PDF Combine X offers bates stamping feature. You set the font, color and position of your stamp. Both sequential numbering and starting over with each folder is supported.
Use our straightforward API with just a few lines of code to merge PDFs on the fly. We offer sample code for ASP, C++, PHP. The standard commercial license is good or 1 server; all employees of the company can use it. If you want to redistribute the app to your clients, please, apply for the royalty-free license.
(includes 30 day FREE trial)
(only $350.00)
string src="C:\\test\\test1.pdf".Chr(13)."C:\\test\\test2.pdf"; string dest="C:\\test\\DestCombine.PDF"; PDFCombineX Cnv = new PDFCombineX(); Cnv.Convert(src, dest, "-c PDF -log c:\\Combine.log"); MessageBox.Show("Convert complete!");
dim C Set C=CreateObject("PDFCombine.PDFCombineX") C.Convert "c:\source1.pdf"+Chr(13)+"c:\source2.pdf", "c:\dest.pdf", "-fo" set C = nothing
$src="C:\\test\\test1.pdf".Chr(13)."C:\\test\\test2.pdf"; $dest="C:\\test\\DestCombine.PDF"; if (file_exists($dest)) unlink($dest); $c= new COM("PDFCombine.PDFCombineX"); $c->convert($src,$dest, "-c PDF -log c:\doc.log"); if (file_exists($dest)) echo "OK"; else echo "fail:".$c->ErrorMessage;
require 'win32ole' c = WIN32OLE.new('PDFCombine.PDFCombineX') src="C:\\test\\test1.pdf\nC:\\test\\test2.pdf"; dest="C:\\test\\DestCombine.pdf"; c.convert(src,dest, "-c PDF -log c:\\test\\PDFCombine.log"); if not File.exist?(dest) puts c.ErrorMessage end
import win32com.client import os.path c = win32com.client.Dispatch("PDFCombine.PDFCombineX") src="C:\\test\\test1.xlsx/nC:\\test\\test2.docx"; dest="C:\\test\\DestCombine.pdf"; c.convert(src, dest, "-c PDF -log c:\\test\\PDFCombine.log"); if not os.path.exists(file_path): print(c.ErrorMessage)
uses Dialogs, Vcl.OleAuto; var c: OleVariant; Source: String; begin c:=CreateOleObject('PDFCombine.PDFCombineX'); Source:='c:\test\source1.docx'+Chr(13)+'c:\test\source2.xlsx'; C.Convert(Source, 'c:\test\dest.pdf', '-cPDF -log c:\test\PDFCombine.log'); IF c.ErrorMessage<> Then ShowMessage(c.ErrorMessage); end;
var c = new ActiveXObject("PDFCombine.PDFCombineX"); var src="C:\\test\\test1.xlsx/nC:\\test\\test2.docx"; c.Convert(src, "C:\\test\\dest.pdf", "-c PDF"); if (c.ErrorMessage!="") alert(c.ErrorMessage)
use Win32::OLE; my $src="C:\\test\\test1.docx\nC:\\test\\test2.xlsx"; my $dest="C:\\test\\DestCombine.pdf"; my $c = CreateObject Win32::OLE 'PDFCombine.PDFCombineX'; $c->convert($src,$dest, "-c pdf -log c:\\test\\PDFCombine.log"); print $c->ErrorMessage if -e $dest;
Updated Tue, 19 Mar 2024
(only $350.00)