Last active
March 21, 2025 20:11
-
-
Save aspose-com-gists/a7eca5f5641d0033a137441c150fd79f to your computer and use it in GitHub Desktop.
Remove Watermark from PDF Online
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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