space1 separator space2  

Code Samples - Neevia PDFstamp

Example 3: Stamp a PDF file with an image watermark - 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
   #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 = 2;
	NVStamp->Stamps[indx]->Name = "Stamp1";
	NVStamp->Stamps[indx]->ImageFile = "c:\\stamp.jpg"; 
 	NVStamp->Stamps[indx]->X = "center";
	NVStamp->Stamps[indx]->Y = "center";
 
	NVStamp->Stamps[indx]->PlaceAs = 1;

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

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