Sort Score
Result 10 results
Languages All
Labels All
Results 261 - 270 of 596 for

performance improvement watermark

(0.04 sec)
  1. Save to stream | Documentation

    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....Watermark Product Solution GroupDocs...can use document instance to perform redactions RedactorChangeLog...

    docs.groupdocs.com/redaction/java/save-to-stream/
  2. Save in original format | Documentation

    The following example demonstrates how to save file in its original format with current date as a suffix: final Redactor redactor = new Redactor("sample.docx"); try { // Here we can use document instance to perform redactions redactor.apply(new ExactPhraseRedaction("John Doe", new ReplacementOptions("[personal]"))); SaveOptions saveOptions = new SaveOptions(); saveOptions.setAddSuffix(true); saveOptions.setRasterizeToPDF(false); saveOptions.setRedactedFileSuffix(new SimpleDateFormat("dd-MM-yyyy").format(new Date())); // Saving in original format with date as DateTime.getNow().toShortDateString()a suffix redactor.save(saveOptions); } finally { redactor.close(); }...Watermark Product Solution GroupDocs...can use document instance to perform redactions redactor . apply...

    docs.groupdocs.com/redaction/java/save-in-origi...
  3. 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(); }...Watermark Product Solution GroupDocs...can use document instance to perform redactions redactor . apply...

    docs.groupdocs.com/redaction/java/save-in-raste...
  4. Classify document from stream | Documentation

    Classifying of the document from stream could be performed with the next step Call Classify method for “stream” stream with Documents taxonomy and return 2 best results. Handle possible ApiException // Classify document from stream with Documents taxonomy and return 2 best resultstry { var response = classifier.Classify(stream, 2, Taxonomy.Documents); Console.WriteLine(response.BestClassName, response.BestClassProbability); } catch (ApiException e) { Console.WriteLine(e.Message); }...Watermark Product Solution GroupDocs...document from stream could be performed with the next step Call method...

    docs.groupdocs.com/classification/net/classify-...
  5. Case sensitive search | Documentation

    This article gives the knowledge of the case sensitive search which allows you to find words considering uppercase and lowercase letters as distinct....Watermark Product Solution GroupDocs...example demonstrates how to perform case-sensitive search with...

    docs.groupdocs.com/search/net/case-sensitive-se...
  6. Float and paginal modes | Documentation

    This article explains pros and cons of float and paginal document editing modes when edit Word documents with GroupDocs.Editor API....Watermark Product Solution GroupDocs...like headers, footers, page watermarks, page numbering formatting...

    docs.groupdocs.com/editor/java/float-and-pagina...
  7. Indexing password protected documents | Documen...

    This page describes how to perform indexing of password protected documents. Indexing using the password dictionary To perform indexing of password protected documents using a password dictionary, you must add passwords for all protected documents to the dictionary before indexing. To add a document password to the dictionary, you must specify the full path to the document as a key and the actual password to the document. For more information about managing the password dictionary see the Document passwords page in the Managing dictionaries section....Watermark Product Solution GroupDocs...This page describes how to perform indexing of password protected...

    docs.groupdocs.com/search/nodejs-java/indexing-...
  8. Spreadsheet redactions | Documentation

    This article shows that how C# redaction API allows to redact data of sensitive or private nature from your XLS, XLSX, ODS spreadsheet document formats and others....Watermark Product Solution GroupDocs...free Apps. You are welcome to perform redactions for various document...

    docs.groupdocs.com/redaction/python-net/spreads...
  9. Extract Text from DOCX using Java

    This article details the process of how to extract text from DOCX using Java. It also includes code to assist you in implementing text extraction from DOCX in Java....Watermark Product Family GroupDocs.Merger...offers the APIs necessary to perform the task efficiently and effectively...

    kb.groupdocs.com/parser/java/extract-text-from-...
  10. Save with default options | Documentation

    The simplest way to save the document is it provide no parameters to Save method. In this case the document will be rasterized to PDF and will have the same name as the original one except its extension (.PDF). The PDF file will be overwritten. The following example demonstrates usage of Save() method with default options. final Redactor redactor = new Redactor("sample.docx"); try { // Here we can use document instance to perform redactions redactor....Watermark Product Solution GroupDocs...can use document instance to perform redactions redactor . apply...

    docs.groupdocs.com/redaction/java/save-with-def...