LATEST
NEWS - 10th October 2008
What is Append PDF COM Component ?
Append PDF COM Component is for ASP, Cold
Fusion, VB, PHP, VC, .NET and other languages.
This software does NOT require Acrobat, Append PDF COM Component is designed for
server or desktop usage. Append PDF software automates the process of
appending multiple PDF files, you can append an existing pdf file to
another file or a
list of files, the result file is optimized for space, PDF Size
optimization is over 50% better than appending files in Acrobat and
using other tools that use Acrobat to append, Append PDF also retains file
version information. In our tests the appending speed is up to 70 times
quicker than Acrobat 7 append + save!
Example .asp, vb, .net & vc++ code included
simple ASP example of usage:-
Set Obj = Server.CreateObject("AppendPDF.AppendPDFCom.1")
AppendPDF = Obj.getAppendPDFFile("f1.pdf", "f2.pdf", "out.pdf")
simple VC++ example of usage:-
AppendPDFLib::IAppendPDFComPtr *test = NULL;
struct __declspec(uuid("{33D24183-7D5E-43B1-8A0C-2146D223C15B}")) IClass;
CString ret = (char *)(_bstr_t)(*test)->getAppendPDFFile(
(char *)(_bstr_t)"f1.pdf",(char *)(_bstr_t)"f2.pdf",(char *)(_bstr_t)"out.pdf");
simple VB example of usage:-
Dim obj As AppendPDFLib.AppendPDFCom
Set obj = New AppendPDFLib.AppendPDFCom
GetAppendPDFFile = CStr(obj.GetAppendPDFFile("f1.pdf", "f2.pdf", "out.pdf"))
simple ASP .NET using C# example of usage:-
AppendPDF.AppendPDFCom AppendPDF = new AppendPDF.AppendPDFCom();
AppendPDF.getAppendPDFFile("f1.pdf","f2.pdf","out.pdf");
simple PHP example of usage:-
$Obj = new COM("AppendPDF.AppendPDFCom");
$AppendPDF = $Obj->getAppendPDFFile("f1.pdf", "f2.pdf", "out.pdf");
simple Cold Fusion example of usage:-
<cfobject action = "Create" type = "COM" class = "AppendPDF.AppendPDFCom"
name = "Obj"> <cfoutput>#Obj.getAppendPDFFile(intputFile1,
intputFile2, outputFile)#</cfoutput>