Skip to content
Guides

Delete Watermark

To delete watermarks, follow these steps:

Call releaseAllWatermarks() on the CPDFDocument object to remove all watermarks from the document.

This example shows how to delete the watermark:

Java
//remove all watermarks from the document.
document.releaseAllWatermarks();
kotlin
//remove all watermarks from the document.
document.releaseAllWatermarks()