Skip to content

Instantly share code, notes, and snippets.

@aspose-com-gists
Last active March 21, 2025 20:11
Show Gist options
  • Save aspose-com-gists/a7eca5f5641d0033a137441c150fd79f to your computer and use it in GitHub Desktop.
Save aspose-com-gists/a7eca5f5641d0033a137441c150fd79f to your computer and use it in GitHub Desktop.
Remove Watermark from PDF Online
// Load the PDF document
Document document = new Document("Watermark.pdf");
// Remove watermark
if (document.Pages[1].Artifacts[1].Subtype == Aspose.Pdf.Artifact.ArtifactSubtype.Watermark)
document.Pages[1].Artifacts.Delete(document.Pages[1].Artifacts[1]);
// Save the updated document
document.Save("output.pdf");
// Open document
Document document = new Document("watermark.pdf");
// Remove watermark
for (Artifact artifact : pdfDocument.getPages().get_Item(1).getArtifacts())
{
// If artifact type is watermark, increate the counter
if (artifact.getSubtype() == Artifact.ArtifactSubtype.Watermark)
document.getPages().get_Item(1).getArtifacts().delete(artifact);
}
// Save the updated document
document.Save("output.pdf");
import aspose.pdf as ap
# Load PDF file
document = ap.Document("watermarked.pdf")
# Create an array to keep watermarks
artifactsToBeDeleted = []
# Loop through all pages
for page in document.pages:
# Access each artifact in page
for item in page.artifacts:
# Check if artifact is a watermark
if item.sub_type == ap.Artifact.artifact_subtype.WATERMARK:
# Keep reference in array
artifactsToBeDeleted.add(item)
# Loop through the watermark artifacts
for item in artifactsToBeDeleted:
# Delete the artifact
page.artifacts.delete(item)
# Save the resultant PDF file
document.save("Output.pdf")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment