Skip to content

Instantly share code, notes, and snippets.

@GroupDocsGists
Created October 9, 2019 12:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GroupDocsGists/329a1a434791a202bd325f5440dad206 to your computer and use it in GitHub Desktop.
Save GroupDocsGists/329a1a434791a202bd325f5440dad206 to your computer and use it in GitHub Desktop.
using (Converter converter = new Converter("sample.docx"))
{
WatermarkOptions watermark = new WatermarkOptions
{
Text = "Sample watermark",
Color = Color.Red,
Width = 100,
Height = 100,
Background = true
};
PdfConvertOptions options = new PdfConvertOptions
{
Watermark = watermark
};
converter.Convert("converted.pdf", options);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment