Code Samples - Document Converter Pro

Example 19: Apply a stationery to an existing PDF file - Delphi Copy 

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
   procedure TForm1.StampPDFClick(Sender: TObject);
   var
     DC : Variant;
     RVal : Integer;
   begin

     try
       DC := CreateOleObject('Neevia.docConverter');
       DC.setParameter( 'StationeryFile', 'c:\users\public\stat.pdf' );

       DC.setParameter( 'StampRotate', '0' );
       DC.setParameter( 'StampX', '0' );
       DC.setParameter( 'StampY', '0' );

       // place the stationery as stamp (over the page content)
       DC.setParameter( 'Watermark', 'false' );  
  
       DC.setParameter( 'PlaceStationeryOnPages', '0' );

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

   end;