Sort Score
Result 10 results
Languages All
Labels All
Results 2,831 - 2,840 of 8,223 for

document signature api

(1.04 sec)
  1. Extract images from PDF documents | GroupDocs

    To extract images from PDF Documents getImages methods are used. By default images are extracted with its original format. With using ImageOptions class it is possible to extract images from PDF Documents as bmp, gif, jpeg, png and webp formats. Warning getImages method returns null value if image extraction isn’t supported for the Document. For example, image extraction isn’t supported for TXT files. Therefore, for TXT file getImages method returns null....Signature Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...

    docs.groupdocs.com/parser/java/extract-images-f...
  2. Compare multiple documents | GroupDocs

    Learn more about how to compare multiple Word Documents or PowerPoint presentations simultaneously with GroupDocs.Comparison for Java....Signature Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...

    docs.groupdocs.com/comparison/java/compare-mult...
  3. Create custom format handler | GroupDocs

    This article shows how to implement one or several interfaces for the Document's features and required redaction....Signature Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...

    docs.groupdocs.com/redaction/java/create-custom...
  4. Inserting Documents Dynamically | GroupDocs

    Note This feature is supported by version 20.3 or greater. Note The code uses some of the objects defined in The Business Layer. Warning Dynamic insertion of Documents from Base64-encoded bytes is available for file formats where dynamic Document insertion is available for Word Processing Documents and emails with HTML and RTF bodies only. You can insert contents of outer Documents to your reports dynamically using doc tags. A doc tag denotes a placeholder within a template for a Document to be inserted during runtime....Signature Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...

    docs.groupdocs.com/assembly/net/inserting-docum...
  5. Compare multiple documents | GroupDocs

    Compare any number of Word Documents or PowerPoint/OpenDocument presentations simultaneously using Comparer.Add() — produces a single merged result Document....Signature Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...

    docs.groupdocs.com/comparison/net/compare-multi...
  6. Reorder pages | GroupDocs

    Reorder pages when rendering Documents to PDF with GroupDocs.Viewer for Java...Signature Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...

    docs.groupdocs.com/viewer/java/reorder-pages/
  7. Load personal storage PST or OST with options |...

    Learn this article and check how to load and convert PST/OST Documents with advanced options using GroupDocs.Conversion for Java Api....Signature Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...

    docs.groupdocs.com/conversion/java/load-persona...
  8. How to Convert HTML to Word using Java

    Learn how to convert HTML to Word in Java and look at sample code to generate DOCX from HTML in Java to conduct Document transformations quickly....Find Answers by API GroupDocs.Total Product Family GroupDocs...Product Family GroupDocs.Signature Product Family GroupDocs.Metadata...

    kb.groupdocs.com/conversion/java/how-to-convert...
  9. OCR support | GroupDocs

    This article demonstrates the ability to connect an external module (library) for the recognition of printed text (optical character recognition, OCR) on images, either separate or embedded in Documents...Signature Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...

    docs.groupdocs.com/search/net/ocr-support/
  10. 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....Signature Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...

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