Hi Skeeb,
Thank you for your interest in Essential PDF. A watermark image can be added to a PDF document using PDFTemplateArea. Use the following code:
//To create a stamp.
PDFTemplateArea stamp = document.Areas.Add( new SizeF( 300, 400 ) );
//Set properties to stamp.
stamp.Foreground = false;
Image img1 = Image.FromFile(@"..\..\Data\PDF.gif");
//Add a image object to stamp.
ImageShape img = stamp.Canvas.AddImage(img1);
Here is a sample for your reference:
WaterMark.zip
Please take a look and let me know if you have any other questions.
Thanks,
Bhagya.