Sort Score
Result 10 results
Languages All
Labels All
Results 1,051 - 1,060 of 3,578 for

document security

(0.03 sec)
  1. Extend supported extensions list | Documentation

    This article explains the method which can be used when for some reason files have non-standard extensions or if its format is supported, but not pre-configured....Us Contact Customers Legal Security Events Acquisition Ask AI...AI GroupDocs Documentation / GroupDocs.Redaction Product Family...

    docs.groupdocs.com/redaction/net/extend-support...
  2. Reorder pages | Documentation

    Reorder pages when rendering Documents to PDF with GroupDocs.Viewer for Java...Us Contact Customers Legal Security Events Acquisition Ask AI...AI GroupDocs Documentation / GroupDocs.Viewer Product Family /...

    docs.groupdocs.com/viewer/java/reorder-pages/
  3. Features Overview | Documentation

    This article describes the main functions of GroupDocs.Comparison for .NET. Comparing files, Accepting or rejecting changes between Documents, receiving information from a Document and creating a summary report...Us Contact Customers Legal Security Events Acquisition Ask AI...AI GroupDocs Documentation / GroupDocs.Comparison Product Family...

    docs.groupdocs.com/comparison/net/features-over...
  4. Save in rasterized PDF | Documentation

    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(); }...Us Contact Customers Legal Security Events Acquisition Ask AI...AI GroupDocs Documentation / GroupDocs.Redaction Product Family...

    docs.groupdocs.com/redaction/java/save-in-raste...
  5. Features Overview | Documentation

    A Java metadata API can be effectively used in removing, updating and reading metadata in a variety of formats. It is very effective in removing metadata from photos. Supporting iptc metadata, exif metadata and xmp metadata....Us Contact Customers Legal Security Events Acquisition Ask AI...AI GroupDocs Documentation / GroupDocs.Metadata Product Family...

    docs.groupdocs.com/metadata/java/features-overv...
  6. Load from local disk | Documentation

    This article explains how to load from local disk while using GroupDocs. Watermarks API....Us Contact Customers Legal Security Events Acquisition Ask AI...AI GroupDocs Documentation / GroupDocs.Watermark Product Family...

    docs.groupdocs.com/watermark/net/load-from-loca...
  7. Rotate pages | Documentation

    This article explains how to rotate PDF, HTML or Image pages when rendering Documents with GroupDocs.Viewer within your Java applications....Us Contact Customers Legal Security Events Acquisition Ask AI...AI GroupDocs Documentation / GroupDocs.Viewer Product Family /...

    docs.groupdocs.com/viewer/java/flip-or-rotate-p...
  8. Zero-Footprint, Cross-Platform Java PDF Viewer ...

    GroupDocs.Viewer for Java is a lightweight library that allows developers to display PDF (as well as Microsoft Word, Excel, PowerPoint and over 50 other types of Documents) within their Java apps. The Java PDF viewer provides cross-platform compatibility, allowing end users to view PDF Documents from any web-enabled device, including mobiles and tablets. The viewer works with all modern browsers: IE8+, Chrome, FireFox, Safari 5+, Opera and their mobile versions....and over 50 other types of documents) within their Java apps. The...allowing end users to view PDF documents from any web-enabled device...

    blog.groupdocs.com/viewer/zero-footprint-cross-...
  9. Plain text | Documentation

    This article explains that how to extract plain formatted text from Document page....Us Contact Customers Legal Security Events Acquisition Ask AI...AI GroupDocs Documentation / GroupDocs.Parser Product Family /...

    docs.groupdocs.com/parser/net/plain-text/
  10. Save overwriting original file | Documentation

    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....Us Contact Customers Legal Security Events Acquisition Ask AI...AI GroupDocs Documentation / GroupDocs.Redaction Product Family...

    docs.groupdocs.com/redaction/java/save-overwrit...