Sort Score
Result 10 results
Languages All
Labels All
Results 221 - 230 of 570 for

performance improvement watermark

(0.09 sec)
  1. 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...
  2. Classify Raw Text | Documentation

    Simple IAB-2 text classification Call Classify method with a text as the first parameter to perform classification. Default taxonomy (IAB-2) and bestClassesCount (1) will be used. var response = classifier.Classify("Medicine is an important part of our lifes"); Console.WriteLine(response.BestClassName, response.BestClassProbability); Raw text classification with Documents taxonomy and 2 best classes to return Taxonomy, bestClassesCount and precisionRecallBalance could also be specified: var response = classifier.Classify("Medicine is an important part of our lifes", 2, Taxonomy....Watermark Product Solution GroupDocs...as the first parameter to perform classification. Default taxonomy...

    docs.groupdocs.com/classification/net/classify-...
  3. Load from local disc | Documentation

    Load from local disc GroupDocs.Redaction.Redactor class is a main class in Redaction API, providing functionality to open a document. When document is located on the local disk, you can pass its path to *Redactor *class constructor. The following example demonstrates how to open a document from local disc: final Redactor redactor = new Redactor("sample.docx"); try { // Here we can use document instance to perform redactions redactor.apply(new DeleteAnnotationRedaction()); redactor.save(); } finally { redactor....Watermark Product Solution GroupDocs...can use document instance to perform redactions redactor . apply...

    docs.groupdocs.com/redaction/java/load-from-loc...
  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. 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...
  6. Convert files to various formats | Documentation

    This page explains how to convert a file to PDF, Word, Excel, PowerPoint, Email, JPG, PNG, TIFF, and many other formats with just a couple of lines of С# code....Watermark Product Solution GroupDocs...storage. By default, when performing internal calculations GroupDocs...

    docs.groupdocs.com/conversion/net/convert/
  7. 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...
  8. Working with GroupDocs.Assembly Engine | Docume...

    About this section The articles in this section will be talking about technical concepts to be considered when creating document templates in order to generate your required reports. After going through this section, hopefully you will understand the template syntax, composing expressions and other syntax elements. Additionally, we’ll also discuss how GroupDocs.Assembly engine reads the syntax, evaluates the expressions to populate with assigned data and then generates your desired report according to your business needs....Watermark Product Solution GroupDocs...data source, the Engine will perform following actions: Sequentially...

    docs.groupdocs.com/assembly/java/working-with-g...
  9. 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-...
  10. Load password-protected file | Documentation

    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...can use document instance to perform redactions redactor . apply...

    docs.groupdocs.com/redaction/java/load-password...