This topic describes how to optimize PDF file using the GroupDocs.Viewer Java API for web browser or to reduce size....Assembly Product Solution GroupDocs...
This article explains how to obtain supported file formats list when viewing documents with GroupDocs.Comparison within your Java applications....Assembly Product Solution GroupDocs...
This article explains how to check whether PDF, Word, Excel, PowerPoint document is password protected or not, and how to do this using GroupDocs.Merger for .NET....Assembly Product Solution GroupDocs...
Why To Migrate? Here are the key reasons to use the new updated API provided by GroupDocs.Comparison for Java since version 20.4:
Comparer class introduced as a single entry point to compare documents of any supported file format with various options and ability to accept/reject found differences in resultant document. Document compare options for all document types. Instead of using document related options now options are related to compare type only....Assembly Product Solution GroupDocs...
This article explains how to load PDF, Word, Excel, PowerPoint documents from local disk when using GroupDocs.Comparison for Java....Assembly Product Solution GroupDocs...
You might need to save a document to any custom file at any location on the local disc or a even a Stream.
The following example demonstrates how to save a document to any location.
final Redactor redactor = new Redactor("Sample.docx"); try { // Here we can use document instance to perform redactions RedactorChangeLog result = redactor.apply(new ExactPhraseRedaction("John Doe", new ReplacementOptions(java.awt.Color.RED))); if (result.getStatus() != RedactionStatus.Failed) { // Save the document to a custom location and convert its pages to images final FileOutputStream fileStream = new FileOutputStream("C:\\\\Temp\\\\sample_output_file....Assembly Product Solution GroupDocs...