LATEST
NEWS - 2nd May 2006
What is Split PDF COM Component ?
Split PDF COM Component is for ASP, Cold
Fusion, PHP, VB, VC, .NET and other languages.
This software does NOT require Acrobat, Split PDF COM Component is designed for
server or desktop usage.
Split PDF software automates the process of
splitting multiple PDF files, you can split an existing pdf file or a
list of files, the result file is optimized for space, PDF Size
optimization is over 50% better than splitting files in Acrobat and
using other tools that use Acrobat to split, Split PDF also retains file
version information. In our tests the splitting speed is up to 70 times
quicker than Acrobat 7 split + save!
Example .asp, vb, .net, vc++, coldfusion & php code included
simple ASP example of usage:-
Set Obj = Server.CreateObject("SplitPDF.SplitPDFCom.1")
Obj.getSplitPDFFile("c:\\input.pdf", "c:\\output.pdf", "1-2")
simple VC++ example of usage:-
SplitPDFLib::ISplitPDFComPtr *test = NULL;
struct __declspec(uuid("{33D24183-7D5E-43B1-8A0C-2146D223C15A}")) IClass;
test = new SplitPDFLib::ISplitPDFComPtr( __uuidof(IClass) );
(*test)->getSplitPDFFile((char *)(_bstr_t)"c:\\input.pdf",(char *)(_bstr_t)"c:\\output.pdf",(char *)(_bstr_t)"1-2");
simple VB example of usage:-
Dim obj As SplitPDFLib.SplitPDFCom
Set obj = New SplitPDFLib.SplitPDFCom
obj.GetSplitPDFFile("C:\input.pdf","C:\output.pdf","1-2")
simple ASP .NET using C# example of usage:-
SplitPDF.SplitPDFCom SplitPDF = new SplitPDF.SplitPDFCom();
SplitPDF.getSplitPDFFile("C:\input.pdf","C:\output.pdf","1-2");
simple PHP example of usage:-
$Obj = new COM("SplitPDF.SplitPDFCom");
$SplitPDF = $Obj->getSplitPDFFile("C:\\input.pdf","C:\\output.pdf","1-2");
simple ColdFusion example of usage:-
<cfobject action = "Create" type = "COM" class =
"SplitPDF.SplitPDFCom" name = "Obj">
<cfset SplitPDF = #Obj.getSplitPDFFile("C:\input.pdf","C:\output.pdf","1-2")#>