Sort Score
Result 10 results
Languages All
Labels All
Results 2,001 - 2,010 of 3,564 for

assemble document

(0.04 sec)
  1. Detect file type of container item | Documentation

    This article explains that how to detect file type of container item....Assembly Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Parser Product...

    docs.groupdocs.com/parser/java/detect-file-type...
  2. Reorder pages | Documentation

    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/
  3. 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....Assembly Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/java/load-a-file-of...
  4. 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...
  5. 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...
  6. GroupDocs.Signature Product Family | Documentation

    Use GroupDocs.Signature libraries to e-Sign Documents with different signature types, protect Documents with digital certificates, generate QR Codes and barcodes using C# or Java languages....Assembly Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Signature Product...

    docs.groupdocs.com/signature/
  7. Set shape color independently of font color | D...

    Following this guide you will learn how to set shape color independently of font color and modify appearance of detected changes when use GroupDocs.Comparison for .NET....Assembly Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Comparison Product...

    docs.groupdocs.com/comparison/net/set-shape-col...
  8. 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...
  9. Save a modified file to a specified location | ...

    This article shows how to save a Document to a specified location on a local disk in Java...Assembly Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/nodejs-java/save-a-...
  10. 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...