Code Samples - Document Converter Pro

Example 17: Split an existing PDF file into single pages - Delphi Copy 

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
   procedure TForm1.SplitPDFClick(Sender: TObject);
   var
     DC : Variant;
     RVal : Integer;
   begin

     try
       DC := CreateOleObject('Neevia.docConverter');
       RVal := DC.splitPDF('c:\users\public\test.pdf','c:\users\public\out\');
       If (RVal <> 0) Then
         ShowMessage('There was an error!!! Code: '+IntToStr(RVal))
       Else
         ShowMessage('Done !!!');
     finally
       DC:= Unassigned;
     end;

   end;