Sort Score
Result 10 results
Languages All
Labels All
Results 1,931 - 1,940 of 4,391 for

document assembly

(0.27 sec)
  1. Render to HTML | GroupDocs

    With GroupDocs.Viewer for Node.js you can render files to HTML format. As a simple usecase please see how easily you can convert Microsoft Word to clean html....Assembly Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Viewer Product...

    docs.groupdocs.com/viewer/nodejs-java/rendering...
  2. Extract formatted text from documents | GroupDocs

    Learn how to extract formatted text as HTML, Markdown, or PlainText from PDF, Word, Excel, and 50+ Document formats using GroupDocs.Parser for .NET. Preserve formatting with C# code examples....Assembly Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Parser Product...

    docs.groupdocs.com/parser/net/extract-formatted...
  3. Create custom format handler | GroupDocs

    This article shows how to implement one or several interfaces for the Document's features and required redaction....Assembly Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Redaction Product...

    docs.groupdocs.com/redaction/net/create-custom-...
  4. Reorder pages | GroupDocs

    Reorder pages when rendering Documents to PDF with GroupDocs.Viewer for Java...Assembly Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Viewer Product...

    docs.groupdocs.com/viewer/java/reorder-pages/
  5. eSign PDF with Metadata signature | GroupDocs

    This article explains how to add metadata signatures to PDF Document meta info layer with GroupDocs.Signature...Assembly Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Signature Product...

    docs.groupdocs.com/signature/python-net/esign-p...
  6. Remove page redactions | GroupDocs

    This article shows that how to remove pages with sensitive data from your PDF, presentation and spreadsheet Documents....Assembly Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Redaction Product...

    docs.groupdocs.com/redaction/net/remove-page-re...
  7. Get possible conversions | GroupDocs

    This article explains how to obtain supported conversions when converting Documents with GroupDocs.Conversion within your Java applications...Assembly Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Conversion Product...

    docs.groupdocs.com/conversion/nodejs-java/get-p...
  8. Render XML documents as HTML, PDF, PNG, and JPE...

    This topic describes how to use the GroupDocs.Viewer Java API to convert XML Documents to HTML (with and without pagination), PDF Documents, PNG, and JPEG raster formats....Assembly Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Viewer Product...

    docs.groupdocs.com/viewer/java/render-xml-docum...
  9. Loading documents from different sources | Grou...

    This section explains how to load Document from various sources and data storage like file on disk, data stream, remote web resources, FTP servers, Amazon Cloud or Azure storage etc....Assembly Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Signature Product...

    docs.groupdocs.com/signature/java/loading-docum...
  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....Assembly Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Redaction Product...

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