Sort Score
Result 10 results
Languages All
Labels All
Results 4,831 - 4,840 of 9,880 for

document viewer

(0.41 sec)
  1. Basic Usage | GroupDocs

    Quick Start section for GroupDocs.Metadata API Manage metadata in your Documents fast and easy with our intuitive and powerful API just with a few lines of code. Let’s review common usage scenarios when Documents are stored in a local drive and you want to manage them using GroupDocs.Metadata API....Viewer Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/java/basic-usage/
  2. GroupDocs Blog

    GroupDocs Blog - GroupDocs Blog | Document Automation Solutions for .NET & Java Developers...monthly release where new document formats is added in supported...detection for paragraphs in PDF document, deleted or inserted borders...

    blog.groupdocs.com/groupdocs.blog/page/80/
  3. Load from local disk | GroupDocs

    This article explains how to load from local disk while using GroupDocs. Watermarks API....Viewer Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Watermark Product...

    docs.groupdocs.com/watermark/net/load-from-loca...
  4. Load from Stream | GroupDocs

    Load from Stream As an alternative to a local file, Redactor can open a Document from stream. The following example demonstrates how to load and redact a Document using Stream: final FileInputStream stream = new FileInputStream("sample.docx"); try { final Redactor redactor = new Redactor(stream); try { // Here we can use Document instance to make redactions redactor.apply(new DeleteAnnotationRedaction()); redactor.save(); } finally { redactor.close(); } } finally { stream.close(); }...Viewer Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Redaction Product...

    docs.groupdocs.com/redaction/java/load-from-str...
  5. Compare documents | GroupDocs

    This article demonstrates how to compare Word, Excel, PowerPoint, Outlook, OneNote, PDF, Image, HTML, AutoCAD, Visio, OpenDocument, OneNote Documents using GroupDocs.Comparison for .NET....Viewer Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Comparison Product...

    docs.groupdocs.com/comparison/net/compare-docum...
  6. Save in rasterized PDF | GroupDocs

    The following example demonstrates how to save the Document as a rasterized PDF file: final Redactor redactor = new Redactor(Constants.SAMPLE_DOCX); try { // Here we can use Document instance to perform redactions redactor.apply(new ExactPhraseRedaction("John Doe", new ReplacementOptions("[personal]"))); SaveOptions tmp0 = new SaveOptions(); tmp0.setAddSuffix(false); tmp0.setRasterizeToPDF(true); // Saving as rasterized PDF with no suffix in file name redactor.save(tmp0); } finally { redactor.close(); }...Viewer Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Redaction Product...

    docs.groupdocs.com/redaction/java/save-in-raste...
  7. Perform Date Range search using C#

    Learn how to perform date range search using C# to find specific Document data within a given range. Discover how to search Documents by date range in C# with ease....Viewer Product Family GroupDocs.Comparison...especially when dealing with document management, reports, or logs...

    kb.groupdocs.com/search/net/perform-date-range-...
  8. Extract Text from DOC using Java

    This article explains how to extract text from DOC using Java. It also provides a code example for text extraction from DOC in Java without using extra software....Viewer Product Family GroupDocs.Comparison... managing and processing documents programmatically has become...

    kb.groupdocs.com/parser/java/extract-text-from-...
  9. Save overwriting original file | 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....Viewer Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Redaction Product...

    docs.groupdocs.com/redaction/java/save-overwrit...
  10. Remove Metadata from RTF using Java

    Learn how to efficiently remove metadata from RTF using Java with an example that shows how to delete metadata from RTF in Java without need of additional software....Viewer Product Family GroupDocs.Comparison...( RTF ) is a commonly used document format that allows for text...

    kb.groupdocs.com/metadata/java/remove-metadata-...