Sort Score
Result 10 results
Languages All
Labels All
Results 1,001 - 1,010 of 3,497 for

secure

(0.15 sec)
  1. Working with metadata in WEBP images | Document...

    Working with XMP metadata GroupDocs.Metadata for Java allows managing XMP metadata in JPEG 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 JPEG 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:...Us Contact Customers Legal Security Events Acquisition Ask AI...

    docs.groupdocs.com/metadata/java/working-with-m...
  2. Remove annotation from document | Documentation

    This page describes how to remove annotations from document when collaborate, edit and annotate documents using GroupDocs.Annotation for Java....Us Contact Customers Legal Security Events Acquisition Ask AI...

    docs.groupdocs.com/annotation/java/remove-annot...
  3. Working with Chart Reports - Bubble | Documenta...

    The Bubble Chart As per wikipedia, a Bubble Chart can be described as: A bubble chart is a type of chart that displays three dimensions of data. Each entity with its triplet (v1, v2, v3) of associated data is plotted as a disk that expresses two of the vi values through the disk’s xy location and the third through its size. Bubble charts can facilitate the understanding of social, economical, medical, and other scientific relationships....Us Contact Customers Legal Security Events Acquisition Ask AI...

    docs.groupdocs.com/assembly/java/working-with-c...
  4. Load from Stream | Documentation

    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(); }...Us Contact Customers Legal Security Events Acquisition Ask AI...

    docs.groupdocs.com/redaction/java/load-from-str...
  5. Load from local disc | Documentation

    Load from local disc GroupDocs.Redaction.Redactor class is a main class in Redaction API, providing functionality to open a document. When document is located on the local disk, you can pass its path to *Redactor *class constructor. The following example demonstrates how to open a document from local disc: final Redactor redactor = new Redactor("sample.docx"); try { // Here we can use document instance to perform redactions redactor.apply(new DeleteAnnotationRedaction()); redactor.save(); } finally { redactor....Us Contact Customers Legal Security Events Acquisition Ask AI...

    docs.groupdocs.com/redaction/java/load-from-loc...
  6. Searching | Documentation

    The articles in this section describe advanced topics related to search operations. You will find details about different search aspects. Search types, advanced options, internal implementation details: More resources GitHub examples You may easily run the code from documentation articles and see the features in action in our GitHub examples: GroupDocs.Search for .NET examples GroupDocs.Search for Java examples Free online document search App Along with full featured .NET library we provide simple, but powerful free Apps....Us Contact Customers Legal Security Events Acquisition Ask AI...

    docs.groupdocs.com/search/java/searching/
  7. How to Sign PDF with Text Signature using C#

    This tutorial aims to guide you how to sign PDF with text signature using C#. Also, we will furnish you with a code example to add text signature in PDF using C#....workflow and strengthen the security of your digital files. This...

    kb.groupdocs.com/signature/net/how-to-sign-pdf-...
  8. Using OCR to redact image documents | Documenta...

    GroupDocs.Redaction supports both types of image documents for Optical Character Recognition (OCR): image files, such as printed document scans (PNG, JPG, etc.) embedded images within office documents (PDF, DOCX, etc.) You have to implement IOcrConnector interface and pass the instance to RedactorSettings constructor. For more details, see OCR Usage Basics article. OCR usage limitations There are the following limitations of the OCR with GroupDocs.Redaction v21.3: textual replacements are not supported, so you have to use color box replacements to redact text in images....Us Contact Customers Legal Security Events Acquisition Ask AI...

    docs.groupdocs.com/redaction/net/using-ocr/
  9. Save in original format | Documentation

    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(); }...Us Contact Customers Legal Security Events Acquisition Ask AI...

    docs.groupdocs.com/redaction/java/save-in-origi...
  10. Single Row Image in HTML Document | Documentation

    Note In this article, we will use GroupDocs.Assembly to generate a Single Row Image report in HTML Document format. Note The code uses some of the objects defined in The Business Layer. Single Row Image in HTML Document Reporting Requirement As a report developer, you are required to represent information of first single manager with the following key requirements: Report must show image of the manager It must show Name and age of manager Report must be generated in the HTML Document....Us Contact Customers Legal Security Events Acquisition Ask AI...

    docs.groupdocs.com/assembly/java/single-row-ima...