GroupDocs.Watermark library provides the ability to manipulate different watermark types such as TextWatermark, ImageWatermark. These watermarks could be added to documents, updated, removed, or searched inside already watermarked documents. Our product also provides information about document type and structure - file type, size, page count, etc. and generates document page previews based on provided options.
Here are the main GroupDocs.Watermark API concepts:
Watermarker is the main class that contains all the required methods for manipulating document watermarks.
Most part of the methods expect different options to add, update, search, or remove watermarks inside a document.
Watermarker class implements the Closable interface to correctly release used resources - like safely closing document streams when all operations are completed.
Watermarker object definition
The following code shows еру most used code pattern to define Watermarker object and call its methods.
// Add text watermark to PDF document
Watermarkerwatermarker=newWatermarker("document.pdf");TextWatermarkwatermark=newTextWatermark("Test watermark",newFont("Arial",36,FontStyle.Bold|FontStyle.Italic));watermarker.add(watermark);watermarker.save("Watermarked_document.pdf");watermarker.close();
Let’s review common usage scenarios when documents and watermarks are stored in a local drive and you want to manage them using GroupDocs.Watermark API:
More resources
Advanced usage topics
To learn more about document watermarking features and get familiar how to manage watermarks and more, please refer to the advanced usage section.
GitHub examples
You may easily run the code above and see the feature in action in our GitHub examples: