Sort Score
Result 10 results
Languages All
Labels All
Results 5,931 - 5,940 of 11,052 for

document watermark

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

    docs.groupdocs.com/redaction/java/save-in-raste...
  2. How to verify signatures with LINQ queries | Gr...

     This article explains how to verify signatures with LINQ query with GroupDocs.Signature API....Watermark Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Signature Product...

    docs.groupdocs.com/signature/net/verify-signatu...
  3. Reorder pages | GroupDocs

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

    docs.groupdocs.com/viewer/java/reorder-pages/
  4. Password-protected documents | GroupDocs

    GroupDocs.Parser provides the functionality to open the password-protected Documents. The following are the steps to work with password protected Documents. Instantiate the LoadOptions object; Set password in LoadOptions(String) constructor; Create Parser object and call any method. The following code sample shows how to process password protected Documents. try { String password = "123456"; // Create an instance of Parser class with the password: try (Parser parser = new Parser(Constants.SamplePassword, new LoadOptions(password))) { // Check if text extraction is supported if (!...Watermark Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Parser Product...

    docs.groupdocs.com/parser/java/password-protect...
  5. Migration Notes | GroupDocs

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

    docs.groupdocs.com/merger/java/migration-notes/
  6. Render text documents as HTML, PDF, and image f...

    This topic describes how to use the GroupDocs.Viewer Node.js API to convert text files to HTML, PDF, PNG, and JPEG formats....Watermark Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Viewer Product...

    docs.groupdocs.com/viewer/nodejs-java/render-te...
  7. Render to PNG or JPEG | GroupDocs

    With GroupDocs.Viewer for .NET you can render Documents to PNG and JPEG formats....Watermark Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Viewer Product...

    docs.groupdocs.com/viewer/net/rendering-to-png-...
  8. 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....Watermark Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Redaction Product...

    docs.groupdocs.com/redaction/java/save-overwrit...
  9. GroupDocs.Conversion for Node.js via Java | Gro...

    GroupDocs.Conversion for Node.js via Java is an advanced Document conversion API developed to convert files of different formats from within JavaScript applications....Watermark Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Conversion Product...

    docs.groupdocs.com/conversion/nodejs-java/
  10. Extract metadata from Microsoft Office PowerPoi...

    To extract metadata from Microsoft Office PowerPoint presentations getMetadata method is used. This method allows to extract the following metadata: Name Description title The title of the presentation. subject The subject of the presentation. keywords The keyword of the presentation. comments The comments of the presentation. content-status The content status of the presentation. category The category of the presentation. company The company of the presentation. manager The manager of the presentation....Watermark Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Parser Product...

    docs.groupdocs.com/parser/java/extract-metadata...