Sort Score
Result 10 results
Languages All
Labels All
Results 331 - 340 of 5,535 for

file watermark

(0.07 sec)
  1. Load file from stream | GroupDocs

    This article demonstrates how to convert File presented as a stream using GroupDocs.Conversion for .NET API....Watermark Product Solution GroupDocs.../ Loading files from different sources / Load file from stream...

    docs.groupdocs.com/conversion/net/load-file-fro...
  2. Get supported file formats | GroupDocs

    This article explains how to obtain supported File formats list when viewing documents with GroupDocs.Comparison within your Java applications....Watermark Product Solution GroupDocs...Get supported file formats Get supported file formats Leave feedback...

    docs.groupdocs.com/comparison/java/get-supporte...
  3. Load password-protected file | GroupDocs

    Load password-protected File In order to open password-protected documents, you have to pass your password to LoadOptions class constructor or assign it to its Password property of an instance of LoadOptions class: LoadOptions loadOptions = new LoadOptions("mypassword"); final Redactor redactor = new Redactor("protected_sample.docx", loadOptions); try { // Here we can use document instance to perform redactions redactor.apply(new ExactPhraseRedaction("John Doe", new ReplacementOptions("[personal]"))); redactor.save(); } finally { redactor.close(); }...Watermark Product Solution GroupDocs...password-protected file Load password-protected file Leave feedback...

    docs.groupdocs.com/redaction/java/load-password...
  4. Get file info | GroupDocs

    This article explains the ability of the GroupDocs.Redaction API to get the general document information, which includes FileType, PageCount and FileSize....Watermark Product Solution GroupDocs...Guide / Basic usage / Get file info Get file info Leave feedback GroupDocs...

    docs.groupdocs.com/redaction/net/get-file-info/
  5. AI Watermarking: Protect Documents with Context...

    Discover how to protect documents with AI-powered Watermarks using GroupDocs.Watermark. Learn to add, create, and customize Watermarks automatically for enhanced document security and content protection....Watermark Table of Contents 🚀 Introduction...Introduction What is GroupDocs.Watermark? Supported Document Formats...

    blog.groupdocs.com/watermark/ai-driven-dynamic-...
  6. Load file from URL | GroupDocs

    This article explains how to load PDF, Word, Excel, PowerPoint documents from URL when using GroupDocs.Conversion for .NET....Watermark Product Solution GroupDocs.../ Loading files from different sources / Load file from URL Load...

    docs.groupdocs.com/conversion/net/load-file-fro...
  7. Update watermarks | GroupDocs

    This article shows how to update existing text or image Watermarks....Watermark Product Solution GroupDocs...GroupDocs.Watermark Product Family / GroupDocs.Watermark for .NET...

    docs.groupdocs.com/watermark/net/basic-usage/up...
  8. Load Password-Protected File | GroupDocs

    Learn how to load and convert password-protected documents using the GroupDocs.Conversion for Python via .NET API, enabling seamless handling of secured Files....Watermark Product Solution GroupDocs...Password-Protected File Load Password-Protected File Leave feedback...

    docs.groupdocs.com/conversion/python-net/develo...
  9. Working with spreadsheet document attachments |...

    Extract, add, remove, search, and Watermark spreadsheet attachments using Python via .NET....Watermark Product Solution GroupDocs...GroupDocs.Watermark Product Family / GroupDocs.Watermark for Python...

    docs.groupdocs.com/watermark/python-net/working...
  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....Watermark Product Solution GroupDocs...overwriting original file Save overwriting original file Leave feedback...

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