This article explains how to load from local disk while using GroupDocs. Watermarks API....Close Navigation Products GroupDocs.Total Product Family GroupDocs...
This article explains how to save document to the specified stream while using GroupDocs. Watermarks API....Close Navigation Products GroupDocs.Total Product Family GroupDocs...
This article explains how to load a document from FTP storage with GroupDocs.Viewer within your Java applications....Close Navigation Products GroupDocs.Total Product Family GroupDocs...
GroupDocs hosts all Java APIs on GroupDocs Repository. You use the GroupDocs.Annotation for Java API directly in your Maven projects with simple configurations.
Specify GroupDocs Repository Configuration First, you need to specify GroupDocs repository configuration/location in your Maven pom.xml as follows: XML GroupDocs Artifact RepositoryGroupDocs Artifact Repositoryhttps://releases.groupdocs.com/java/repo/ Define GroupDocs.Annotation for Java API Dependency Then define GroupDocs.Annotation for Java API dependency in your pom.xml as follows:...Close Navigation Products GroupDocs.Total Product Family GroupDocs...
The following example demonstrates how to save the redacted document, replacing an original file:
// Make a copy of sample file Files.copy(new File("Sample.docx").toPath(), new File("OverwrittenSample.docx").toPath(), StandardCopyOption.REPLACE_EXISTING); // Apply redaction final Redactor redactor = new Redactor("OverwrittenSample.docx"); try { RedactorChangeLog result = redactor.apply(new ExactPhraseRedaction("John Doe", new ReplacementOptions(java.awt.Color.RED))); if (result.getStatus() != RedactionStatus.Failed) { SaveOptions options = new SaveOptions(); options.setAddSuffix(false); options.setRasterizeToPDF(false); // Save the document in original format overwriting original file redactor.save(options); } } finally { redactor....Close Navigation Products GroupDocs.Total Product Family GroupDocs...
This API provides a powerful API to manage text and image watermarks in documents and images, including PDFs, Word, Excel, PowerPoint, and more, using Python on any platform....Find Answers by API GroupDocs.Total Product Family GroupDocs...
Find answers about converting documents and images of various types using code on any platform....Find Answers by API GroupDocs.Total Product Family GroupDocs...