Sort Score
Result 10 results
Languages All
Labels All
Results 1,301 - 1,310 of 6,634 for

ai

(2.04 sec)
  1. ClassNotFoundException BouncyCastleProvider exc...

    This article is about ClassNotFoundException: BouncyCastleProvider exception...Security Events Acquisition Ask AI GroupDocs Documentation / GroupDocs...

    docs.groupdocs.com/viewer/java/classnotfoundexc...
  2. Rotate pages | GroupDocs

    This article explAins how to rotate PDF, HTML or Image pages when rendering documents with GroupDocs.Viewer within your Java applications....Security Events Acquisition Ask AI GroupDocs Documentation / GroupDocs...

    docs.groupdocs.com/viewer/java/flip-or-rotate-p...
  3. Saving documents | GroupDocs

    Saving a document, GroupDocs.Redaction puts it in the same folder as the original file, renaming or rewriting original. If you need to save the document to any custom location, you’ll have to open a Stream to this location. As a save option by default, GroupDocs.Redaction converts all pages (slides, worksheets) in a document into images and puts them in a single PDF file, so you can share the redacted document without any additional conversions....Security Events Acquisition Ask AI GroupDocs Documentation / GroupDocs...

    docs.groupdocs.com/redaction/java/saving-docume...
  4. Convert N consecutive pages | GroupDocs

    This article demonstrates how to convert consecutive document pages using GroupDocs.Conversion for .NET API....Security Events Acquisition Ask AI GroupDocs Documentation / GroupDocs...

    docs.groupdocs.com/conversion/net/convert-n-con...
  5. Get supported file formats | GroupDocs

    This article explAins how to obtAin supported file formats list for PDF, Words, Spreadsheet or Presentation document types when working with GroupDocs.Signature within your .NET applications....Security Events Acquisition Ask AI GroupDocs Documentation / GroupDocs...

    docs.groupdocs.com/signature/net/get-supported-...
  6. Single Row Image in HTML Document | GroupDocs

    Note In this article, we will use GroupDocs.Assembly to generate a Single Row Image report in HTML Document format. Note The code uses some of the objects defined in The Business Layer. Single Row Image in HTML Document Reporting Requirement As a report developer, you are required to represent information of first single manager with the following key requirements: Report must show image of the manager It must show Name and age of manager Report must be generated in the HTML Document....Security Events Acquisition Ask AI GroupDocs Documentation / GroupDocs...

    docs.groupdocs.com/assembly/java/single-row-ima...
  7. Synchronizing shards | GroupDocs

    This page contAins information about synchronizing shards in the search network....Security Events Acquisition Ask AI GroupDocs Documentation / GroupDocs...

    docs.groupdocs.com/search/java/synchronizing-sh...
  8. Sentiment classification usage | GroupDocs

    Create an instance of SentimentClassifier class. It is multilingual and supports English, Chinese, Spanish, and German. Creates SentimentClassifier instance var sentimentClassifier = new SentimentClassifier(); and call PositiveProbability method Classifies sentiment by text var positiveProbability = sentimentClassifier.PositiveProbability("This is a new must-have thing."); Console.WriteLine($"The probability of a positive sentiment is { positiveProbability }"); or call Classify method Classifies sentiment by text var response = sentimentClassifier.Classify("This is a new must-have thing."); Console.WriteLine($"The best class name:{response....Security Events Acquisition Ask AI GroupDocs Documentation / GroupDocs...

    docs.groupdocs.com/classification/net/sentiment...
  9. Get document page preview | GroupDocs

    This article shows the implementation of Redactor class which supports the rendering of the document preview in JPEG, PNG and BMP....Security Events Acquisition Ask AI GroupDocs Documentation / GroupDocs...

    docs.groupdocs.com/redaction/net/get-document-p...
  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....Security Events Acquisition Ask AI GroupDocs Documentation / GroupDocs...

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