Sort Score
Result 10 results
Languages All
Labels All
Results 371 - 380 of 862 for

java pdf signature security

(0.16 sec)
  1. Load Email document with options | Documentation

    Learn this article and check how to load and convert Email documents with advanced options using GroupDocs.Conversion for Java API....Signature Product Solution GroupDocs...Us Contact Customers Legal Security Events Acquisition Ask AI...

    docs.groupdocs.com/conversion/java/load-email-d...
  2. Convert project management formats | Documentation

    This article demonstrates how you can convert to and from project management formats with GroupDocs.Conversion for Java....Signature Product Solution GroupDocs...Us Contact Customers Legal Security Events Acquisition Ask AI...

    docs.groupdocs.com/conversion/java/convert/proj...
  3. Convert eBook formats | Documentation

    In this article, you will learn how to convert eBook formats with GroupDocs.Conversion for Java....Signature Product Solution GroupDocs...Us Contact Customers Legal Security Events Acquisition Ask AI...

    docs.groupdocs.com/conversion/java/convert/ebook/
  4. 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 for Java v21.6: textual replacements are not supported, so you have to use color box replacements to redact text in images....Signature Product Solution GroupDocs...Us Contact Customers Legal Security Events Acquisition Ask AI...

    docs.groupdocs.com/redaction/java/using-ocr/
  5. Load document from local disk | Documentation

    GroupDocs.Parser provides the functionality to extract data from documents on the local disk. The following example shows how to load the document from the local disk: // Set the filePath String filePath = Constants.SamplePdf; // Create an instance of Parser class with the filePath try (Parser parser = new Parser(filePath)) { // Extract a text into the reader try (TextReader reader = parser.getText()) { // Print a text from the document // If text extraction isn't supported, a reader is null System....Signature Product Solution GroupDocs...Us Contact Customers Legal Security Events Acquisition Ask AI...

    docs.groupdocs.com/parser/java/load-document-fr...
  6. Save a modified file to the original source | D...

    This article shows how to save the modified content to the underlying source in Java....Signature Product Solution GroupDocs...Us Contact Customers Legal Security Events Acquisition Ask AI...

    docs.groupdocs.com/metadata/java/save-a-modifie...
  7. Render attachments | Documentation

    Render email attachments with GroupDocs.Viewer for Java in the same way as you would render any other documents...Signature Product Solution GroupDocs...Us Contact Customers Legal Security Events Acquisition Ask AI...

    docs.groupdocs.com/viewer/java/how-to-convert-a...
  8. Get supported file formats | Documentation

    The getSupportedFileTypes method of the FileType class is used to obtain a list of supported file types. An example of obtaining a list of supported file types is presented below. Iterable supportedFileTypes = FileType.getSupportedFileTypes(); Iterator iterator = supportedFileTypes.iterator(); while (iterator.hasNext()) { FileType fileType = (FileType)iterator.next(); System.out.println(fileType.getExtension() + " - " + fileType.getDescription()); } 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....Signature Product Solution GroupDocs...Us Contact Customers Legal Security Events Acquisition Ask AI...

    docs.groupdocs.com/metadata/java/get-supported-...
  9. Load a file of a specific format | Documentation

    This example demonstrates how to load a file of some particular format. advanced_usage.loading_files.LoadingFileOfSpecificFormat // Explicitly specifying the format of a file to load you can spare some time on detecting the format LoadOptions loadOptions = new LoadOptions(FileFormat.Spreadsheet); // Constants.InputXls is an absolute or relative path to your document. Ex: @"C:\Docs\source.xls" try (Metadata metadata = new Metadata(Constants.InputXls, loadOptions)) { SpreadsheetRootPackage root = metadata.getRootPackageGeneric(); // Use format-specific properties to extract or edit metadata System....Signature Product Solution GroupDocs...Us Contact Customers Legal Security Events Acquisition Ask AI...

    docs.groupdocs.com/metadata/java/load-a-file-of...
  10. Plain text | Documentation

    This article explains that how to extract plain formatted text from document page in Java....Signature Product Solution GroupDocs...Us Contact Customers Legal Security Events Acquisition Ask AI...

    docs.groupdocs.com/parser/java/plain-text/