space1 separator space2  

Code Samples - Neevia PDFstamp

Example 5: Stamp a PDF file with multiple stamps - C++ 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
   #include "stdafx.h"

   #using <mscorlib.dll>
   #import "PDFstamp.tlb" no_namespace named_guids 
   using namespace System;

   int _tmain()
   {
	IPDFstampPtr NVStamp;	
	long indx;
	::CoInitialize(NULL); 

	NVStamp.CreateInstance(__uuidof(PDFstamp));  

	indx = NVStamp->CreateNewStamp();
	NVStamp->Stamps[indx]->StampType = 0;
	NVStamp->Stamps[indx]->Name = "Stamp1";
	NVStamp->Stamps[indx]->Text = "WATERMARK";
	NVStamp->Stamps[indx]->FontName = "Arial";
	NVStamp->Stamps[indx]->FontSize = 50;
	NVStamp->Stamps[indx]->TextRenderingMode = 0;
	NVStamp->Stamps[indx]->TextColor = "#FF0000";
	NVStamp->Stamps[indx]->X = "0";
	NVStamp->Stamps[indx]->Y = "0";
	NVStamp->Stamps[indx]->PlaceAs = 1;

	indx = NVStamp->CreateNewStamp();
	NVStamp->Stamps[indx]->StampType = 1;
	NVStamp->Stamps[indx]->Name = "Stamp2";
	NVStamp->Stamps[indx]->Text = "LINE1%n%LINE2%n%LINE3";
	NVStamp->Stamps[indx]->FontName = "Arial";
	NVStamp->Stamps[indx]->FontSize = 50;
	NVStamp->Stamps[indx]->TextRenderingMode = 0;
	NVStamp->Stamps[indx]->TextColor = "#FF0000";
	NVStamp->Stamps[indx]->X = "right";
	NVStamp->Stamps[indx]->Y = "0";
	NVStamp->Stamps[indx]->PlaceAs = 1;
	NVStamp->Stamps[indx]->Width = "200";
	NVStamp->Stamps[indx]->Height = "200";

	indx = NVStamp->CreateNewStamp();
	NVStamp->Stamps[indx]->StampType = 2;
	NVStamp->Stamps[indx]->Name = "Stamp3";
	NVStamp->Stamps[indx]->ImageFile = "c:\\stamp.jpg"; 
	NVStamp->Stamps[indx]->X = "0";
	NVStamp->Stamps[indx]->Y = "top";
	NVStamp->Stamps[indx]->PlaceAs = 1;

	indx = NVStamp->CreateNewStamp();
	NVStamp->Stamps[indx]->StampType = 3;
	NVStamp->Stamps[indx]->Name = "Stamp4";
	NVStamp->Stamps[indx]->PDFOverlayFile = "c:\\overlay.pdf"; 
	NVStamp->Stamps[indx]->X = "right";
	NVStamp->Stamps[indx]->Y = "top";
	NVStamp->Stamps[indx]->PlaceAs = 1;

	NVStamp->StampPDF("c:\\in.pdf", "c:\\out.pdf");

	Console::WriteLine(S"Done.");
	return 0;
   }