Sort Score
Result 10 results
Languages All
Labels All
Results 4,021 - 4,030 of 9,353 for

document conversion

(0.59 sec)
  1. 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....Conversion Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Redaction Product...

    docs.groupdocs.com/redaction/java/save-overwrit...
  2. Search Specific Word in Documents using Java

    Discover how to implement full-text search implementation in Java and easily search specific word in Documents using Java without installing extra tools....Conversion Product Family GroupDocs...Family Search Specific Word in Documents using Java Finding a specific...

    kb.groupdocs.com/search/java/search-specific-wo...
  3. Indexing | GroupDocs

    The articles in this section describe advanced search index related topics. You will find details about index management and advanced options: More resources GitHub examples You may easily run the code from Documentation articles and see the features in action in our GitHub examples: GroupDocs.Search for .NET examples GroupDocs.Search for Java examples Free online Document search App Along with full featured .NET library we provide simple, but powerful free Apps....Conversion Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Search Product...

    docs.groupdocs.com/search/java/indexing/
  4. Saving Comparison Results | GroupDocs

    How to save the comparison result Document — choose output format, set metadata (author and clone-metadata), and apply a password to the result file....Conversion Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Comparison Product...

    docs.groupdocs.com/comparison/python-net/develo...
  5. Move page | GroupDocs

    This article demonstrates how to move Document page to another position within PDF, Word, Excel, PowerPoint Document using GroupDocs.Merger for Java API....Conversion Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Merger Product...

    docs.groupdocs.com/merger/java/move-page/
  6. Change page orientation | GroupDocs

    Following this guide you will learn how to change Word Document page orientation to Portrait or Landscape using GroupDocs.Merger for .NET....Conversion Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Merger Product...

    docs.groupdocs.com/merger/net/change-page-orien...
  7. Rotate pages | GroupDocs

    Following this guide you will learn how to change PDF Document page rotation angle using GroupDocs.Merger for .NET API....Conversion Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Merger Product...

    docs.groupdocs.com/merger/net/rotate-pages/
  8. Rotate pages | GroupDocs

    Following this guide you will learn how to change PDF Document page rotation angle using GroupDocs.Merger for Java API....Conversion Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Merger Product...

    docs.groupdocs.com/merger/java/rotate-pages/
  9. 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....Conversion Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Redaction Product...

    docs.groupdocs.com/redaction/java/save-to-stream/
  10. Use of In-line Syntax Error Messages into Templ...

    Note This feature is supported by version 19.3 or greater. Note The code uses some of the objects defined in The Business Layer. Note This version provide the ability to display inline template syntax errors in generated, Word Processing, Presentation, Spreadsheets, Emails and Plain Text Documents . Use of In-line Syntax Error Messages By default, Document Assembler throws an exception when encounters a template syntax error. Such an exception provides information on a reason of the error and specifies a tag or expression part where the error is encountered....Conversion Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Assembly Product...

    docs.groupdocs.com/assembly/java/use-of-in-line...