Sort Score
Result 10 results
Languages All
Labels All
Results 4,461 - 4,470 of 9,199 for

document conversion

(0.28 sec)
  1. Template Syntax - Part 1 of 2 | GroupDocs

    Note This article is the first part of the Template Syntax series of articles. For second part, please visit Template Syntax - Part 2 of 2. Composing Template A typical template for GroupDocs.Assembly Engine is composed of common Document contents and tags that describe the template’s structure and data bindings. You can form these tags using just running text that can occupy multiple paragraphs to be more descriptive. A tag body must meet the following requirements:...Conversion Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Assembly Product...

    docs.groupdocs.com/assembly/python-net/template...
  2. Load from local disk | GroupDocs

    This article explains how to load from local disk while using GroupDocs. Watermarks API....Conversion Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Watermark Product...

    docs.groupdocs.com/watermark/net/load-from-loca...
  3. Basic Usage | GroupDocs

    Quick Start section for GroupDocs.Metadata API Manage metadata in your Documents fast and easy with our intuitive and powerful API just with a few lines of code. Let’s review common usage scenarios when Documents are stored in a local drive and you want to manage them using GroupDocs.Metadata API....Conversion Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/java/basic-usage/
  4. Save in rasterized PDF | GroupDocs

    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(); }...Conversion Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Redaction Product...

    docs.groupdocs.com/redaction/java/save-in-raste...
  5. Reorder pages | GroupDocs

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

    docs.groupdocs.com/viewer/java/reorder-pages/
  6. Insert Hyperlinks Dynamically | GroupDocs

    Create hyperlinks in Documents with URLs and text dynamically set from data sources during assembly....Conversion Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Assembly Product...

    docs.groupdocs.com/assembly/net/basic-usage-ins...
  7. 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....Conversion Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Redaction Product...

    docs.groupdocs.com/redaction/java/save-overwrit...
  8. Features Overview | GroupDocs

    A .NET 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....Conversion Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/net/features-overview/
  9. Saving to HTML with External Resource Files | G...

    Note This feature is supported by version 19.5. or greater Note The code uses some of the objects defined in The Business Layer. Since version 19.5, The GroupDocs.Assembly provides a great feature which is saving of external resource files while an assembled Document loaded from a non-HTML format is being saved to HTML. From now on, when saving an assembled Document to an HTML file, by default, external resource files are stored to a folder having the same name as the HTML file without extension plus the “_files” suffix....Conversion Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Assembly Product...

    docs.groupdocs.com/assembly/net/saving-to-html-...
  10. Use of In-line Syntax Error Messages into Templ...

    Note This feature is supported by version 19.3 or greater. Note The code uses some of the objects defined in The Business Layer. Note This version provide the ability to display inline template syntax errors in generated, Word Processing, Presentation, Spreadsheets, Emails and Plain Text Documents . Use of In-line Syntax Error Messages By default, Document Assembler throws an exception when encounters a template syntax error. Such an exception provides information on a reason of the error and specifies a tag or expression part where the error is encountered....Conversion Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Assembly Product...

    docs.groupdocs.com/assembly/java/use-of-in-line...