Sort Score
Result 10 results
Languages All
Labels All
Results 121 - 130 of 597 for

api local

(0.17 sec)
  1. Load from Stream | GroupDocs

    Load from Stream As an alternative to a Local file, Redactor can open a document from stream. The following example demonstrates how to load and redact a document using Stream: final FileInputStream stream = new FileInputStream("sample.docx"); try { final Redactor redactor = new Redactor(stream); try { // Here we can use document instance to make redactions redactor.apply(new DeleteAnnotationRedaction()); redactor.save(); } finally { redactor.close(); } } finally { stream.close(); }...Upgrade an Order Support Docs API Reference Live Demos Free Support...Stream As an alternative to a local file, Redactor can open a document...

    docs.groupdocs.com/redaction/java/load-from-str...
  2. Loading documents from different sources | Grou...

    Following this guide you will learn how to load PDF, Word, Excel, PowerPoint documents by Local file path, stream or URL for further processing with GroupDocs.Merger for .NET Api....Upgrade an Order Support Docs API Reference Live Demos Free Support...sources. Load document from local disk Load document from stream...

    docs.groupdocs.com/merger/net/loading-documents...
  3. Loadconfig and the GoogleAPI doesn’t load - Fre...

    Attached is my Local projects ( added editor content ). EditorDemoApp.zip (935.1 KB) I am having error on the loadconfig and the GoogleApi doesn’t load. Regards, WK...2022, 8:01am 1 Attached is my local projects ( added editor content...when using GroupDocs Viewer API atir.tahir January 5, 2022, 3:52pm...

    forum.groupdocs.com/t/loadconfig-and-the-google...
  4. Clear watermarks | GroupDocs

    This article shows how to clear existing text or image watermarks....Upgrade an Order Support Docs API Reference Live Demos Free Support...the Watermarker class for a local file or file stream; Specify...

    docs.groupdocs.com/watermark/net/basic-usage/cl...
  5. Compare documents | GroupDocs

    This article demonstrates how to compare Word, Excel, PowerPoint, Outlook, OneNote, PDF, Image, HTML, AutoCAD, Visio, OpenDocument, OneNote documents using GroupDocs.Comparison for Node.js via Java....Upgrade an Order Support Docs API Reference Live Demos Free Support...compare two documents: Compare local documents The following example...

    docs.groupdocs.com/comparison/nodejs-java/compa...
  6. Specify file type for comparison manually | Gro...

    Learn how to manually specify the file type when comparing documents using GroupDocs.Comparison for Python via .NET....Upgrade an Order Support Docs API Reference Live Demos Free Support...LoadOptions . Compare documents from local disk and specify file type manually...

    docs.groupdocs.com/comparison/python-net/specif...
  7. Save a modified file to a specified location | ...

    This article shows how to save a document to a specified location on a Local disk...Upgrade an Order Support Docs API Reference Live Demos Free Support...to a specified location on a local disk. AdvancedUsage.SavingFiles...

    docs.groupdocs.com/metadata/net/save-a-modified...
  8. 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...Upgrade an Order Support Docs API Reference Live Demos Free Support...to a specified location on a local disk. advanced_usage.saving_files...

    docs.groupdocs.com/metadata/nodejs-java/save-a-...
  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 using GroupDocs.Metadata for Python via .NET....Upgrade an Order Support Docs API Reference Live Demos Free Support...to a specified location on a local disk. advanced_usage.saving_files...

    docs.groupdocs.com/metadata/python-net/save-a-m...
  10. Save to stream | GroupDocs

    You might need to save a document to any custom file at any location on the Local disc or a even a Stream. The following example demonstrates how to save a document to any location. final Redactor redactor = new Redactor("Sample.docx"); try { // Here we can use document instance to perform redactions RedactorChangeLog result = redactor.apply(new ExactPhraseRedaction("John Doe", new ReplacementOptions(java.awt.Color.RED))); if (result.getStatus() != RedactionStatus.Failed) { // Save the document to a custom location and convert its pages to images final FileOutputStream fileStream = new FileOutputStream("C:\\\\Temp\\\\sample_output_file....Upgrade an Order Support Docs API Reference Live Demos Free Support...file at any location on the local disc or a even a Stream. The...

    docs.groupdocs.com/redaction/java/save-to-stream/