Add watermark

GroupDocs.Conversion allows you to apply a watermark to the converted document.  You can set the following options for controlling how the watermark will be stamped in the converted document:

WatermarkOptions

  • Text - watermark text
  • Font - watermark font name
  • Color - watermark color
  • Width - watermark width
  • Height  - watermark height
  • Top - watermark top position
  • Left  - watermark left position
  • RotationAngle - watermark rotation angle
  • Transparency - watermark transparency
  • Background -  specifies that the watermark is stamped as background. If the value is true, the watermark is laid at the bottom. By default is false and the watermark is laid on top.

Here are the steps to follow:

Following code snippet shows how to apply watermark to the output document:

Converter converter = new Converter("sample.docx");
PdfConvertOptions options = new PdfConvertOptions();

WatermarkOptions watermark = new WatermarkOptions();
watermark.setText("Sample watermark");
watermark.setColor(Color.red);
watermark.setWidth(100);
watermark.setHeight(100);
watermark.setBackground(true);

options.setWatermark(watermark);

converter.convert("converted.pdf", options);