Sort Score
Result 10 results
Languages All
Labels All
Results 1,981 - 1,990 of 3,565 for

document assembly

(0.04 sec)
  1. Composing signature with texture brush backgrou...

     This article explains how to fill signature background with texture brush...Assembly Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Signature Product...

    docs.groupdocs.com/signature/java/composing-sig...
  2. Save in rasterized PDF | Documentation

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

    docs.groupdocs.com/redaction/java/save-in-raste...
  3. Render archives as HTML, PDF, and image files |...

    This topic describes how to use the GroupDocs.Viewer .NET API (C#) to display a list of archive content in HTML, PDF, PNG, and JPEG formats and to extract arbitrary file from archive....Assembly Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Viewer Product...

    docs.groupdocs.com/viewer/net/render-archive-fi...
  4. Locating signature on page with different measu...

     This article explains using measure units to locate signature and its size on Document page with GroupDocs.Signature API....Assembly Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Signature Product...

    docs.groupdocs.com/signature/java/locating-sign...
  5. Clean metadata | Documentation

    Sometimes you may need to just remove all or clean metadata properties without applying any filters. The best way to do this is to use the Sanitize method....Assembly Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/java/clean-metadata/
  6. Render web documents as PDF, PNG, and JPEG file...

    Convert web Documents (CHM, HTML) to PDF, PNG, or JPEG using the GroupDocs.Viewer Python API....Assembly Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Viewer Product...

    docs.groupdocs.com/viewer/python-net/render-web...
  7. Save overwriting original file | Documentation

    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...
  8. Migration Notes | Documentation

    How to migrate from earlier versions of GroupDocs.Merger for Java...Assembly Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Merger Product...

    docs.groupdocs.com/merger/java/migration-notes/
  9. Convert to Image with advanced options | Docume...

    Follow this guide and learn how to convert Documents to image with height, width, resolution, brightness and other customizations using GroupDocs.Conversion for .NET....Assembly Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Conversion Product...

    docs.groupdocs.com/conversion/net/convert-to-im...
  10. Check if a file is encrypted | Documentation

    This article explains how to check if a file is encrypted using Java with GroupDocs.Viewer for Java....Assembly Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Viewer Product...

    docs.groupdocs.com/viewer/java/how-to-check-if-...