The page describes how to load PDF, Word, Excel, PowerPoint documents from local disk using GroupDocs.Annotation for Java....Redaction Product Solution GroupDocs.Classification Product Solution Purchase...
This article gives the knowledge about nesting search queries in object form using Java search API....Redaction Product Solution GroupDocs.Classification Product Solution Purchase...
The following example demonstrates how to save file in its original format with current date as a suffix:
final Redactor redactor = new Redactor("sample.docx"); try { // Here we can use document instance to perform redactions redactor.apply(new ExactPhraseRedaction("John Doe", new ReplacementOptions("[personal]"))); SaveOptions saveOptions = new SaveOptions(); saveOptions.setAddSuffix(true); saveOptions.setRasterizeToPDF(false); saveOptions.setRedactedFileSuffix(new SimpleDateFormat("dd-MM-yyyy").format(new Date())); // Saving in original format with date as DateTime.getNow().toShortDateString()a suffix redactor.save(saveOptions); } finally { redactor.close(); }...Redaction Product Solution GroupDocs.Classification Product Solution Purchase...
This article explains how to load from local disk while using GroupDocs. Watermarks Java API....Redaction Product Solution GroupDocs.Classification Product Solution Purchase...
This article explains how to save document to the same file or stream while using GroupDocs. Watermarks API....Redaction Product Solution GroupDocs.Classification Product Solution Purchase...
Check this guide to learn how to adjust PNG and JPG images size when rendering documents with Image Viewer by GroupDocs for Java....Redaction Product Solution GroupDocs.Classification Product Solution Purchase...
This article explains how to replace missing font when rendering documents with GroupDocs.Viewer within your Java applications....Redaction Product Solution GroupDocs.Classification Product Solution Purchase...
Working with XMP metadata GroupDocs.Metadata for .NET allows managing XMP metadata in HEIF/HEIC images. For more details please refer to the following guide: Working with XMP metadata.
Working with EXIF metadata The GroupDocs.Metadata API supports handling EXIF metadata in HEIF/HEIC images. Please find appropriate code samples in the Working with EXIF metadata section.
More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...Redaction Product Solution GroupDocs.Classification Product Solution Purchase...
This example demonstrates how to load a password-protected document.
advanced_usage.loading_files.LoadPasswordProtectedDocument
JavaScript try { var loadOptions = new LoadOptions(); loadOptions.setPassword("123"); const metadata = new groupdocs.metadata.Metadata("protected.docx", loadOptions); } More resources Advanced usage topics To learn more about library features and get familiar how to manage metadata and more, please refer to theadvanced usage section.
GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...Redaction Product Solution GroupDocs.Classification Product Solution Purchase...
Retrieve and save attachments from emails, Outlook files, archives, and PDFs....Redaction Product Solution GroupDocs.Classification Product Solution Purchase...