Hi
I am using this code to add water mark to word documents
using (Watermarker watermarker = new Watermarker(stream, new GroupDocs.Watermark.Options.LoadOptions(password)))
{
// Use path to the image as constructor's parameter
using (ImageWatermark watermark = new ImageWatermark(ImagePath))
{
watermark.HorizontalAlignment = GroupDocs.Watermark.Common.HorizontalAlignment.Center;
watermark.VerticalAlignment = VerticalAlignment.Center;
watermark.SizingType = SizingType.ScaleToParentArea;
watermarker.Add(watermark);
}
// Save the resultant document
watermarker.Save();
}
the problem is when document is having any image, watermark is not visible on image.
rest of the text document it is fine.
Capture.PNG.jpg (74.5 KB)
see the attached image for more details.
Please let me know is there a way to overcome this