Sort Score
Result 10 results
Languages All
Labels All
Results 241 - 250 of 596 for

performance improvement watermark

(0.05 sec)
  1. Classify document by path | Documentation

    Classify document by path with IAB-2 taxonomy and return 2 best results Classifying of the document could be performed with the next steps Call Classify method for “document.pdf” file in the current (".") directory with IAB-2 taxonomy and return 2 best results. Handle possible ApiException try { var response = classifier.Classify("document.pdf", ".", 3, Taxonomy.Iab2); Console.WriteLine(response.BestClassName, response.BestClassProbability); } catch (ApiException e) { Console.WriteLine(e.Message); } Precisely classify document by path with Documents taxonomy and return 4 best results Call Classify method for “document....Watermark Product Solution GroupDocs...of the document could be performed with the next steps Call method...

    docs.groupdocs.com/classification/net/classify-...
  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. 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/
  5. 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-...
  6. Save to Stream | Documentation

    This article demonstrates that how to save a document to any custom file at any location on the local disc or a even a Stream...Watermark Product Solution GroupDocs...can use document instance to perform redactions RedactorChangeLog...

    docs.groupdocs.com/redaction/net/save-to-stream/
  7. Attachments in PDF document | Documentation

    This article explains how to work with PDF attachments while using GroupDocs Watermarking API....Watermark Product Solution GroupDocs...GroupDocs.Watermark Product Family / GroupDocs.Watermark for .NET...

    docs.groupdocs.com/watermark/net/attachments-in...
  8. How to Convert XML to HTML in Java

    We will briefly explain the detailed instructions to convert XML to HTML in Java. Learn how to use these instructions to convert XML to HTML using Java....Watermark Product Family GroupDocs.Merger...the necessary classes for performing document transformation from...

    kb.groupdocs.com/conversion/java/how-to-convert...
  9. 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...
  10. 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...